[
  {
    "path": ".gitignore",
    "content": "# Logs\nlogs\n*.log\n\n# Runtime data\npids\n*.pid\n*.seed\n\n# Directory for instrumented libs generated by jscoverage/JSCover\nlib-cov\n\n# Coverage directory used by tools like istanbul\ncoverage\n\n# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)\n.grunt\n\n# Compiled binary addons (http://nodejs.org/api/addons.html)\nbuild/Release\n\n# Dependency directory\n# Deployed apps should consider commenting this line out:\n# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git\nnode_modules\n"
  },
  {
    "path": ".npmignore",
    "content": "/node_modules\n/test\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: node_js\nnode_js:\n  - \"4\"\n  - \"node\"\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Morgan Herlocker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "tile-cover\n==========\n\n[![Build Status](https://travis-ci.org/mapbox/tile-cover.svg?branch=master)](https://travis-ci.org/mapbox/tile-cover)\n\nGenerate the minimum number of tiles to cover a [GeoJSON Geometry](http://geojson.org/geojson-spec.html#geometry-objects).\n\n### Install\n\n```bash\nnpm install @mapbox/tile-cover\n```\n\n### Usage\n\n```js\nvar cover = require('@mapbox/tile-cover');\nvar poly = JSON.parse(fs.readFileSync('./poly.geojson'));\nvar limits = {\n  \tmin_zoom: 4,\n  \tmax_zoom: 9\n};\n\ncover.geojson(poly.geom, limits);\ncover.tiles(poly.geom, limits);\ncover.indexes(poly.geom, limits);\n```\n\n# API\n\n## geojson(geom, limits)\n\nGiven a [geometry](http://geojson.org/geojson-spec.html#geometry-objects), create cells and return them in a format easily readable by any software that reads GeoJSON.\n\n* `geom` (`Object`): GeoJSON geometry\n* `limits` (`Object`): an object with min_zoom and max_zoom properties specifying the minimum and maximum level to be tiled.\n\n**Returns** `Object`, FeatureCollection of cells formatted as GeoJSON Features\n## tiles(geom, limits)\n\nGiven a [geometry](http://geojson.org/geojson-spec.html#geometry-objects), create cells and return them in their raw form, as an array of cell identifiers.\n\n* `geom` (`Object`): GeoJSON geometry\n* `limits` (`Object`): an object with min_zoom and max_zoom properties specifying the minimum and maximum level to be tiled.\n\n**Returns** `Array.<Array.<number>>`, An array of tiles given as [x, y, z] arrays\n## indexes(geom, limits)\n\nGiven a [geometry](http://geojson.org/geojson-spec.html#geometry-objects), create cells and return them as quadkey indexes.\n\n* `geom` (`Object`): GeoJSON geometry\n* `limits` (`Object`): an object with min_zoom and max_zoom properties specifying the minimum and maximum level to be tiled.\n\n**Returns** `Array.<String>`, An array of tiles given as quadkeys.\n\n### Tests\n\n```bash\nnpm test\n```\n\n### Benchmarks\n\n```bash\nnode bench.js\n```\n\n### Examples\n\n##### Polygons:\n\n![img](https://dl.dropbox.com/s/48cj16fvt8nyh3o/Screenshot%202014-08-06%2013.34.12.png)\n\n##### Lines:\n\n![img](https://dl.dropbox.com/s/u32bq56adqwhpyy/Screenshot%202014-08-06%2013.30.31.png)\n\n##### Points:\n\n![img](https://dl.dropbox.com/s/7kkmmm8owg1ezb0/Screenshot%202014-08-06%2014.02.01.png)\n"
  },
  {
    "path": "bench.js",
    "content": "'use strict';\n\nvar Benchmark = require('benchmark');\nvar cover = require('./index.js').tiles;\nvar fs = require('fs');\n\nvar building = JSON.parse(fs.readFileSync('./test/fixtures/building.geojson'));\nvar line = JSON.parse(fs.readFileSync('./test/fixtures/road.geojson'));\nvar point = JSON.parse(fs.readFileSync('./test/fixtures/point.geojson'));\nvar russia = JSON.parse(fs.readFileSync('./test/fixtures/russia.geojson'));\nvar russiaLine = {type: 'LineString', coordinates: russia.coordinates[0]};\nvar zooms = [6, 8, 10, 12, 18, 20, 25, 28];\n\nvar suite = new Benchmark.Suite('tile-cover', {\n    onError: function (err) {\n        console.log(err);\n    }\n});\n\naddBench(suite, point, 'point', zooms[0], zooms[0]);\n\nzooms.forEach(function (zoom) {\n    addBench(suite, line, 'road', zoom, zoom);\n});\nzooms.forEach(function (zoom) {\n    addBench(suite, building, 'building', zoom, zoom);\n});\nzooms.slice(0, 3).forEach(function (zoom) {\n    addBench(suite, russia, 'russia polygon', zoom, zoom);\n});\nzooms.slice(0, 3).forEach(function (zoom) {\n    addBench(suite, russiaLine, 'russia polyline', zoom, zoom);\n});\n\naddBench(suite, russia, 'russia polygon multizoom', 0, 9);\n\nsuite.on('cycle', function (event) {\n    console.log(String(event.target));\n}).run();\n\nfunction addBench(suite, geometry, name, min_zoom, max_zoom) {\n    suite.add('scan ' + name + ' - z' + min_zoom + ' - z' + max_zoom, {\n        fn: function () {\n            cover(geometry, {min_zoom: min_zoom, max_zoom: max_zoom});\n        },\n        maxTime: 1\n    });\n}\n"
  },
  {
    "path": "index.js",
    "content": "'use strict';\n\nvar tilebelt = require('@mapbox/tilebelt');\n\n/**\n * Given a geometry, create cells and return them in a format easily readable\n * by any software that reads GeoJSON.\n *\n * @alias geojson\n * @param {Object} geom GeoJSON geometry\n * @param {Object} limits an object with min_zoom and max_zoom properties\n * specifying the minimum and maximum level to be tiled.\n * @returns {Object} FeatureCollection of cells formatted as GeoJSON Features\n */\nexports.geojson = function (geom, limits) {\n    return {\n        type: 'FeatureCollection',\n        features: getTiles(geom, limits).map(tileToFeature)\n    };\n};\n\nfunction tileToFeature(t) {\n    return {\n        type: 'Feature',\n        geometry: tilebelt.tileToGeoJSON(t),\n        properties: {}\n    };\n}\n\n/**\n * Given a geometry, create cells and return them in their raw form,\n * as an array of cell identifiers.\n *\n * @alias tiles\n * @param {Object} geom GeoJSON geometry\n * @param {Object} limits an object with min_zoom and max_zoom properties\n * specifying the minimum and maximum level to be tiled.\n * @returns {Array<Array<number>>} An array of tiles given as [x, y, z] arrays\n */\nexports.tiles = getTiles;\n\n/**\n * Given a geometry, create cells and return them as\n * [quadkey](http://msdn.microsoft.com/en-us/library/bb259689.aspx) indexes.\n *\n * @alias indexes\n * @param {Object} geom GeoJSON geometry\n * @param {Object} limits an object with min_zoom and max_zoom properties\n * specifying the minimum and maximum level to be tiled.\n * @returns {Array<String>} An array of tiles given as quadkeys.\n */\nexports.indexes = function (geom, limits) {\n    return getTiles(geom, limits).map(tilebelt.tileToQuadkey);\n};\n\nfunction getTiles(geom, limits) {\n    var i, tile,\n        coords = geom.coordinates,\n        maxZoom = limits.max_zoom,\n        tileHash = {},\n        tiles = [];\n\n    if (geom.type === 'Point') {\n        return [tilebelt.pointToTile(coords[0], coords[1], maxZoom)];\n\n    } else if (geom.type === 'MultiPoint') {\n        for (i = 0; i < coords.length; i++) {\n            tile = tilebelt.pointToTile(coords[i][0], coords[i][1], maxZoom);\n            tileHash[toID(tile[0], tile[1], tile[2])] = true;\n        }\n    } else if (geom.type === 'LineString') {\n        lineCover(tileHash, coords, maxZoom);\n\n    } else if (geom.type === 'MultiLineString') {\n        for (i = 0; i < coords.length; i++) {\n            lineCover(tileHash, coords[i], maxZoom);\n        }\n    } else if (geom.type === 'Polygon') {\n        polygonCover(tileHash, tiles, coords, maxZoom);\n\n    } else if (geom.type === 'MultiPolygon') {\n        for (i = 0; i < coords.length; i++) {\n            polygonCover(tileHash, tiles, coords[i], maxZoom);\n        }\n    } else {\n        throw new Error('Geometry type not implemented');\n    }\n\n    if (limits.min_zoom !== maxZoom) {\n        // sync tile hash and tile array so that both contain the same tiles\n        var len = tiles.length;\n        appendHashTiles(tileHash, tiles);\n        for (i = 0; i < len; i++) {\n            var t = tiles[i];\n            tileHash[toID(t[0], t[1], t[2])] = true;\n        }\n        return mergeTiles(tileHash, tiles, limits);\n    }\n\n    appendHashTiles(tileHash, tiles);\n    return tiles;\n}\n\nfunction mergeTiles(tileHash, tiles, limits) {\n    var mergedTiles = [];\n\n    for (var z = limits.max_zoom; z > limits.min_zoom; z--) {\n\n        var parentTileHash = {};\n        var parentTiles = [];\n\n        for (var i = 0; i < tiles.length; i++) {\n            var t = tiles[i];\n\n            if (t[0] % 2 === 0 && t[1] % 2 === 0) {\n                var id2 = toID(t[0] + 1, t[1], z),\n                    id3 = toID(t[0], t[1] + 1, z),\n                    id4 = toID(t[0] + 1, t[1] + 1, z);\n\n                if (tileHash[id2] && tileHash[id3] && tileHash[id4]) {\n                    tileHash[toID(t[0], t[1], t[2])] = false;\n                    tileHash[id2] = false;\n                    tileHash[id3] = false;\n                    tileHash[id4] = false;\n\n                    var parentTile = [t[0] / 2, t[1] / 2, z - 1];\n\n                    if (z - 1 === limits.min_zoom) mergedTiles.push(parentTile);\n                    else {\n                        parentTileHash[toID(t[0] / 2, t[1] / 2, z - 1)] = true;\n                        parentTiles.push(parentTile);\n                    }\n                }\n            }\n        }\n\n        for (i = 0; i < tiles.length; i++) {\n            t = tiles[i];\n            if (tileHash[toID(t[0], t[1], t[2])]) mergedTiles.push(t);\n        }\n\n        tileHash = parentTileHash;\n        tiles = parentTiles;\n    }\n\n    return mergedTiles;\n}\n\nfunction polygonCover(tileHash, tileArray, geom, zoom) {\n    var intersections = [];\n\n    for (var i = 0; i < geom.length; i++) {\n        var ring = [];\n        lineCover(tileHash, geom[i], zoom, ring);\n\n        for (var j = 0, len = ring.length, k = len - 1; j < len; k = j++) {\n            var m = (j + 1) % len;\n            var y = ring[j][1];\n\n            // add interesction if it's not local extremum or duplicate\n            if ((y > ring[k][1] || y > ring[m][1]) && // not local minimum\n                (y < ring[k][1] || y < ring[m][1]) && // not local maximum\n                y !== ring[m][1]) intersections.push(ring[j]);\n        }\n    }\n\n    intersections.sort(compareTiles); // sort by y, then x\n\n    for (i = 0; i < intersections.length; i += 2) {\n        // fill tiles between pairs of intersections\n        y = intersections[i][1];\n        for (var x = intersections[i][0] + 1; x < intersections[i + 1][0]; x++) {\n            var id = toID(x, y, zoom);\n            if (!tileHash[id]) {\n                tileArray.push([x, y, zoom]);\n            }\n        }\n    }\n}\n\nfunction compareTiles(a, b) {\n    return (a[1] - b[1]) || (a[0] - b[0]);\n}\n\nfunction lineCover(tileHash, coords, maxZoom, ring) {\n    var prevX, prevY;\n\n    for (var i = 0; i < coords.length - 1; i++) {\n        var start = tilebelt.pointToTileFraction(coords[i][0], coords[i][1], maxZoom),\n            stop = tilebelt.pointToTileFraction(coords[i + 1][0], coords[i + 1][1], maxZoom),\n            x0 = start[0],\n            y0 = start[1],\n            x1 = stop[0],\n            y1 = stop[1],\n            dx = x1 - x0,\n            dy = y1 - y0;\n\n        if (dy === 0 && dx === 0) continue;\n\n        var sx = dx > 0 ? 1 : -1,\n            sy = dy > 0 ? 1 : -1,\n            x = Math.floor(x0),\n            y = Math.floor(y0),\n            tMaxX = dx === 0 ? Infinity : Math.abs(((dx > 0 ? 1 : 0) + x - x0) / dx),\n            tMaxY = dy === 0 ? Infinity : Math.abs(((dy > 0 ? 1 : 0) + y - y0) / dy),\n            tdx = Math.abs(sx / dx),\n            tdy = Math.abs(sy / dy);\n\n        if (x !== prevX || y !== prevY) {\n            tileHash[toID(x, y, maxZoom)] = true;\n            if (ring && y !== prevY) ring.push([x, y]);\n            prevX = x;\n            prevY = y;\n        }\n\n        while (tMaxX < 1 || tMaxY < 1) {\n            if (tMaxX < tMaxY) {\n                tMaxX += tdx;\n                x += sx;\n            } else {\n                tMaxY += tdy;\n                y += sy;\n            }\n            tileHash[toID(x, y, maxZoom)] = true;\n            if (ring && y !== prevY) ring.push([x, y]);\n            prevX = x;\n            prevY = y;\n        }\n    }\n\n    if (ring && y === ring[0][1]) ring.pop();\n}\n\nfunction appendHashTiles(hash, tiles) {\n    var keys = Object.keys(hash);\n    for (var i = 0; i < keys.length; i++) {\n        tiles.push(fromID(+keys[i]));\n    }\n}\n\nfunction toID(x, y, z) {\n    var dim = 2 * (1 << z);\n    return ((dim * y + x) * 32) + z;\n}\n\nfunction fromID(id) {\n    var z = id % 32,\n        dim = 2 * (1 << z),\n        xy = ((id - z) / 32),\n        x = xy % dim,\n        y = ((xy - x) / dim) % dim;\n    return [x, y, z];\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"@mapbox/tile-cover\",\n  \"version\": \"3.0.2\",\n  \"description\": \"generate the minimum number of tiles to cover a geojson geometry\",\n  \"main\": \"index.js\",\n  \"directories\": {\n    \"test\": \"test\"\n  },\n  \"scripts\": {\n    \"lint\": \"eslint *.js test/*.js --fix\",\n    \"test\": \"npm run lint && tape test/*.js\",\n    \"doc\": \"dox < index.js | doxme\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/mapbox/tile-cover.git\"\n  },\n  \"keywords\": [\n    \"tile\",\n    \"cover\",\n    \"geojson\",\n    \"index\"\n  ],\n  \"author\": \"morganherlocker\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/mapbox/tile-cover/issues\"\n  },\n  \"homepage\": \"https://github.com/mapbox/tile-cover\",\n  \"devDependencies\": {\n    \"@turf/area\": \"^4.0.1\",\n    \"@turf/difference\": \"^4.0.1\",\n    \"@turf/intersect\": \"^3.0.14\",\n    \"@turf/union\": \"^3.0.14\",\n    \"benchmark\": \"^2.1.4\",\n    \"dox\": \"^0.9.0\",\n    \"doxme\": \"^1.8.2\",\n    \"eslint\": \"^3.19.0\",\n    \"eslint-config-mourner\": \"^2.0.1\",\n    \"tape\": \"^4.6.3\"\n  },\n  \"dependencies\": {\n    \"@mapbox/tilebelt\": \"^1.0.1\"\n  },\n  \"eslintConfig\": {\n    \"extends\": \"mourner\",\n    \"rules\": {\n      \"camelcase\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "test/fixtures/blocky.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        -123.74855171115327,\n        31.950713949178226\n      ],\n      [\n        -118.125,\n        31.950713949178226\n      ],\n      [\n        -118.12471745286253,\n        31.95074177764231\n      ],\n      [\n        -118.12444576385307,\n        31.950824193602298\n      ],\n      [\n        -118.12419537382794,\n        31.950958029859063\n      ],\n      [\n        -118.12397590513537,\n        31.951138143160318\n      ],\n      [\n        -118.12379579183411,\n        31.9513576118529\n      ],\n      [\n        -118.12366195557735,\n        31.951608001878032\n      ],\n      [\n        -118.12357953961735,\n        31.951879690887473\n      ],\n      [\n        -118.12355171115327,\n        31.952162238024954\n      ],\n      [\n        -118.12355171115327,\n        36.59644084422347\n      ],\n      [\n        -84.37644828884673,\n        36.59644084422347\n      ],\n      [\n        -84.37644828884673,\n        11.17985016255852\n      ],\n      [\n        -118.12355171115327,\n        11.17985016255852\n      ],\n      [\n        -118.12355171115327,\n        27.05912578437406\n      ],\n      [\n        -118.12357953961735,\n        27.05940833151154\n      ],\n      [\n        -118.12366195557735,\n        27.059680020520982\n      ],\n      [\n        -118.12379579183411,\n        27.059930410546116\n      ],\n      [\n        -118.12397590513537,\n        27.060149879238697\n      ],\n      [\n        -118.12419537382794,\n        27.060329992539952\n      ],\n      [\n        -118.12444576385307,\n        27.060463828796717\n      ],\n      [\n        -118.12471745286253,\n        27.060546244756704\n      ],\n      [\n        -118.125,\n        27.06057407322079\n      ],\n      [\n        -123.74855171115327,\n        27.06057407322079\n      ],\n      [\n        -123.74855171115327,\n        31.950713949178226\n      ]\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/blocky_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              11.17840187\n            ],\n            [\n              -101.25,\n              16.63619188\n            ],\n            [\n              -95.625,\n              16.63619188\n            ],\n            [\n              -95.625,\n              11.17840187\n            ],\n            [\n              -101.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              16.63619188\n            ],\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -95.625,\n              21.94304553\n            ],\n            [\n              -95.625,\n              16.63619188\n            ],\n            [\n              -101.25,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -95.625,\n              21.94304553\n            ],\n            [\n              -101.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -95.625,\n              31.95216224\n            ],\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -101.25,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -101.25,\n              36.59788913\n            ],\n            [\n              -95.625,\n              36.59788913\n            ],\n            [\n              -95.625,\n              31.95216224\n            ],\n            [\n              -101.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              11.17840187\n            ],\n            [\n              -106.875,\n              16.63619188\n            ],\n            [\n              -101.25,\n              16.63619188\n            ],\n            [\n              -101.25,\n              11.17840187\n            ],\n            [\n              -106.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              16.63619188\n            ],\n            [\n              -106.875,\n              21.94304553\n            ],\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -101.25,\n              16.63619188\n            ],\n            [\n              -106.875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              21.94304553\n            ],\n            [\n              -106.875,\n              27.05912578\n            ],\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -106.875,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              27.05912578\n            ],\n            [\n              -106.875,\n              31.95216224\n            ],\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -106.875,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              31.95216224\n            ],\n            [\n              -106.875,\n              36.59788913\n            ],\n            [\n              -101.25,\n              36.59788913\n            ],\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -106.875,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              11.17840187\n            ],\n            [\n              -112.5,\n              16.63619188\n            ],\n            [\n              -106.875,\n              16.63619188\n            ],\n            [\n              -106.875,\n              11.17840187\n            ],\n            [\n              -112.5,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              16.63619188\n            ],\n            [\n              -112.5,\n              21.94304553\n            ],\n            [\n              -106.875,\n              21.94304553\n            ],\n            [\n              -106.875,\n              16.63619188\n            ],\n            [\n              -112.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              21.94304553\n            ],\n            [\n              -112.5,\n              27.05912578\n            ],\n            [\n              -106.875,\n              27.05912578\n            ],\n            [\n              -106.875,\n              21.94304553\n            ],\n            [\n              -112.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              27.05912578\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -106.875,\n              31.95216224\n            ],\n            [\n              -106.875,\n              27.05912578\n            ],\n            [\n              -112.5,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -112.5,\n              36.59788913\n            ],\n            [\n              -106.875,\n              36.59788913\n            ],\n            [\n              -106.875,\n              31.95216224\n            ],\n            [\n              -112.5,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              11.17840187\n            ],\n            [\n              -118.125,\n              16.63619188\n            ],\n            [\n              -112.5,\n              16.63619188\n            ],\n            [\n              -112.5,\n              11.17840187\n            ],\n            [\n              -118.125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              16.63619188\n            ],\n            [\n              -118.125,\n              21.94304553\n            ],\n            [\n              -112.5,\n              21.94304553\n            ],\n            [\n              -112.5,\n              16.63619188\n            ],\n            [\n              -118.125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              21.94304553\n            ],\n            [\n              -118.125,\n              27.05912578\n            ],\n            [\n              -112.5,\n              27.05912578\n            ],\n            [\n              -112.5,\n              21.94304553\n            ],\n            [\n              -118.125,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              27.05912578\n            ],\n            [\n              -118.125,\n              31.95216224\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -112.5,\n              27.05912578\n            ],\n            [\n              -118.125,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              31.95216224\n            ],\n            [\n              -118.125,\n              36.59788913\n            ],\n            [\n              -112.5,\n              36.59788913\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -118.125,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              27.05912578\n            ],\n            [\n              -123.75,\n              31.95216224\n            ],\n            [\n              -118.125,\n              31.95216224\n            ],\n            [\n              -118.125,\n              27.05912578\n            ],\n            [\n              -123.75,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -90,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -90,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -90,\n              27.05912578\n            ],\n            [\n              -84.375,\n              27.05912578\n            ],\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -90,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              27.05912578\n            ],\n            [\n              -90,\n              31.95216224\n            ],\n            [\n              -84.375,\n              31.95216224\n            ],\n            [\n              -84.375,\n              27.05912578\n            ],\n            [\n              -90,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              31.95216224\n            ],\n            [\n              -90,\n              36.59788913\n            ],\n            [\n              -84.375,\n              36.59788913\n            ],\n            [\n              -84.375,\n              31.95216224\n            ],\n            [\n              -90,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              11.17840187\n            ],\n            [\n              -95.625,\n              16.63619188\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -95.625,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              16.63619188\n            ],\n            [\n              -95.625,\n              21.94304553\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -95.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              21.94304553\n            ],\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -90,\n              27.05912578\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -95.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -95.625,\n              31.95216224\n            ],\n            [\n              -90,\n              31.95216224\n            ],\n            [\n              -90,\n              27.05912578\n            ],\n            [\n              -95.625,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              31.95216224\n            ],\n            [\n              -95.625,\n              36.59788913\n            ],\n            [\n              -90,\n              36.59788913\n            ],\n            [\n              -90,\n              31.95216224\n            ],\n            [\n              -95.625,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.74855171,\n              31.95071395\n            ],\n            [\n              -118.125,\n              31.95071395\n            ],\n            [\n              -118.12471745,\n              31.95074178\n            ],\n            [\n              -118.12444576,\n              31.95082419\n            ],\n            [\n              -118.12419537,\n              31.95095803\n            ],\n            [\n              -118.12397591,\n              31.95113814\n            ],\n            [\n              -118.12379579,\n              31.95135761\n            ],\n            [\n              -118.12366196,\n              31.951608\n            ],\n            [\n              -118.12357954,\n              31.95187969\n            ],\n            [\n              -118.12355171,\n              31.95216224\n            ],\n            [\n              -118.12355171,\n              36.59644084\n            ],\n            [\n              -84.37644829,\n              36.59644084\n            ],\n            [\n              -84.37644829,\n              11.17985016\n            ],\n            [\n              -118.12355171,\n              11.17985016\n            ],\n            [\n              -118.12355171,\n              27.05912578\n            ],\n            [\n              -118.12357954,\n              27.05940833\n            ],\n            [\n              -118.12366196,\n              27.05968002\n            ],\n            [\n              -118.12379579,\n              27.05993041\n            ],\n            [\n              -118.12397591,\n              27.06014988\n            ],\n            [\n              -118.12419537,\n              27.06032999\n            ],\n            [\n              -118.12444576,\n              27.06046383\n            ],\n            [\n              -118.12471745,\n              27.06054624\n            ],\n            [\n              -118.125,\n              27.06057407\n            ],\n            [\n              -123.74855171,\n              27.06057407\n            ],\n            [\n              -123.74855171,\n              31.95071395\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/building.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        -77.15269088745116,\n        38.87153962460514\n      ],\n      [\n        -77.1521383523941,\n        38.871322446566325\n      ],\n      [\n        -77.15196132659912,\n        38.87159391901113\n      ],\n      [\n        -77.15202569961546,\n        38.87162315444336\n      ],\n      [\n        -77.1519023180008,\n        38.87179021382536\n      ],\n      [\n        -77.15266406536102,\n        38.8727758561868\n      ],\n      [\n        -77.1527713537216,\n        38.87274662122871\n      ],\n      [\n        -77.15282499790192,\n        38.87282179681094\n      ],\n      [\n        -77.15323269367218,\n        38.87267562199469\n      ],\n      [\n        -77.15313613414764,\n        38.87254197618533\n      ],\n      [\n        -77.15270698070526,\n        38.87236656567917\n      ],\n      [\n        -77.1523904800415,\n        38.87198233162923\n      ],\n      [\n        -77.15269088745116,\n        38.87153962460514\n      ]\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/building_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.15286255,\n              38.87072103\n            ],\n            [\n              -77.15286255,\n              38.87179021\n            ],\n            [\n              -77.15148926,\n              38.87179021\n            ],\n            [\n              -77.15148926,\n              38.87072103\n            ],\n            [\n              -77.15286255,\n              38.87072103\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.15286255,\n              38.87179021\n            ],\n            [\n              -77.15286255,\n              38.87285938\n            ],\n            [\n              -77.15148926,\n              38.87285938\n            ],\n            [\n              -77.15148926,\n              38.87179021\n            ],\n            [\n              -77.15286255,\n              38.87179021\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.15423584,\n              38.87179021\n            ],\n            [\n              -77.15423584,\n              38.87285938\n            ],\n            [\n              -77.15286255,\n              38.87285938\n            ],\n            [\n              -77.15286255,\n              38.87179021\n            ],\n            [\n              -77.15423584,\n              38.87179021\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.15269089,\n              38.87153962\n            ],\n            [\n              -77.15213835,\n              38.87132245\n            ],\n            [\n              -77.15196133,\n              38.87159392\n            ],\n            [\n              -77.1520257,\n              38.87162315\n            ],\n            [\n              -77.15190232,\n              38.87179021\n            ],\n            [\n              -77.15266407,\n              38.87277586\n            ],\n            [\n              -77.15277135,\n              38.87274662\n            ],\n            [\n              -77.152825,\n              38.8728218\n            ],\n            [\n              -77.15323269,\n              38.87267562\n            ],\n            [\n              -77.15313613,\n              38.87254198\n            ],\n            [\n              -77.15270698,\n              38.87236657\n            ],\n            [\n              -77.15239048,\n              38.87198233\n            ],\n            [\n              -77.15269089,\n              38.87153962\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/degenring.geojson",
    "content": "{\n  \"type\": \"MultiPolygon\",\n  \"coordinates\": [\n    [\n      [\n        [\n          -87.061082,\n          31.363745\n        ],\n        [\n          -87.04404,\n          31.377009\n        ],\n        [\n          -87.040931,\n          31.379676\n        ],\n        [\n          -87.036651,\n          31.383917\n        ],\n        [\n          -87.029722,\n          31.391829\n        ],\n        [\n          -87.032293,\n          31.392847\n        ],\n        [\n          -87.034529,\n          31.392719\n        ],\n        [\n          -87.03582,\n          31.393347\n        ],\n        [\n          -87.036416,\n          31.393416\n        ],\n        [\n          -87.03666,\n          31.393614\n        ],\n        [\n          -87.038661,\n          31.394216\n        ],\n        [\n          -87.039197,\n          31.39484\n        ],\n        [\n          -87.040592,\n          31.395646\n        ],\n        [\n          -87.04106,\n          31.395716\n        ],\n        [\n          -87.041492,\n          31.396479\n        ],\n        [\n          -87.041787,\n          31.396434\n        ],\n        [\n          -87.042251,\n          31.396726\n        ],\n        [\n          -87.042951,\n          31.396532\n        ],\n        [\n          -87.043634,\n          31.396593\n        ],\n        [\n          -87.043986,\n          31.395797\n        ],\n        [\n          -87.043891,\n          31.395481\n        ],\n        [\n          -87.044851,\n          31.395219\n        ],\n        [\n          -87.045115,\n          31.395383\n        ],\n        [\n          -87.045614,\n          31.395266\n        ],\n        [\n          -87.046077,\n          31.395551\n        ],\n        [\n          -87.046165,\n          31.395264\n        ],\n        [\n          -87.046332,\n          31.395242\n        ],\n        [\n          -87.046712,\n          31.395587\n        ],\n        [\n          -87.047083,\n          31.395509\n        ],\n        [\n          -87.047969,\n          31.395902\n        ],\n        [\n          -87.049129,\n          31.395832\n        ],\n        [\n          -87.049707,\n          31.396193\n        ],\n        [\n          -87.050104,\n          31.395944\n        ],\n        [\n          -87.050476,\n          31.396102\n        ],\n        [\n          -87.050886,\n          31.396013\n        ],\n        [\n          -87.052146,\n          31.396811\n        ],\n        [\n          -87.052353,\n          31.397366\n        ],\n        [\n          -87.052285,\n          31.397928\n        ],\n        [\n          -87.051391,\n          31.398541\n        ],\n        [\n          -87.051198,\n          31.399031\n        ],\n        [\n          -87.052079,\n          31.400327\n        ],\n        [\n          -87.053346,\n          31.401213\n        ],\n        [\n          -87.054238,\n          31.402899\n        ],\n        [\n          -87.054733,\n          31.403216\n        ],\n        [\n          -87.055169,\n          31.403248\n        ],\n        [\n          -87.055552,\n          31.402994\n        ],\n        [\n          -87.055788,\n          31.402564\n        ],\n        [\n          -87.056271,\n          31.402482\n        ],\n        [\n          -87.05764,\n          31.402884\n        ],\n        [\n          -87.057626,\n          31.405208\n        ],\n        [\n          -87.05781,\n          31.407063\n        ],\n        [\n          -87.057079,\n          31.407207\n        ],\n        [\n          -87.056814,\n          31.408185\n        ],\n        [\n          -87.057382,\n          31.410012\n        ],\n        [\n          -87.057346,\n          31.41046\n        ],\n        [\n          -87.057738,\n          31.412362\n        ],\n        [\n          -87.057759,\n          31.413781\n        ],\n        [\n          -87.057595,\n          31.414034\n        ],\n        [\n          -87.057126,\n          31.414229\n        ],\n        [\n          -87.054669,\n          31.414633\n        ],\n        [\n          -87.054379,\n          31.415116\n        ],\n        [\n          -87.053828,\n          31.415577\n        ],\n        [\n          -87.053114,\n          31.41689\n        ],\n        [\n          -87.053799,\n          31.416989\n        ],\n        [\n          -87.054736,\n          31.416187\n        ],\n        [\n          -87.05499,\n          31.415642\n        ],\n        [\n          -87.055509,\n          31.415464\n        ],\n        [\n          -87.055949,\n          31.41505\n        ],\n        [\n          -87.057237,\n          31.41498\n        ],\n        [\n          -87.057692,\n          31.414775\n        ],\n        [\n          -87.057864,\n          31.414587\n        ],\n        [\n          -87.057818,\n          31.414351\n        ],\n        [\n          -87.058894,\n          31.414209\n        ],\n        [\n          -87.059756,\n          31.41348\n        ],\n        [\n          -87.060434,\n          31.413137\n        ],\n        [\n          -87.060833,\n          31.41269\n        ],\n        [\n          -87.061653,\n          31.412326\n        ],\n        [\n          -87.061693,\n          31.411705\n        ],\n        [\n          -87.061977,\n          31.411399\n        ],\n        [\n          -87.063125,\n          31.411395\n        ],\n        [\n          -87.064559,\n          31.410728\n        ],\n        [\n          -87.065074,\n          31.410753\n        ],\n        [\n          -87.066483,\n          31.411213\n        ],\n        [\n          -87.068129,\n          31.412148\n        ],\n        [\n          -87.070265,\n          31.411901\n        ],\n        [\n          -87.072532,\n          31.412033\n        ],\n        [\n          -87.074344,\n          31.411587\n        ],\n        [\n          -87.076002,\n          31.411699\n        ],\n        [\n          -87.076609,\n          31.411909\n        ],\n        [\n          -87.077447,\n          31.412841\n        ],\n        [\n          -87.078506,\n          31.413674\n        ],\n        [\n          -87.079376,\n          31.414045\n        ],\n        [\n          -87.079843,\n          31.415099\n        ],\n        [\n          -87.079904,\n          31.41566\n        ],\n        [\n          -87.080625,\n          31.416803\n        ],\n        [\n          -87.081086,\n          31.417285\n        ],\n        [\n          -87.081851,\n          31.417728\n        ],\n        [\n          -87.082589,\n          31.419001\n        ],\n        [\n          -87.083427,\n          31.4194\n        ],\n        [\n          -87.085324,\n          31.420978\n        ],\n        [\n          -87.085732,\n          31.421619\n        ],\n        [\n          -87.102116,\n          31.421889\n        ],\n        [\n          -87.101674,\n          31.423915\n        ],\n        [\n          -87.108863,\n          31.427137\n        ],\n        [\n          -87.109155,\n          31.430902\n        ],\n        [\n          -87.108913,\n          31.432205\n        ],\n        [\n          -87.108021,\n          31.433511\n        ],\n        [\n          -87.091931,\n          31.444431\n        ],\n        [\n          -87.091085,\n          31.444424\n        ],\n        [\n          -87.090467,\n          31.444605\n        ],\n        [\n          -87.088594,\n          31.444496\n        ],\n        [\n          -87.087714,\n          31.444257\n        ],\n        [\n          -87.086677,\n          31.444755\n        ],\n        [\n          -87.085755,\n          31.444362\n        ],\n        [\n          -87.083995,\n          31.443981\n        ],\n        [\n          -87.082914,\n          31.444534\n        ],\n        [\n          -87.082036,\n          31.444763\n        ],\n        [\n          -87.0819,\n          31.445649\n        ],\n        [\n          -87.081159,\n          31.446367\n        ],\n        [\n          -87.081002,\n          31.446885\n        ],\n        [\n          -87.080502,\n          31.446897\n        ],\n        [\n          -87.080246,\n          31.447102\n        ],\n        [\n          -87.079944,\n          31.447042\n        ],\n        [\n          -87.079157,\n          31.447463\n        ],\n        [\n          -87.077464,\n          31.447469\n        ],\n        [\n          -87.07701,\n          31.447877\n        ],\n        [\n          -87.07723,\n          31.448234\n        ],\n        [\n          -87.077214,\n          31.448812\n        ],\n        [\n          -87.076831,\n          31.449165\n        ],\n        [\n          -87.076299,\n          31.449299\n        ],\n        [\n          -87.074674,\n          31.451318\n        ],\n        [\n          -87.073168,\n          31.451653\n        ],\n        [\n          -87.072224,\n          31.451595\n        ],\n        [\n          -87.071387,\n          31.452299\n        ],\n        [\n          -87.069857,\n          31.45283\n        ],\n        [\n          -87.096487,\n          31.457022\n        ],\n        [\n          -87.093436,\n          31.458081\n        ],\n        [\n          -87.091872,\n          31.459226\n        ],\n        [\n          -87.089862,\n          31.46033\n        ],\n        [\n          -87.088151,\n          31.461012\n        ],\n        [\n          -87.086716,\n          31.461911\n        ],\n        [\n          -87.084809,\n          31.462003\n        ],\n        [\n          -87.079994,\n          31.463564\n        ],\n        [\n          -87.07657,\n          31.464218\n        ],\n        [\n          -87.074356,\n          31.465346\n        ],\n        [\n          -87.072572,\n          31.465427\n        ],\n        [\n          -87.071604,\n          31.465715\n        ],\n        [\n          -87.070759,\n          31.466181\n        ],\n        [\n          -87.070371,\n          31.466752\n        ],\n        [\n          -87.069546,\n          31.467393\n        ],\n        [\n          -87.067735,\n          31.469703\n        ],\n        [\n          -87.063379,\n          31.469836\n        ],\n        [\n          -87.061271,\n          31.470106\n        ],\n        [\n          -87.061054,\n          31.470406\n        ],\n        [\n          -87.0607,\n          31.471685\n        ],\n        [\n          -87.05862,\n          31.473508\n        ],\n        [\n          -87.058097,\n          31.474423\n        ],\n        [\n          -87.05939,\n          31.475254\n        ],\n        [\n          -87.062603,\n          31.477929\n        ],\n        [\n          -87.06419,\n          31.478745\n        ],\n        [\n          -87.072444,\n          31.480423\n        ],\n        [\n          -87.075817,\n          31.481428\n        ],\n        [\n          -87.085923,\n          31.485835\n        ],\n        [\n          -87.112143,\n          31.495845\n        ],\n        [\n          -87.116658,\n          31.496826\n        ],\n        [\n          -87.117962,\n          31.496734\n        ],\n        [\n          -87.119119,\n          31.496258\n        ],\n        [\n          -87.122696,\n          31.502124\n        ],\n        [\n          -87.124718,\n          31.502094\n        ],\n        [\n          -87.125753,\n          31.502262\n        ],\n        [\n          -87.12614,\n          31.50253\n        ],\n        [\n          -87.126018,\n          31.503814\n        ],\n        [\n          -87.124527,\n          31.505132\n        ],\n        [\n          -87.124105,\n          31.506528\n        ],\n        [\n          -87.123559,\n          31.506701\n        ],\n        [\n          -87.12436,\n          31.514752\n        ],\n        [\n          -87.124558,\n          31.515813\n        ],\n        [\n          -87.125063,\n          31.517129\n        ],\n        [\n          -87.125814,\n          31.517216\n        ],\n        [\n          -87.130505,\n          31.516259\n        ],\n        [\n          -87.131885,\n          31.515591\n        ],\n        [\n          -87.133614,\n          31.51517\n        ],\n        [\n          -87.135986,\n          31.515331\n        ],\n        [\n          -87.136742,\n          31.514551\n        ],\n        [\n          -87.137135,\n          31.513372\n        ],\n        [\n          -87.14078,\n          31.511446\n        ],\n        [\n          -87.141738,\n          31.511108\n        ],\n        [\n          -87.145183,\n          31.51034\n        ],\n        [\n          -87.14628,\n          31.510483\n        ],\n        [\n          -87.148412,\n          31.510283\n        ],\n        [\n          -87.149954,\n          31.510416\n        ],\n        [\n          -87.151993,\n          31.509845\n        ],\n        [\n          -87.151895,\n          31.513551\n        ],\n        [\n          -87.152454,\n          31.51618\n        ],\n        [\n          -87.150858,\n          31.518153\n        ],\n        [\n          -87.150174,\n          31.520491\n        ],\n        [\n          -87.150041,\n          31.52181\n        ],\n        [\n          -87.149493,\n          31.522782\n        ],\n        [\n          -87.149124,\n          31.527349\n        ],\n        [\n          -87.149371,\n          31.529928\n        ],\n        [\n          -87.151121,\n          31.532333\n        ],\n        [\n          -87.152914,\n          31.53297\n        ],\n        [\n          -87.153899,\n          31.53363\n        ],\n        [\n          -87.156149,\n          31.534501\n        ],\n        [\n          -87.15698,\n          31.534979\n        ],\n        [\n          -87.158434,\n          31.536424\n        ],\n        [\n          -87.159947,\n          31.538575\n        ],\n        [\n          -87.161607,\n          31.539244\n        ],\n        [\n          -87.162069,\n          31.53959\n        ],\n        [\n          -87.16322,\n          31.539599\n        ],\n        [\n          -87.163806,\n          31.539797\n        ],\n        [\n          -87.164269,\n          31.540368\n        ],\n        [\n          -87.164444,\n          31.541073\n        ],\n        [\n          -87.165225,\n          31.542485\n        ],\n        [\n          -87.165662,\n          31.542897\n        ],\n        [\n          -87.165351,\n          31.544138\n        ],\n        [\n          -87.164501,\n          31.544318\n        ],\n        [\n          -87.163724,\n          31.544709\n        ],\n        [\n          -87.160629,\n          31.547472\n        ],\n        [\n          -87.159765,\n          31.548894\n        ],\n        [\n          -87.159581,\n          31.550384\n        ],\n        [\n          -87.158204,\n          31.549104\n        ],\n        [\n          -87.156773,\n          31.548446\n        ],\n        [\n          -87.153558,\n          31.545886\n        ],\n        [\n          -87.152672,\n          31.545444\n        ],\n        [\n          -87.146778,\n          31.543812\n        ],\n        [\n          -87.145517,\n          31.54362\n        ],\n        [\n          -87.14319,\n          31.543522\n        ],\n        [\n          -87.142574,\n          31.543891\n        ],\n        [\n          -87.141972,\n          31.543981\n        ],\n        [\n          -87.141589,\n          31.544513\n        ],\n        [\n          -87.140982,\n          31.543833\n        ],\n        [\n          -87.140176,\n          31.542439\n        ],\n        [\n          -87.138474,\n          31.541352\n        ],\n        [\n          -87.137805,\n          31.540682\n        ],\n        [\n          -87.13607,\n          31.538235\n        ],\n        [\n          -87.133545,\n          31.535448\n        ],\n        [\n          -87.132629,\n          31.534119\n        ],\n        [\n          -87.130598,\n          31.533522\n        ],\n        [\n          -87.129581,\n          31.533606\n        ],\n        [\n          -87.12463,\n          31.534813\n        ],\n        [\n          -87.121846,\n          31.5344\n        ],\n        [\n          -87.12082,\n          31.534439\n        ],\n        [\n          -87.112588,\n          31.536199\n        ],\n        [\n          -87.108337,\n          31.538226\n        ],\n        [\n          -87.107139,\n          31.538628\n        ],\n        [\n          -87.105372,\n          31.538906\n        ],\n        [\n          -87.102467,\n          31.540337\n        ],\n        [\n          -87.101512,\n          31.540629\n        ],\n        [\n          -87.09896,\n          31.540448\n        ],\n        [\n          -87.09689,\n          31.539172\n        ],\n        [\n          -87.096175,\n          31.538934\n        ],\n        [\n          -87.088064,\n          31.538981\n        ],\n        [\n          -87.087067,\n          31.538776\n        ],\n        [\n          -87.084123,\n          31.537626\n        ],\n        [\n          -87.082563,\n          31.537813\n        ],\n        [\n          -87.083466,\n          31.539986\n        ],\n        [\n          -87.084363,\n          31.541313\n        ],\n        [\n          -87.084505,\n          31.541957\n        ],\n        [\n          -87.084716,\n          31.545752\n        ],\n        [\n          -87.083678,\n          31.547551\n        ],\n        [\n          -87.085941,\n          31.548296\n        ],\n        [\n          -87.087626,\n          31.548503\n        ],\n        [\n          -87.091193,\n          31.549665\n        ],\n        [\n          -87.096026,\n          31.549414\n        ],\n        [\n          -87.098008,\n          31.550674\n        ],\n        [\n          -87.100512,\n          31.550903\n        ],\n        [\n          -87.101754,\n          31.551593\n        ],\n        [\n          -87.102643,\n          31.552421\n        ],\n        [\n          -87.104959,\n          31.553569\n        ],\n        [\n          -87.105326,\n          31.55392\n        ],\n        [\n          -87.105773,\n          31.554871\n        ],\n        [\n          -87.106726,\n          31.555666\n        ],\n        [\n          -87.107511,\n          31.556093\n        ],\n        [\n          -87.108104,\n          31.556696\n        ],\n        [\n          -87.109262,\n          31.557166\n        ],\n        [\n          -87.110312,\n          31.558104\n        ],\n        [\n          -87.111148,\n          31.558498\n        ],\n        [\n          -87.112399,\n          31.558367\n        ],\n        [\n          -87.114423,\n          31.558774\n        ],\n        [\n          -87.115636,\n          31.55877\n        ],\n        [\n          -87.117275,\n          31.559078\n        ],\n        [\n          -87.118284,\n          31.559466\n        ],\n        [\n          -87.119499,\n          31.559157\n        ],\n        [\n          -87.121633,\n          31.558905\n        ],\n        [\n          -87.123123,\n          31.559066\n        ],\n        [\n          -87.124215,\n          31.559382\n        ],\n        [\n          -87.126905,\n          31.560768\n        ],\n        [\n          -87.129755,\n          31.562776\n        ],\n        [\n          -87.130541,\n          31.561749\n        ],\n        [\n          -87.131279,\n          31.561124\n        ],\n        [\n          -87.13632,\n          31.559437\n        ],\n        [\n          -87.138421,\n          31.559183\n        ],\n        [\n          -87.147042,\n          31.559183\n        ],\n        [\n          -87.148537,\n          31.558883\n        ],\n        [\n          -87.155547,\n          31.554691\n        ],\n        [\n          -87.157462,\n          31.554048\n        ],\n        [\n          -87.160096,\n          31.553688\n        ],\n        [\n          -87.160887,\n          31.557306\n        ],\n        [\n          -87.160782,\n          31.55943\n        ],\n        [\n          -87.158925,\n          31.56614\n        ],\n        [\n          -87.153825,\n          31.577805\n        ],\n        [\n          -87.152341,\n          31.579871\n        ],\n        [\n          -87.145126,\n          31.587168\n        ],\n        [\n          -87.144205,\n          31.588658\n        ],\n        [\n          -87.141064,\n          31.600965\n        ],\n        [\n          -87.140545,\n          31.608316\n        ],\n        [\n          -87.140044,\n          31.609348\n        ],\n        [\n          -87.138009,\n          31.611685\n        ],\n        [\n          -87.137371,\n          31.612872\n        ],\n        [\n          -87.137278,\n          31.613547\n        ],\n        [\n          -87.1374,\n          31.614446\n        ],\n        [\n          -87.139476,\n          31.622646\n        ],\n        [\n          -87.139574,\n          31.624784\n        ],\n        [\n          -87.138303,\n          31.629655\n        ],\n        [\n          -87.137558,\n          31.633861\n        ],\n        [\n          -87.136879,\n          31.636405\n        ],\n        [\n          -87.136198,\n          31.641232\n        ],\n        [\n          -87.135652,\n          31.641978\n        ],\n        [\n          -87.135051,\n          31.642417\n        ],\n        [\n          -87.132666,\n          31.643145\n        ],\n        [\n          -87.133142,\n          31.657931\n        ],\n        [\n          -87.161902,\n          31.654982\n        ],\n        [\n          -87.162415,\n          31.655497\n        ],\n        [\n          -87.163353,\n          31.656052\n        ],\n        [\n          -87.166918,\n          31.656889\n        ],\n        [\n          -87.167767,\n          31.657548\n        ],\n        [\n          -87.168743,\n          31.660035\n        ],\n        [\n          -87.16837,\n          31.661817\n        ],\n        [\n          -87.167934,\n          31.66222\n        ],\n        [\n          -87.168099,\n          31.663229\n        ],\n        [\n          -87.167353,\n          31.664044\n        ],\n        [\n          -87.166025,\n          31.664589\n        ],\n        [\n          -87.165233,\n          31.666155\n        ],\n        [\n          -87.163007,\n          31.667029\n        ],\n        [\n          -87.162801,\n          31.667244\n        ],\n        [\n          -87.162695,\n          31.667929\n        ],\n        [\n          -87.162477,\n          31.668102\n        ],\n        [\n          -87.161485,\n          31.668063\n        ],\n        [\n          -87.160985,\n          31.668347\n        ],\n        [\n          -87.160811,\n          31.668832\n        ],\n        [\n          -87.160921,\n          31.67062\n        ],\n        [\n          -87.160512,\n          31.672374\n        ],\n        [\n          -87.159031,\n          31.674071\n        ],\n        [\n          -87.158084,\n          31.67411\n        ],\n        [\n          -87.158115,\n          31.674785\n        ],\n        [\n          -87.158593,\n          31.675687\n        ],\n        [\n          -87.156072,\n          31.676339\n        ],\n        [\n          -87.155294,\n          31.676728\n        ],\n        [\n          -87.152719,\n          31.679045\n        ],\n        [\n          -87.150486,\n          31.681597\n        ],\n        [\n          -87.149579,\n          31.684755\n        ],\n        [\n          -87.148797,\n          31.685974\n        ],\n        [\n          -87.148734,\n          31.688817\n        ],\n        [\n          -87.148511,\n          31.690299\n        ],\n        [\n          -87.149236,\n          31.691807\n        ],\n        [\n          -87.149737,\n          31.692221\n        ],\n        [\n          -87.150211,\n          31.692374\n        ],\n        [\n          -87.150882,\n          31.693249\n        ],\n        [\n          -87.152369,\n          31.693497\n        ],\n        [\n          -87.151267,\n          31.69493\n        ],\n        [\n          -87.151177,\n          31.697218\n        ],\n        [\n          -87.152476,\n          31.697313\n        ],\n        [\n          -87.153234,\n          31.699463\n        ],\n        [\n          -87.150791,\n          31.698025\n        ],\n        [\n          -87.150228,\n          31.698048\n        ],\n        [\n          -87.149531,\n          31.698368\n        ],\n        [\n          -87.148888,\n          31.698345\n        ],\n        [\n          -87.148432,\n          31.697978\n        ],\n        [\n          -87.147709,\n          31.697726\n        ],\n        [\n          -87.146422,\n          31.697795\n        ],\n        [\n          -87.145377,\n          31.697405\n        ],\n        [\n          -87.144948,\n          31.697496\n        ],\n        [\n          -87.14476,\n          31.697702\n        ],\n        [\n          -87.144921,\n          31.698688\n        ],\n        [\n          -87.144251,\n          31.698963\n        ],\n        [\n          -87.144331,\n          31.699627\n        ],\n        [\n          -87.144116,\n          31.700383\n        ],\n        [\n          -87.143472,\n          31.701048\n        ],\n        [\n          -87.142104,\n          31.703477\n        ],\n        [\n          -87.141836,\n          31.703591\n        ],\n        [\n          -87.140925,\n          31.703362\n        ],\n        [\n          -87.140469,\n          31.703476\n        ],\n        [\n          -87.138619,\n          31.704277\n        ],\n        [\n          -87.13819,\n          31.704942\n        ],\n        [\n          -87.137171,\n          31.704873\n        ],\n        [\n          -87.136876,\n          31.70517\n        ],\n        [\n          -87.136635,\n          31.70517\n        ],\n        [\n          -87.136287,\n          31.704781\n        ],\n        [\n          -87.135697,\n          31.704643\n        ],\n        [\n          -87.134223,\n          31.704688\n        ],\n        [\n          -87.132212,\n          31.705008\n        ],\n        [\n          -87.130818,\n          31.704824\n        ],\n        [\n          -87.130388,\n          31.705603\n        ],\n        [\n          -87.129182,\n          31.705786\n        ],\n        [\n          -87.127091,\n          31.705716\n        ],\n        [\n          -87.126555,\n          31.705899\n        ],\n        [\n          -87.126125,\n          31.706701\n        ],\n        [\n          -87.125857,\n          31.707984\n        ],\n        [\n          -87.125321,\n          31.709084\n        ],\n        [\n          -87.123682,\n          31.710528\n        ],\n        [\n          -87.120359,\n          31.712203\n        ],\n        [\n          -87.12036,\n          31.712638\n        ],\n        [\n          -87.121218,\n          31.713807\n        ],\n        [\n          -87.121166,\n          31.714105\n        ],\n        [\n          -87.118806,\n          31.715251\n        ],\n        [\n          -87.117708,\n          31.716237\n        ],\n        [\n          -87.116797,\n          31.716467\n        ],\n        [\n          -87.116314,\n          31.716834\n        ],\n        [\n          -87.115322,\n          31.717041\n        ],\n        [\n          -87.113956,\n          31.717912\n        ],\n        [\n          -87.113447,\n          31.718829\n        ],\n        [\n          -87.113206,\n          31.719654\n        ],\n        [\n          -87.113554,\n          31.72002\n        ],\n        [\n          -87.1135,\n          31.720433\n        ],\n        [\n          -87.113099,\n          31.721075\n        ],\n        [\n          -87.112804,\n          31.721121\n        ],\n        [\n          -87.112455,\n          31.720617\n        ],\n        [\n          -87.11181,\n          31.720571\n        ],\n        [\n          -87.111435,\n          31.721144\n        ],\n        [\n          -87.111462,\n          31.721442\n        ],\n        [\n          -87.111757,\n          31.721763\n        ],\n        [\n          -87.111543,\n          31.722084\n        ],\n        [\n          -87.110416,\n          31.722107\n        ],\n        [\n          -87.10988,\n          31.722314\n        ],\n        [\n          -87.109532,\n          31.722657\n        ],\n        [\n          -87.109317,\n          31.723184\n        ],\n        [\n          -87.107252,\n          31.723094\n        ],\n        [\n          -87.105375,\n          31.723667\n        ],\n        [\n          -87.103578,\n          31.724424\n        ],\n        [\n          -87.102961,\n          31.724906\n        ],\n        [\n          -87.103042,\n          31.725479\n        ],\n        [\n          -87.102291,\n          31.725845\n        ],\n        [\n          -87.101538,\n          31.726905\n        ],\n        [\n          -87.097966,\n          31.727435\n        ],\n        [\n          -87.091166,\n          31.727668\n        ],\n        [\n          -87.089938,\n          31.727517\n        ],\n        [\n          -87.089093,\n          31.72682\n        ],\n        [\n          -87.088207,\n          31.724562\n        ],\n        [\n          -87.087666,\n          31.723883\n        ],\n        [\n          -87.086306,\n          31.722977\n        ],\n        [\n          -87.084829,\n          31.722342\n        ],\n        [\n          -87.083401,\n          31.722163\n        ],\n        [\n          -87.078484,\n          31.722258\n        ],\n        [\n          -87.074292,\n          31.721871\n        ],\n        [\n          -87.077018,\n          31.719337\n        ],\n        [\n          -87.078061,\n          31.718014\n        ],\n        [\n          -87.07851,\n          31.715385\n        ],\n        [\n          -87.078506,\n          31.713879\n        ],\n        [\n          -87.07772,\n          31.710133\n        ],\n        [\n          -87.077046,\n          31.708511\n        ],\n        [\n          -87.075862,\n          31.706935\n        ],\n        [\n          -87.075618,\n          31.705607\n        ],\n        [\n          -87.07519,\n          31.705239\n        ],\n        [\n          -87.073582,\n          31.704916\n        ],\n        [\n          -87.073019,\n          31.70464\n        ],\n        [\n          -87.0716,\n          31.703444\n        ],\n        [\n          -87.070153,\n          31.702755\n        ],\n        [\n          -87.069831,\n          31.70248\n        ],\n        [\n          -87.06943,\n          31.701653\n        ],\n        [\n          -87.068091,\n          31.70094\n        ],\n        [\n          -87.067663,\n          31.700091\n        ],\n        [\n          -87.067584,\n          31.699149\n        ],\n        [\n          -87.067236,\n          31.698299\n        ],\n        [\n          -87.066486,\n          31.697541\n        ],\n        [\n          -87.06603,\n          31.697449\n        ],\n        [\n          -87.061396,\n          31.697488\n        ],\n        [\n          -87.06109,\n          31.704063\n        ],\n        [\n          -87.060954,\n          31.704848\n        ],\n        [\n          -87.060497,\n          31.705909\n        ],\n        [\n          -87.059539,\n          31.70712\n        ],\n        [\n          -87.05629,\n          31.710053\n        ],\n        [\n          -87.051453,\n          31.717944\n        ],\n        [\n          -87.050785,\n          31.718595\n        ],\n        [\n          -87.049855,\n          31.718803\n        ],\n        [\n          -87.048903,\n          31.719321\n        ],\n        [\n          -87.04564,\n          31.717007\n        ],\n        [\n          -87.044354,\n          31.716442\n        ],\n        [\n          -87.040494,\n          31.715991\n        ],\n        [\n          -87.02799,\n          31.713087\n        ],\n        [\n          -87.025316,\n          31.712859\n        ],\n        [\n          -87.024453,\n          31.712553\n        ],\n        [\n          -87.024141,\n          31.712559\n        ],\n        [\n          -87.021726,\n          31.713762\n        ],\n        [\n          -87.019431,\n          31.714214\n        ],\n        [\n          -87.016872,\n          31.713746\n        ],\n        [\n          -87.015664,\n          31.713899\n        ],\n        [\n          -87.012351,\n          31.713444\n        ],\n        [\n          -87.008496,\n          31.714384\n        ],\n        [\n          -87.00447,\n          31.714859\n        ],\n        [\n          -87.003958,\n          31.715017\n        ],\n        [\n          -87.003073,\n          31.715713\n        ],\n        [\n          -87.001619,\n          31.716428\n        ],\n        [\n          -87.002251,\n          31.715113\n        ],\n        [\n          -87.002453,\n          31.711764\n        ],\n        [\n          -87.003309,\n          31.709269\n        ],\n        [\n          -87.002779,\n          31.704444\n        ],\n        [\n          -87.003081,\n          31.703525\n        ],\n        [\n          -87.004436,\n          31.701387\n        ],\n        [\n          -87.004543,\n          31.700728\n        ],\n        [\n          -87.00435,\n          31.699867\n        ],\n        [\n          -87.003429,\n          31.698814\n        ],\n        [\n          -87.001712,\n          31.697999\n        ],\n        [\n          -87.000455,\n          31.69778\n        ],\n        [\n          -86.995523,\n          31.697826\n        ],\n        [\n          -86.993897,\n          31.697642\n        ],\n        [\n          -86.990544,\n          31.696721\n        ],\n        [\n          -86.989663,\n          31.696264\n        ],\n        [\n          -86.988696,\n          31.695488\n        ],\n        [\n          -86.988688,\n          31.694771\n        ],\n        [\n          -86.989155,\n          31.693344\n        ],\n        [\n          -86.989227,\n          31.691088\n        ],\n        [\n          -86.989795,\n          31.690016\n        ],\n        [\n          -86.989693,\n          31.6893\n        ],\n        [\n          -86.988434,\n          31.687242\n        ],\n        [\n          -86.988649,\n          31.685357\n        ],\n        [\n          -86.988529,\n          31.684409\n        ],\n        [\n          -86.989546,\n          31.68272\n        ],\n        [\n          -86.989546,\n          31.681813\n        ],\n        [\n          -86.988888,\n          31.680938\n        ],\n        [\n          -86.988804,\n          31.679053\n        ],\n        [\n          -86.988266,\n          31.677724\n        ],\n        [\n          -86.98768,\n          31.676786\n        ],\n        [\n          -86.987608,\n          31.676251\n        ],\n        [\n          -86.987943,\n          31.674953\n        ],\n        [\n          -86.987824,\n          31.67417\n        ],\n        [\n          -86.987393,\n          31.673479\n        ],\n        [\n          -86.987441,\n          31.672192\n        ],\n        [\n          -86.988015,\n          31.668947\n        ],\n        [\n          -86.987967,\n          31.667978\n        ],\n        [\n          -86.987465,\n          31.667381\n        ],\n        [\n          -86.98701,\n          31.667216\n        ],\n        [\n          -86.983386,\n          31.666567\n        ],\n        [\n          -86.98274,\n          31.665805\n        ],\n        [\n          -86.982668,\n          31.665156\n        ],\n        [\n          -86.98299,\n          31.664423\n        ],\n        [\n          -86.982908,\n          31.663464\n        ],\n        [\n          -86.982531,\n          31.663304\n        ],\n        [\n          -86.981218,\n          31.663444\n        ],\n        [\n          -86.980521,\n          31.662623\n        ],\n        [\n          -86.979205,\n          31.661892\n        ],\n        [\n          -86.978588,\n          31.661115\n        ],\n        [\n          -86.977622,\n          31.660453\n        ],\n        [\n          -86.977408,\n          31.659904\n        ],\n        [\n          -86.976603,\n          31.659632\n        ],\n        [\n          -86.976281,\n          31.659289\n        ],\n        [\n          -86.976199,\n          31.658284\n        ],\n        [\n          -86.975796,\n          31.65755\n        ],\n        [\n          -86.973999,\n          31.65721\n        ],\n        [\n          -86.972524,\n          31.657169\n        ],\n        [\n          -86.970647,\n          31.656874\n        ],\n        [\n          -86.969976,\n          31.656533\n        ],\n        [\n          -86.969735,\n          31.65619\n        ],\n        [\n          -86.969007,\n          31.652944\n        ],\n        [\n          -86.968122,\n          31.652533\n        ],\n        [\n          -86.969088,\n          31.65163\n        ],\n        [\n          -86.970278,\n          31.64985\n        ],\n        [\n          -86.971718,\n          31.648778\n        ],\n        [\n          -86.971289,\n          31.648274\n        ],\n        [\n          -86.971074,\n          31.646945\n        ],\n        [\n          -86.970804,\n          31.64628\n        ],\n        [\n          -86.96799,\n          31.6436\n        ],\n        [\n          -86.965898,\n          31.63959\n        ],\n        [\n          -86.964505,\n          31.638032\n        ],\n        [\n          -86.964746,\n          31.637162\n        ],\n        [\n          -86.964183,\n          31.63652\n        ],\n        [\n          -86.964183,\n          31.635833\n        ],\n        [\n          -86.964879,\n          31.635237\n        ],\n        [\n          -86.965334,\n          31.63432\n        ],\n        [\n          -86.96761,\n          31.633242\n        ],\n        [\n          -86.966887,\n          31.631042\n        ],\n        [\n          -86.967636,\n          31.630217\n        ],\n        [\n          -86.967797,\n          31.629209\n        ],\n        [\n          -86.968599,\n          31.627238\n        ],\n        [\n          -86.968251,\n          31.626481\n        ],\n        [\n          -86.966724,\n          31.626046\n        ],\n        [\n          -86.965318,\n          31.625159\n        ],\n        [\n          -86.964849,\n          31.624458\n        ],\n        [\n          -86.964715,\n          31.623908\n        ],\n        [\n          -86.964527,\n          31.622418\n        ],\n        [\n          -86.964741,\n          31.621478\n        ],\n        [\n          -86.965062,\n          31.620653\n        ],\n        [\n          -86.965544,\n          31.619966\n        ],\n        [\n          -86.96632,\n          31.619255\n        ],\n        [\n          -86.966454,\n          31.618774\n        ],\n        [\n          -86.9664,\n          31.615657\n        ],\n        [\n          -86.966078,\n          31.615015\n        ],\n        [\n          -86.965649,\n          31.614649\n        ],\n        [\n          -86.9653,\n          31.614488\n        ],\n        [\n          -86.964309,\n          31.614512\n        ],\n        [\n          -86.963747,\n          31.614283\n        ],\n        [\n          -86.963158,\n          31.613733\n        ],\n        [\n          -86.962863,\n          31.61316\n        ],\n        [\n          -86.962863,\n          31.61151\n        ],\n        [\n          -86.961068,\n          31.608256\n        ],\n        [\n          -86.959836,\n          31.607019\n        ],\n        [\n          -86.959434,\n          31.606011\n        ],\n        [\n          -86.959193,\n          31.605759\n        ],\n        [\n          -86.958309,\n          31.605324\n        ],\n        [\n          -86.956461,\n          31.603651\n        ],\n        [\n          -86.956193,\n          31.602597\n        ],\n        [\n          -86.955738,\n          31.601772\n        ],\n        [\n          -86.955121,\n          31.599297\n        ],\n        [\n          -86.95405,\n          31.598907\n        ],\n        [\n          -86.953702,\n          31.598426\n        ],\n        [\n          -86.953434,\n          31.598357\n        ],\n        [\n          -86.952471,\n          31.598358\n        ],\n        [\n          -86.952096,\n          31.598106\n        ],\n        [\n          -86.951052,\n          31.598404\n        ],\n        [\n          -86.950944,\n          31.59767\n        ],\n        [\n          -86.949847,\n          31.597074\n        ],\n        [\n          -86.949552,\n          31.597029\n        ],\n        [\n          -86.949258,\n          31.597304\n        ],\n        [\n          -86.948749,\n          31.59735\n        ],\n        [\n          -86.948481,\n          31.59712\n        ],\n        [\n          -86.948481,\n          31.596731\n        ],\n        [\n          -86.948106,\n          31.596364\n        ],\n        [\n          -86.946634,\n          31.59586\n        ],\n        [\n          -86.946419,\n          31.595631\n        ],\n        [\n          -86.946418,\n          31.594714\n        ],\n        [\n          -86.945829,\n          31.5946\n        ],\n        [\n          -86.945535,\n          31.594714\n        ],\n        [\n          -86.945722,\n          31.595402\n        ],\n        [\n          -86.94516,\n          31.595562\n        ],\n        [\n          -86.942268,\n          31.594439\n        ],\n        [\n          -86.94184,\n          31.593798\n        ],\n        [\n          -86.941599,\n          31.592537\n        ],\n        [\n          -86.941117,\n          31.592881\n        ],\n        [\n          -86.940608,\n          31.592973\n        ],\n        [\n          -86.940126,\n          31.592675\n        ],\n        [\n          -86.940448,\n          31.591827\n        ],\n        [\n          -86.940448,\n          31.5913\n        ],\n        [\n          -86.938707,\n          31.589146\n        ],\n        [\n          -86.938306,\n          31.588825\n        ],\n        [\n          -86.936994,\n          31.588733\n        ],\n        [\n          -86.936833,\n          31.588596\n        ],\n        [\n          -86.936833,\n          31.588343\n        ],\n        [\n          -86.937342,\n          31.587587\n        ],\n        [\n          -86.937235,\n          31.587358\n        ],\n        [\n          -86.936352,\n          31.586877\n        ],\n        [\n          -86.935602,\n          31.586212\n        ],\n        [\n          -86.93512,\n          31.585731\n        ],\n        [\n          -86.934799,\n          31.584974\n        ],\n        [\n          -86.933942,\n          31.583943\n        ],\n        [\n          -86.933246,\n          31.583554\n        ],\n        [\n          -86.932818,\n          31.581743\n        ],\n        [\n          -86.932363,\n          31.581583\n        ],\n        [\n          -86.930462,\n          31.581789\n        ],\n        [\n          -86.929552,\n          31.581514\n        ],\n        [\n          -86.929124,\n          31.581628\n        ],\n        [\n          -86.928856,\n          31.582728\n        ],\n        [\n          -86.927464,\n          31.583003\n        ],\n        [\n          -86.927089,\n          31.583324\n        ],\n        [\n          -86.927892,\n          31.583897\n        ],\n        [\n          -86.927973,\n          31.584195\n        ],\n        [\n          -86.926527,\n          31.584264\n        ],\n        [\n          -86.925965,\n          31.584722\n        ],\n        [\n          -86.924492,\n          31.584905\n        ],\n        [\n          -86.924332,\n          31.585134\n        ],\n        [\n          -86.924465,\n          31.585913\n        ],\n        [\n          -86.924037,\n          31.586257\n        ],\n        [\n          -86.924144,\n          31.586395\n        ],\n        [\n          -86.924867,\n          31.586693\n        ],\n        [\n          -86.925938,\n          31.586784\n        ],\n        [\n          -86.926286,\n          31.586991\n        ],\n        [\n          -86.925964,\n          31.588091\n        ],\n        [\n          -86.925964,\n          31.588983\n        ],\n        [\n          -86.923528,\n          31.588709\n        ],\n        [\n          -86.918866,\n          31.587288\n        ],\n        [\n          -86.915785,\n          31.58669\n        ],\n        [\n          -86.915518,\n          31.586736\n        ],\n        [\n          -86.915302,\n          31.587011\n        ],\n        [\n          -86.915275,\n          31.587974\n        ],\n        [\n          -86.914792,\n          31.588455\n        ],\n        [\n          -86.914749,\n          31.587057\n        ],\n        [\n          -86.914983,\n          31.585476\n        ],\n        [\n          -86.913848,\n          31.584857\n        ],\n        [\n          -86.912904,\n          31.58465\n        ],\n        [\n          -86.910664,\n          31.585108\n        ],\n        [\n          -86.909827,\n          31.584994\n        ],\n        [\n          -86.90891,\n          31.5852\n        ],\n        [\n          -86.906804,\n          31.584375\n        ],\n        [\n          -86.906502,\n          31.58355\n        ],\n        [\n          -86.902781,\n          31.583984\n        ],\n        [\n          -86.901523,\n          31.583915\n        ],\n        [\n          -86.89898,\n          31.583319\n        ],\n        [\n          -86.896142,\n          31.583318\n        ],\n        [\n          -86.895285,\n          31.584188\n        ],\n        [\n          -86.894883,\n          31.585792\n        ],\n        [\n          -86.894882,\n          31.586824\n        ],\n        [\n          -86.893731,\n          31.586273\n        ],\n        [\n          -86.890065,\n          31.583797\n        ],\n        [\n          -86.888647,\n          31.582192\n        ],\n        [\n          -86.886855,\n          31.579648\n        ],\n        [\n          -86.884794,\n          31.57944\n        ],\n        [\n          -86.882866,\n          31.579715\n        ],\n        [\n          -86.880617,\n          31.579095\n        ],\n        [\n          -86.877726,\n          31.578796\n        ],\n        [\n          -86.875933,\n          31.577947\n        ],\n        [\n          -86.874545,\n          31.577844\n        ],\n        [\n          -86.874308,\n          31.576755\n        ],\n        [\n          -86.874441,\n          31.575472\n        ],\n        [\n          -86.8742,\n          31.574738\n        ],\n        [\n          -86.87533,\n          31.57389\n        ],\n        [\n          -86.875331,\n          31.5735\n        ],\n        [\n          -86.874038,\n          31.57302\n        ],\n        [\n          -86.874118,\n          31.57247\n        ],\n        [\n          -86.874563,\n          31.572103\n        ],\n        [\n          -86.874537,\n          31.571851\n        ],\n        [\n          -86.873903,\n          31.570981\n        ],\n        [\n          -86.87467,\n          31.570522\n        ],\n        [\n          -86.874683,\n          31.570087\n        ],\n        [\n          -86.873715,\n          31.569537\n        ],\n        [\n          -86.873607,\n          31.568942\n        ],\n        [\n          -86.873955,\n          31.568391\n        ],\n        [\n          -86.874549,\n          31.567956\n        ],\n        [\n          -86.874642,\n          31.566947\n        ],\n        [\n          -86.874462,\n          31.566764\n        ],\n        [\n          -86.873204,\n          31.566604\n        ],\n        [\n          -86.87283,\n          31.566375\n        ],\n        [\n          -86.872294,\n          31.566307\n        ],\n        [\n          -86.871598,\n          31.566605\n        ],\n        [\n          -86.871278,\n          31.567361\n        ],\n        [\n          -86.870448,\n          31.567797\n        ],\n        [\n          -86.870047,\n          31.567591\n        ],\n        [\n          -86.870287,\n          31.566766\n        ],\n        [\n          -86.869591,\n          31.566193\n        ],\n        [\n          -86.869591,\n          31.565827\n        ],\n        [\n          -86.869697,\n          31.564979\n        ],\n        [\n          -86.870205,\n          31.564428\n        ],\n        [\n          -86.870098,\n          31.564199\n        ],\n        [\n          -86.869322,\n          31.563741\n        ],\n        [\n          -86.868732,\n          31.563123\n        ],\n        [\n          -86.868705,\n          31.562618\n        ],\n        [\n          -86.868973,\n          31.56216\n        ],\n        [\n          -86.86841,\n          31.561679\n        ],\n        [\n          -86.867982,\n          31.560465\n        ],\n        [\n          -86.868276,\n          31.559754\n        ],\n        [\n          -86.868757,\n          31.559479\n        ],\n        [\n          -86.868784,\n          31.559318\n        ],\n        [\n          -86.868275,\n          31.559089\n        ],\n        [\n          -86.867523,\n          31.558289\n        ],\n        [\n          -86.867123,\n          31.555324\n        ],\n        [\n          -86.866668,\n          31.555056\n        ],\n        [\n          -86.866589,\n          31.554256\n        ],\n        [\n          -86.865655,\n          31.553776\n        ],\n        [\n          -86.865588,\n          31.553602\n        ],\n        [\n          -86.866129,\n          31.553044\n        ],\n        [\n          -86.866575,\n          31.553021\n        ],\n        [\n          -86.86712,\n          31.55364\n        ],\n        [\n          -86.86747,\n          31.553679\n        ],\n        [\n          -86.868244,\n          31.552743\n        ],\n        [\n          -86.867044,\n          31.552551\n        ],\n        [\n          -86.866826,\n          31.551203\n        ],\n        [\n          -86.866579,\n          31.550817\n        ],\n        [\n          -86.865913,\n          31.55033\n        ],\n        [\n          -86.86589,\n          31.550122\n        ],\n        [\n          -86.866591,\n          31.549625\n        ],\n        [\n          -86.865268,\n          31.549425\n        ],\n        [\n          -86.865059,\n          31.549056\n        ],\n        [\n          -86.865016,\n          31.548061\n        ],\n        [\n          -86.866302,\n          31.546981\n        ],\n        [\n          -86.866453,\n          31.546597\n        ],\n        [\n          -86.866254,\n          31.54642\n        ],\n        [\n          -86.865406,\n          31.546393\n        ],\n        [\n          -86.864863,\n          31.546121\n        ],\n        [\n          -86.864379,\n          31.545715\n        ],\n        [\n          -86.86414,\n          31.544934\n        ],\n        [\n          -86.863151,\n          31.543855\n        ],\n        [\n          -86.862644,\n          31.543786\n        ],\n        [\n          -86.861254,\n          31.544219\n        ],\n        [\n          -86.86104,\n          31.54415\n        ],\n        [\n          -86.861013,\n          31.543623\n        ],\n        [\n          -86.859836,\n          31.543371\n        ],\n        [\n          -86.85922,\n          31.543073\n        ],\n        [\n          -86.858658,\n          31.542478\n        ],\n        [\n          -86.858497,\n          31.542088\n        ],\n        [\n          -86.859032,\n          31.540829\n        ],\n        [\n          -86.858362,\n          31.540073\n        ],\n        [\n          -86.858335,\n          31.539431\n        ],\n        [\n          -86.857961,\n          31.539385\n        ],\n        [\n          -86.857158,\n          31.539867\n        ],\n        [\n          -86.856463,\n          31.539729\n        ],\n        [\n          -86.855418,\n          31.538378\n        ],\n        [\n          -86.854214,\n          31.538011\n        ],\n        [\n          -86.852528,\n          31.53721\n        ],\n        [\n          -86.852421,\n          31.537049\n        ],\n        [\n          -86.852528,\n          31.53627\n        ],\n        [\n          -86.850628,\n          31.535698\n        ],\n        [\n          -86.849825,\n          31.534988\n        ],\n        [\n          -86.84953,\n          31.534919\n        ],\n        [\n          -86.848888,\n          31.534919\n        ],\n        [\n          -86.848193,\n          31.535492\n        ],\n        [\n          -86.846828,\n          31.53602\n        ],\n        [\n          -86.84533,\n          31.535745\n        ],\n        [\n          -86.843777,\n          31.535814\n        ],\n        [\n          -86.84351,\n          31.535654\n        ],\n        [\n          -86.843456,\n          31.535173\n        ],\n        [\n          -86.842706,\n          31.5335\n        ],\n        [\n          -86.842144,\n          31.533019\n        ],\n        [\n          -86.842331,\n          31.532308\n        ],\n        [\n          -86.841769,\n          31.531116\n        ],\n        [\n          -86.840672,\n          31.530475\n        ],\n        [\n          -86.840404,\n          31.5302\n        ],\n        [\n          -86.840297,\n          31.52965\n        ],\n        [\n          -86.840003,\n          31.529444\n        ],\n        [\n          -86.839467,\n          31.527679\n        ],\n        [\n          -86.839253,\n          31.52635\n        ],\n        [\n          -86.839386,\n          31.525204\n        ],\n        [\n          -86.838022,\n          31.525204\n        ],\n        [\n          -86.83845,\n          31.5247\n        ],\n        [\n          -86.838476,\n          31.524242\n        ],\n        [\n          -86.838102,\n          31.524013\n        ],\n        [\n          -86.838048,\n          31.523623\n        ],\n        [\n          -86.838449,\n          31.522981\n        ],\n        [\n          -86.837272,\n          31.521698\n        ],\n        [\n          -86.837245,\n          31.521332\n        ],\n        [\n          -86.837378,\n          31.521171\n        ],\n        [\n          -86.838609,\n          31.520827\n        ],\n        [\n          -86.838716,\n          31.520575\n        ],\n        [\n          -86.838475,\n          31.520208\n        ],\n        [\n          -86.837699,\n          31.519681\n        ],\n        [\n          -86.835933,\n          31.519223\n        ],\n        [\n          -86.835024,\n          31.518696\n        ],\n        [\n          -86.834489,\n          31.518101\n        ],\n        [\n          -86.834248,\n          31.518032\n        ],\n        [\n          -86.833445,\n          31.518536\n        ],\n        [\n          -86.833338,\n          31.518192\n        ],\n        [\n          -86.833713,\n          31.517322\n        ],\n        [\n          -86.833445,\n          31.517253\n        ],\n        [\n          -86.832803,\n          31.517826\n        ],\n        [\n          -86.832455,\n          31.517826\n        ],\n        [\n          -86.832536,\n          31.517459\n        ],\n        [\n          -86.83299,\n          31.516932\n        ],\n        [\n          -86.832963,\n          31.516542\n        ],\n        [\n          -86.832669,\n          31.516267\n        ],\n        [\n          -86.832348,\n          31.516313\n        ],\n        [\n          -86.831867,\n          31.517047\n        ],\n        [\n          -86.831118,\n          31.517322\n        ],\n        [\n          -86.829673,\n          31.516772\n        ],\n        [\n          -86.829646,\n          31.515787\n        ],\n        [\n          -86.829512,\n          31.51558\n        ],\n        [\n          -86.828656,\n          31.51542\n        ],\n        [\n          -86.828041,\n          31.51636\n        ],\n        [\n          -86.827051,\n          31.516887\n        ],\n        [\n          -86.826944,\n          31.51636\n        ],\n        [\n          -86.827372,\n          31.515649\n        ],\n        [\n          -86.827265,\n          31.515374\n        ],\n        [\n          -86.826195,\n          31.515077\n        ],\n        [\n          -86.825928,\n          31.516039\n        ],\n        [\n          -86.824482,\n          31.51565\n        ],\n        [\n          -86.823733,\n          31.514664\n        ],\n        [\n          -86.823706,\n          31.513977\n        ],\n        [\n          -86.823974,\n          31.513427\n        ],\n        [\n          -86.824027,\n          31.512877\n        ],\n        [\n          -86.823358,\n          31.512418\n        ],\n        [\n          -86.822476,\n          31.512258\n        ],\n        [\n          -86.821914,\n          31.511937\n        ],\n        [\n          -86.821807,\n          31.511296\n        ],\n        [\n          -86.822181,\n          31.510883\n        ],\n        [\n          -86.822181,\n          31.510516\n        ],\n        [\n          -86.8217,\n          31.51015\n        ],\n        [\n          -86.820442,\n          31.510241\n        ],\n        [\n          -86.819827,\n          31.509943\n        ],\n        [\n          -86.819586,\n          31.509646\n        ],\n        [\n          -86.819827,\n          31.508568\n        ],\n        [\n          -86.819131,\n          31.507424\n        ],\n        [\n          -86.819131,\n          31.507057\n        ],\n        [\n          -86.819399,\n          31.506759\n        ],\n        [\n          -86.819426,\n          31.506415\n        ],\n        [\n          -86.819078,\n          31.505957\n        ],\n        [\n          -86.814156,\n          31.504307\n        ],\n        [\n          -86.813541,\n          31.503917\n        ],\n        [\n          -86.813514,\n          31.503734\n        ],\n        [\n          -86.812846,\n          31.503436\n        ],\n        [\n          -86.812418,\n          31.503574\n        ],\n        [\n          -86.812177,\n          31.503917\n        ],\n        [\n          -86.810331,\n          31.507217\n        ],\n        [\n          -86.809502,\n          31.510287\n        ],\n        [\n          -86.809127,\n          31.510952\n        ],\n        [\n          -86.808325,\n          31.511342\n        ],\n        [\n          -86.807924,\n          31.511365\n        ],\n        [\n          -86.806506,\n          31.510998\n        ],\n        [\n          -86.805677,\n          31.510539\n        ],\n        [\n          -86.804821,\n          31.509531\n        ],\n        [\n          -86.804687,\n          31.508706\n        ],\n        [\n          -86.805008,\n          31.507606\n        ],\n        [\n          -86.804982,\n          31.506988\n        ],\n        [\n          -86.803671,\n          31.505292\n        ],\n        [\n          -86.803671,\n          31.504559\n        ],\n        [\n          -86.804046,\n          31.503367\n        ],\n        [\n          -86.805116,\n          31.501534\n        ],\n        [\n          -86.806319,\n          31.49887\n        ],\n        [\n          -86.80656,\n          31.497586\n        ],\n        [\n          -86.806453,\n          31.495363\n        ],\n        [\n          -86.805971,\n          31.494607\n        ],\n        [\n          -86.80557,\n          31.494332\n        ],\n        [\n          -86.804848,\n          31.4944\n        ],\n        [\n          -86.804286,\n          31.494653\n        ],\n        [\n          -86.803617,\n          31.495317\n        ],\n        [\n          -86.802815,\n          31.496463\n        ],\n        [\n          -86.802093,\n          31.496669\n        ],\n        [\n          -86.800755,\n          31.496646\n        ],\n        [\n          -86.799472,\n          31.496348\n        ],\n        [\n          -86.798268,\n          31.495706\n        ],\n        [\n          -86.797653,\n          31.494766\n        ],\n        [\n          -86.797226,\n          31.493162\n        ],\n        [\n          -86.79661,\n          31.492589\n        ],\n        [\n          -86.79645,\n          31.491764\n        ],\n        [\n          -86.79728,\n          31.488968\n        ],\n        [\n          -86.797521,\n          31.487066\n        ],\n        [\n          -86.797815,\n          31.486333\n        ],\n        [\n          -86.797815,\n          31.485485\n        ],\n        [\n          -86.797441,\n          31.484408\n        ],\n        [\n          -86.797414,\n          31.483468\n        ],\n        [\n          -86.797762,\n          31.482597\n        ],\n        [\n          -86.797789,\n          31.481772\n        ],\n        [\n          -86.7968,\n          31.478655\n        ],\n        [\n          -86.796372,\n          31.477899\n        ],\n        [\n          -86.79426,\n          31.476202\n        ],\n        [\n          -86.793672,\n          31.474989\n        ],\n        [\n          -86.793352,\n          31.472834\n        ],\n        [\n          -86.793673,\n          31.47123\n        ],\n        [\n          -86.793192,\n          31.470222\n        ],\n        [\n          -86.791373,\n          31.467815\n        ],\n        [\n          -86.79132,\n          31.467036\n        ],\n        [\n          -86.791775,\n          31.465752\n        ],\n        [\n          -86.791747,\n          31.465119\n        ],\n        [\n          -86.790865,\n          31.464329\n        ],\n        [\n          -86.788698,\n          31.463596\n        ],\n        [\n          -86.787788,\n          31.463605\n        ],\n        [\n          -86.786717,\n          31.464006\n        ],\n        [\n          -86.783721,\n          31.464724\n        ],\n        [\n          -86.781606,\n          31.465664\n        ],\n        [\n          -86.781232,\n          31.465553\n        ],\n        [\n          -86.780724,\n          31.465171\n        ],\n        [\n          -86.77885,\n          31.462684\n        ],\n        [\n          -86.775881,\n          31.460045\n        ],\n        [\n          -86.775372,\n          31.459367\n        ],\n        [\n          -86.775372,\n          31.458733\n        ],\n        [\n          -86.77556,\n          31.458485\n        ],\n        [\n          -86.775879,\n          31.458259\n        ],\n        [\n          -86.776414,\n          31.458173\n        ],\n        [\n          -86.777937,\n          31.458948\n        ],\n        [\n          -86.779486,\n          31.459262\n        ],\n        [\n          -86.780261,\n          31.45927\n        ],\n        [\n          -86.782211,\n          31.458832\n        ],\n        [\n          -86.784909,\n          31.457535\n        ],\n        [\n          -86.786325,\n          31.456432\n        ],\n        [\n          -86.786752,\n          31.455572\n        ],\n        [\n          -86.786886,\n          31.454893\n        ],\n        [\n          -86.786888,\n          31.453592\n        ],\n        [\n          -86.786656,\n          31.452528\n        ],\n        [\n          -86.78555,\n          31.45035\n        ],\n        [\n          -86.784481,\n          31.449135\n        ],\n        [\n          -86.784294,\n          31.448379\n        ],\n        [\n          -86.784401,\n          31.44799\n        ],\n        [\n          -86.784989,\n          31.447394\n        ],\n        [\n          -86.785711,\n          31.447119\n        ],\n        [\n          -86.786674,\n          31.446432\n        ],\n        [\n          -86.787315,\n          31.445125\n        ],\n        [\n          -86.788065,\n          31.443018\n        ],\n        [\n          -86.788252,\n          31.440497\n        ],\n        [\n          -86.787985,\n          31.439557\n        ],\n        [\n          -86.78721,\n          31.439076\n        ],\n        [\n          -86.786729,\n          31.439099\n        ],\n        [\n          -86.78558,\n          31.43958\n        ],\n        [\n          -86.784135,\n          31.439809\n        ],\n        [\n          -86.78336,\n          31.440175\n        ],\n        [\n          -86.783199,\n          31.440656\n        ],\n        [\n          -86.782905,\n          31.440908\n        ],\n        [\n          -86.782745,\n          31.44265\n        ],\n        [\n          -86.781355,\n          31.444368\n        ],\n        [\n          -86.779083,\n          31.445032\n        ],\n        [\n          -86.777638,\n          31.444733\n        ],\n        [\n          -86.776649,\n          31.444344\n        ],\n        [\n          -86.776088,\n          31.443748\n        ],\n        [\n          -86.775981,\n          31.44322\n        ],\n        [\n          -86.776223,\n          31.441136\n        ],\n        [\n          -86.775583,\n          31.437331\n        ],\n        [\n          -86.775583,\n          31.43575\n        ],\n        [\n          -86.774862,\n          31.434971\n        ],\n        [\n          -86.773152,\n          31.433962\n        ],\n        [\n          -86.771362,\n          31.432563\n        ],\n        [\n          -86.769331,\n          31.431967\n        ],\n        [\n          -86.768636,\n          31.432035\n        ],\n        [\n          -86.768208,\n          31.432264\n        ],\n        [\n          -86.768181,\n          31.432562\n        ],\n        [\n          -86.768422,\n          31.433089\n        ],\n        [\n          -86.768956,\n          31.433525\n        ],\n        [\n          -86.769998,\n          31.433984\n        ],\n        [\n          -86.771361,\n          31.43419\n        ],\n        [\n          -86.772617,\n          31.43497\n        ],\n        [\n          -86.772643,\n          31.436047\n        ],\n        [\n          -86.77144,\n          31.436734\n        ],\n        [\n          -86.770718,\n          31.436871\n        ],\n        [\n          -86.769382,\n          31.436665\n        ],\n        [\n          -86.767458,\n          31.435587\n        ],\n        [\n          -86.766416,\n          31.43467\n        ],\n        [\n          -86.765722,\n          31.433317\n        ],\n        [\n          -86.765268,\n          31.43279\n        ],\n        [\n          -86.764066,\n          31.432125\n        ],\n        [\n          -86.762783,\n          31.431987\n        ],\n        [\n          -86.76019,\n          31.432101\n        ],\n        [\n          -86.757705,\n          31.431435\n        ],\n        [\n          -86.755861,\n          31.431274\n        ],\n        [\n          -86.755567,\n          31.43109\n        ],\n        [\n          -86.755407,\n          31.430746\n        ],\n        [\n          -86.754739,\n          31.428821\n        ],\n        [\n          -86.754258,\n          31.428592\n        ],\n        [\n          -86.753804,\n          31.428568\n        ],\n        [\n          -86.753189,\n          31.428843\n        ],\n        [\n          -86.752734,\n          31.429714\n        ],\n        [\n          -86.752012,\n          31.430286\n        ],\n        [\n          -86.751531,\n          31.430378\n        ],\n        [\n          -86.751103,\n          31.430217\n        ],\n        [\n          -86.750596,\n          31.429667\n        ],\n        [\n          -86.750265,\n          31.428727\n        ],\n        [\n          -86.749683,\n          31.42859\n        ],\n        [\n          -86.748107,\n          31.427032\n        ],\n        [\n          -86.747572,\n          31.425703\n        ],\n        [\n          -86.746395,\n          31.424856\n        ],\n        [\n          -86.744283,\n          31.423871\n        ],\n        [\n          -86.740192,\n          31.420229\n        ],\n        [\n          -86.739791,\n          31.419679\n        ],\n        [\n          -86.739469,\n          31.417525\n        ],\n        [\n          -86.739015,\n          31.416402\n        ],\n        [\n          -86.737705,\n          31.415761\n        ],\n        [\n          -86.734418,\n          31.415006\n        ],\n        [\n          -86.733643,\n          31.414686\n        ],\n        [\n          -86.732866,\n          31.414182\n        ],\n        [\n          -86.730476,\n          31.411974\n        ],\n        [\n          -86.730393,\n          31.411607\n        ],\n        [\n          -86.730577,\n          31.411031\n        ],\n        [\n          -86.731029,\n          31.410938\n        ],\n        [\n          -86.732145,\n          31.411163\n        ],\n        [\n          -86.732384,\n          31.41107\n        ],\n        [\n          -86.732701,\n          31.410541\n        ],\n        [\n          -86.732722,\n          31.409781\n        ],\n        [\n          -86.7299,\n          31.408304\n        ],\n        [\n          -86.729788,\n          31.407609\n        ],\n        [\n          -86.730111,\n          31.407079\n        ],\n        [\n          -86.730164,\n          31.406575\n        ],\n        [\n          -86.72979,\n          31.405635\n        ],\n        [\n          -86.729628,\n          31.403023\n        ],\n        [\n          -86.729521,\n          31.402633\n        ],\n        [\n          -86.72912,\n          31.402175\n        ],\n        [\n          -86.728425,\n          31.401969\n        ],\n        [\n          -86.727704,\n          31.401969\n        ],\n        [\n          -86.724097,\n          31.402497\n        ],\n        [\n          -86.722547,\n          31.401993\n        ],\n        [\n          -86.72212,\n          31.401512\n        ],\n        [\n          -86.721665,\n          31.400573\n        ],\n        [\n          -86.721798,\n          31.400206\n        ],\n        [\n          -86.72276,\n          31.399358\n        ],\n        [\n          -86.725431,\n          31.397913\n        ],\n        [\n          -86.725992,\n          31.397111\n        ],\n        [\n          -86.726205,\n          31.396034\n        ],\n        [\n          -86.726097,\n          31.393788\n        ],\n        [\n          -86.725803,\n          31.392711\n        ],\n        [\n          -86.72476,\n          31.390029\n        ],\n        [\n          -86.723236,\n          31.387005\n        ],\n        [\n          -86.723208,\n          31.386409\n        ],\n        [\n          -86.723742,\n          31.385973\n        ],\n        [\n          -86.724116,\n          31.38595\n        ],\n        [\n          -86.724972,\n          31.386248\n        ],\n        [\n          -86.726228,\n          31.387462\n        ],\n        [\n          -86.726763,\n          31.387622\n        ],\n        [\n          -86.72711,\n          31.387485\n        ],\n        [\n          -86.727804,\n          31.386041\n        ],\n        [\n          -86.728097,\n          31.384895\n        ],\n        [\n          -86.728097,\n          31.383818\n        ],\n        [\n          -86.727748,\n          31.382718\n        ],\n        [\n          -86.726572,\n          31.380976\n        ],\n        [\n          -86.726412,\n          31.380449\n        ],\n        [\n          -86.726518,\n          31.38006\n        ],\n        [\n          -86.726865,\n          31.379717\n        ],\n        [\n          -86.729029,\n          31.379624\n        ],\n        [\n          -86.729964,\n          31.379211\n        ],\n        [\n          -86.730444,\n          31.37857\n        ],\n        [\n          -86.730337,\n          31.377905\n        ],\n        [\n          -86.726303,\n          31.375167\n        ],\n        [\n          -86.726114,\n          31.374304\n        ],\n        [\n          -86.726434,\n          31.372998\n        ],\n        [\n          -86.727449,\n          31.371164\n        ],\n        [\n          -86.727448,\n          31.370385\n        ],\n        [\n          -86.727074,\n          31.369858\n        ],\n        [\n          -86.725605,\n          31.368529\n        ],\n        [\n          -86.724615,\n          31.36594\n        ],\n        [\n          -86.724054,\n          31.363167\n        ],\n        [\n          -86.72392,\n          31.362869\n        ],\n        [\n          -86.723012,\n          31.362021\n        ],\n        [\n          -86.723758,\n          31.359523\n        ],\n        [\n          -86.724479,\n          31.358125\n        ],\n        [\n          -86.725012,\n          31.35448\n        ],\n        [\n          -86.726026,\n          31.352647\n        ],\n        [\n          -86.726052,\n          31.352326\n        ],\n        [\n          -86.725598,\n          31.351799\n        ],\n        [\n          -86.725278,\n          31.351684\n        ],\n        [\n          -86.723435,\n          31.351731\n        ],\n        [\n          -86.7221,\n          31.352396\n        ],\n        [\n          -86.7217,\n          31.352923\n        ],\n        [\n          -86.72162,\n          31.35384\n        ],\n        [\n          -86.721086,\n          31.353977\n        ],\n        [\n          -86.72007,\n          31.353313\n        ],\n        [\n          -86.719349,\n          31.352534\n        ],\n        [\n          -86.717906,\n          31.351801\n        ],\n        [\n          -86.717025,\n          31.351893\n        ],\n        [\n          -86.71553,\n          31.352718\n        ],\n        [\n          -86.714782,\n          31.352604\n        ],\n        [\n          -86.714275,\n          31.352031\n        ],\n        [\n          -86.714167,\n          31.350771\n        ],\n        [\n          -86.713794,\n          31.350313\n        ],\n        [\n          -86.710936,\n          31.349672\n        ],\n        [\n          -86.709708,\n          31.349901\n        ],\n        [\n          -86.708427,\n          31.353728\n        ],\n        [\n          -86.707652,\n          31.35382\n        ],\n        [\n          -86.706317,\n          31.353041\n        ],\n        [\n          -86.70597,\n          31.352583\n        ],\n        [\n          -86.705676,\n          31.35201\n        ],\n        [\n          -86.705675,\n          31.348687\n        ],\n        [\n          -86.705862,\n          31.34816\n        ],\n        [\n          -86.70677,\n          31.347037\n        ],\n        [\n          -86.706716,\n          31.346578\n        ],\n        [\n          -86.706102,\n          31.346166\n        ],\n        [\n          -86.702791,\n          31.345387\n        ],\n        [\n          -86.701402,\n          31.344333\n        ],\n        [\n          -86.700147,\n          31.343073\n        ],\n        [\n          -86.699693,\n          31.342546\n        ],\n        [\n          -86.699586,\n          31.341996\n        ],\n        [\n          -86.699506,\n          31.340804\n        ],\n        [\n          -86.699746,\n          31.340093\n        ],\n        [\n          -86.700867,\n          31.338076\n        ],\n        [\n          -86.701642,\n          31.337503\n        ],\n        [\n          -86.701139,\n          31.324358\n        ],\n        [\n          -86.70113,\n          31.315663\n        ],\n        [\n          -86.704306,\n          31.313394\n        ],\n        [\n          -86.70524,\n          31.311812\n        ],\n        [\n          -86.705988,\n          31.311262\n        ],\n        [\n          -86.707509,\n          31.310597\n        ],\n        [\n          -86.708363,\n          31.309589\n        ],\n        [\n          -86.708763,\n          31.309474\n        ],\n        [\n          -86.710659,\n          31.309543\n        ],\n        [\n          -86.710739,\n          31.309864\n        ],\n        [\n          -86.712447,\n          31.311582\n        ],\n        [\n          -86.713462,\n          31.312109\n        ],\n        [\n          -86.715891,\n          31.312773\n        ],\n        [\n          -86.716505,\n          31.313323\n        ],\n        [\n          -86.716452,\n          31.314011\n        ],\n        [\n          -86.715785,\n          31.314882\n        ],\n        [\n          -86.715892,\n          31.315134\n        ],\n        [\n          -86.716826,\n          31.315661\n        ],\n        [\n          -86.717253,\n          31.316142\n        ],\n        [\n          -86.717334,\n          31.317563\n        ],\n        [\n          -86.717494,\n          31.318021\n        ],\n        [\n          -86.718215,\n          31.318731\n        ],\n        [\n          -86.719176,\n          31.31864\n        ],\n        [\n          -86.719683,\n          31.318387\n        ],\n        [\n          -86.721927,\n          31.318593\n        ],\n        [\n          -86.722942,\n          31.319646\n        ],\n        [\n          -86.723632,\n          31.319873\n        ],\n        [\n          -86.724667,\n          31.320693\n        ],\n        [\n          -86.725384,\n          31.320805\n        ],\n        [\n          -86.726101,\n          31.321329\n        ],\n        [\n          -86.726392,\n          31.321762\n        ],\n        [\n          -86.727295,\n          31.322057\n        ],\n        [\n          -86.727905,\n          31.322673\n        ],\n        [\n          -86.731305,\n          31.323303\n        ],\n        [\n          -86.731889,\n          31.323164\n        ],\n        [\n          -86.732367,\n          31.32268\n        ],\n        [\n          -86.732924,\n          31.322586\n        ],\n        [\n          -86.734253,\n          31.322788\n        ],\n        [\n          -86.73474,\n          31.323031\n        ],\n        [\n          -86.735502,\n          31.321827\n        ],\n        [\n          -86.737666,\n          31.322129\n        ],\n        [\n          -86.740766,\n          31.321671\n        ],\n        [\n          -86.742346,\n          31.322446\n        ],\n        [\n          -86.743551,\n          31.322495\n        ],\n        [\n          -86.744008,\n          31.322367\n        ],\n        [\n          -86.743534,\n          31.320316\n        ],\n        [\n          -86.745215,\n          31.319828\n        ],\n        [\n          -86.747161,\n          31.318628\n        ],\n        [\n          -86.749601,\n          31.317946\n        ],\n        [\n          -86.752166,\n          31.316634\n        ],\n        [\n          -86.753563,\n          31.315654\n        ],\n        [\n          -86.756581,\n          31.313168\n        ],\n        [\n          -86.758881,\n          31.309562\n        ],\n        [\n          -86.760044,\n          31.308384\n        ],\n        [\n          -86.7599,\n          31.306236\n        ],\n        [\n          -86.757967,\n          31.301655\n        ],\n        [\n          -86.757431,\n          31.299153\n        ],\n        [\n          -86.757386,\n          31.297701\n        ],\n        [\n          -86.757782,\n          31.29471\n        ],\n        [\n          -86.759516,\n          31.292024\n        ],\n        [\n          -86.764082,\n          31.288519\n        ],\n        [\n          -86.764349,\n          31.28813\n        ],\n        [\n          -86.76467,\n          31.285632\n        ],\n        [\n          -86.764725,\n          31.282699\n        ],\n        [\n          -86.764299,\n          31.281438\n        ],\n        [\n          -86.76438,\n          31.279192\n        ],\n        [\n          -86.764167,\n          31.278505\n        ],\n        [\n          -86.763286,\n          31.27745\n        ],\n        [\n          -86.762566,\n          31.276052\n        ],\n        [\n          -86.7611,\n          31.274378\n        ],\n        [\n          -86.761207,\n          31.272934\n        ],\n        [\n          -86.761101,\n          31.272453\n        ],\n        [\n          -86.75913,\n          31.270891\n        ],\n        [\n          -86.75891,\n          31.269476\n        ],\n        [\n          -86.758543,\n          31.268805\n        ],\n        [\n          -86.75724,\n          31.26932\n        ],\n        [\n          -86.756288,\n          31.269942\n        ],\n        [\n          -86.755509,\n          31.270713\n        ],\n        [\n          -86.752536,\n          31.276337\n        ],\n        [\n          -86.750382,\n          31.278805\n        ],\n        [\n          -86.749075,\n          31.279853\n        ],\n        [\n          -86.744701,\n          31.282557\n        ],\n        [\n          -86.744052,\n          31.283418\n        ],\n        [\n          -86.743035,\n          31.285282\n        ],\n        [\n          -86.739785,\n          31.287592\n        ],\n        [\n          -86.738687,\n          31.288859\n        ],\n        [\n          -86.737647,\n          31.287869\n        ],\n        [\n          -86.736666,\n          31.287759\n        ],\n        [\n          -86.735872,\n          31.288084\n        ],\n        [\n          -86.735231,\n          31.288084\n        ],\n        [\n          -86.73331,\n          31.287604\n        ],\n        [\n          -86.732642,\n          31.287581\n        ],\n        [\n          -86.730588,\n          31.288338\n        ],\n        [\n          -86.727413,\n          31.290998\n        ],\n        [\n          -86.726266,\n          31.291319\n        ],\n        [\n          -86.725625,\n          31.291158\n        ],\n        [\n          -86.725038,\n          31.290425\n        ],\n        [\n          -86.725438,\n          31.28866\n        ],\n        [\n          -86.725064,\n          31.287446\n        ],\n        [\n          -86.726024,\n          31.287079\n        ],\n        [\n          -86.727652,\n          31.286872\n        ],\n        [\n          -86.727999,\n          31.286666\n        ],\n        [\n          -86.728212,\n          31.286299\n        ],\n        [\n          -86.728212,\n          31.285544\n        ],\n        [\n          -86.727464,\n          31.28426\n        ],\n        [\n          -86.72637,\n          31.283321\n        ],\n        [\n          -86.724475,\n          31.282313\n        ],\n        [\n          -86.724368,\n          31.282153\n        ],\n        [\n          -86.724768,\n          31.281007\n        ],\n        [\n          -86.724233,\n          31.279723\n        ],\n        [\n          -86.723565,\n          31.278876\n        ],\n        [\n          -86.722657,\n          31.278234\n        ],\n        [\n          -86.720976,\n          31.277983\n        ],\n        [\n          -86.720736,\n          31.277593\n        ],\n        [\n          -86.720843,\n          31.27702\n        ],\n        [\n          -86.724043,\n          31.273856\n        ],\n        [\n          -86.723189,\n          31.273238\n        ],\n        [\n          -86.723029,\n          31.272917\n        ],\n        [\n          -86.722939,\n          31.27117\n        ],\n        [\n          -86.723147,\n          31.270296\n        ],\n        [\n          -86.722664,\n          31.269836\n        ],\n        [\n          -86.721483,\n          31.269146\n        ],\n        [\n          -86.721505,\n          31.268341\n        ],\n        [\n          -86.721096,\n          31.266731\n        ],\n        [\n          -86.720828,\n          31.266524\n        ],\n        [\n          -86.720245,\n          31.265506\n        ],\n        [\n          -86.721364,\n          31.264414\n        ],\n        [\n          -86.727037,\n          31.261524\n        ],\n        [\n          -86.729424,\n          31.260955\n        ],\n        [\n          -86.73146,\n          31.261173\n        ],\n        [\n          -86.732221,\n          31.261082\n        ],\n        [\n          -86.734251,\n          31.260501\n        ],\n        [\n          -86.735013,\n          31.260025\n        ],\n        [\n          -86.736148,\n          31.260618\n        ],\n        [\n          -86.736758,\n          31.260729\n        ],\n        [\n          -86.738669,\n          31.260121\n        ],\n        [\n          -86.74005,\n          31.260251\n        ],\n        [\n          -86.740582,\n          31.260133\n        ],\n        [\n          -86.741746,\n          31.258931\n        ],\n        [\n          -86.742357,\n          31.258745\n        ],\n        [\n          -86.743419,\n          31.259059\n        ],\n        [\n          -86.743604,\n          31.259309\n        ],\n        [\n          -86.743467,\n          31.26006\n        ],\n        [\n          -86.743838,\n          31.260516\n        ],\n        [\n          -86.744741,\n          31.260464\n        ],\n        [\n          -86.744847,\n          31.260052\n        ],\n        [\n          -86.74578,\n          31.259249\n        ],\n        [\n          -86.746607,\n          31.258836\n        ],\n        [\n          -86.748448,\n          31.258262\n        ],\n        [\n          -86.749009,\n          31.258308\n        ],\n        [\n          -86.749382,\n          31.258399\n        ],\n        [\n          -86.749623,\n          31.258789\n        ],\n        [\n          -86.75025,\n          31.259086\n        ],\n        [\n          -86.750437,\n          31.259682\n        ],\n        [\n          -86.751049,\n          31.260645\n        ],\n        [\n          -86.752116,\n          31.261517\n        ],\n        [\n          -86.753103,\n          31.261517\n        ],\n        [\n          -86.754277,\n          31.261151\n        ],\n        [\n          -86.754624,\n          31.261335\n        ],\n        [\n          -86.75481,\n          31.26161\n        ],\n        [\n          -86.754676,\n          31.263924\n        ],\n        [\n          -86.754862,\n          31.264772\n        ],\n        [\n          -86.755582,\n          31.265598\n        ],\n        [\n          -86.756462,\n          31.266034\n        ],\n        [\n          -86.757129,\n          31.266149\n        ],\n        [\n          -86.757876,\n          31.26608\n        ],\n        [\n          -86.759584,\n          31.26521\n        ],\n        [\n          -86.761319,\n          31.262529\n        ],\n        [\n          -86.76164,\n          31.262277\n        ],\n        [\n          -86.761667,\n          31.261979\n        ],\n        [\n          -86.76212,\n          31.26159\n        ],\n        [\n          -86.763961,\n          31.261293\n        ],\n        [\n          -86.827502,\n          31.261911\n        ],\n        [\n          -86.871022,\n          31.261902\n        ],\n        [\n          -86.870452,\n          31.265111\n        ],\n        [\n          -86.870508,\n          31.265803\n        ],\n        [\n          -86.873552,\n          31.272211\n        ],\n        [\n          -86.875011,\n          31.273642\n        ],\n        [\n          -86.877085,\n          31.276434\n        ],\n        [\n          -86.888569,\n          31.27349\n        ],\n        [\n          -86.889742,\n          31.273371\n        ],\n        [\n          -86.896535,\n          31.274229\n        ],\n        [\n          -86.897462,\n          31.274601\n        ],\n        [\n          -86.901082,\n          31.276813\n        ],\n        [\n          -86.899022,\n          31.279731\n        ],\n        [\n          -86.898647,\n          31.279893\n        ],\n        [\n          -86.896083,\n          31.280033\n        ],\n        [\n          -86.89494,\n          31.280794\n        ],\n        [\n          -86.895262,\n          31.284526\n        ],\n        [\n          -86.895152,\n          31.285845\n        ],\n        [\n          -86.893037,\n          31.289288\n        ],\n        [\n          -86.891698,\n          31.29207\n        ],\n        [\n          -86.891119,\n          31.292797\n        ],\n        [\n          -86.888522,\n          31.294718\n        ],\n        [\n          -86.884814,\n          31.296071\n        ],\n        [\n          -86.882076,\n          31.297708\n        ],\n        [\n          -86.877941,\n          31.299496\n        ],\n        [\n          -86.877552,\n          31.299833\n        ],\n        [\n          -86.878593,\n          31.300682\n        ],\n        [\n          -86.879109,\n          31.301451\n        ],\n        [\n          -86.880613,\n          31.306971\n        ],\n        [\n          -86.881319,\n          31.308478\n        ],\n        [\n          -86.886935,\n          31.316066\n        ],\n        [\n          -86.888351,\n          31.317446\n        ],\n        [\n          -86.893027,\n          31.321241\n        ],\n        [\n          -86.893719,\n          31.322083\n        ],\n        [\n          -86.895064,\n          31.324305\n        ],\n        [\n          -86.896287,\n          31.325637\n        ],\n        [\n          -86.897111,\n          31.326166\n        ],\n        [\n          -86.900029,\n          31.327221\n        ],\n        [\n          -86.901081,\n          31.327973\n        ],\n        [\n          -86.901739,\n          31.328673\n        ],\n        [\n          -86.902227,\n          31.329614\n        ],\n        [\n          -86.903182,\n          31.3329\n        ],\n        [\n          -86.903849,\n          31.337638\n        ],\n        [\n          -86.905362,\n          31.340282\n        ],\n        [\n          -86.907602,\n          31.340702\n        ],\n        [\n          -86.909042,\n          31.341249\n        ],\n        [\n          -86.909736,\n          31.341237\n        ],\n        [\n          -86.911043,\n          31.340706\n        ],\n        [\n          -86.911923,\n          31.340147\n        ],\n        [\n          -86.915844,\n          31.336217\n        ],\n        [\n          -86.917658,\n          31.335602\n        ],\n        [\n          -86.91717,\n          31.333192\n        ],\n        [\n          -86.91347,\n          31.321437\n        ],\n        [\n          -86.913336,\n          31.320406\n        ],\n        [\n          -86.91387,\n          31.320337\n        ],\n        [\n          -86.914538,\n          31.319673\n        ],\n        [\n          -86.915419,\n          31.318023\n        ],\n        [\n          -86.91622,\n          31.315868\n        ],\n        [\n          -86.919318,\n          31.312799\n        ],\n        [\n          -86.919905,\n          31.311722\n        ],\n        [\n          -86.919799,\n          31.309934\n        ],\n        [\n          -86.919612,\n          31.309384\n        ],\n        [\n          -86.919612,\n          31.307848\n        ],\n        [\n          -86.919853,\n          31.306084\n        ],\n        [\n          -86.921281,\n          31.303568\n        ],\n        [\n          -86.923146,\n          31.296611\n        ],\n        [\n          -86.923635,\n          31.295453\n        ],\n        [\n          -86.925781,\n          31.291794\n        ],\n        [\n          -86.926153,\n          31.289654\n        ],\n        [\n          -86.931555,\n          31.291451\n        ],\n        [\n          -86.933073,\n          31.291677\n        ],\n        [\n          -86.941279,\n          31.290688\n        ],\n        [\n          -86.948782,\n          31.289352\n        ],\n        [\n          -86.950744,\n          31.2894\n        ],\n        [\n          -86.956328,\n          31.290778\n        ],\n        [\n          -86.972996,\n          31.298051\n        ],\n        [\n          -86.977942,\n          31.299299\n        ],\n        [\n          -86.981368,\n          31.299649\n        ],\n        [\n          -86.980937,\n          31.300599\n        ],\n        [\n          -86.9809,\n          31.30281\n        ],\n        [\n          -86.980598,\n          31.303875\n        ],\n        [\n          -86.975966,\n          31.309626\n        ],\n        [\n          -86.975385,\n          31.310851\n        ],\n        [\n          -86.97542,\n          31.316735\n        ],\n        [\n          -86.975644,\n          31.319544\n        ],\n        [\n          -86.976333,\n          31.319666\n        ],\n        [\n          -86.98036,\n          31.319624\n        ],\n        [\n          -86.981103,\n          31.31913\n        ],\n        [\n          -86.985274,\n          31.31761\n        ],\n        [\n          -86.988225,\n          31.316147\n        ],\n        [\n          -86.99287,\n          31.316136\n        ],\n        [\n          -86.992984,\n          31.315636\n        ],\n        [\n          -86.993591,\n          31.314832\n        ],\n        [\n          -86.993615,\n          31.314331\n        ],\n        [\n          -86.992753,\n          31.312165\n        ],\n        [\n          -86.992642,\n          31.311478\n        ],\n        [\n          -86.993451,\n          31.309167\n        ],\n        [\n          -86.995977,\n          31.307391\n        ],\n        [\n          -86.997469,\n          31.307152\n        ],\n        [\n          -86.998406,\n          31.306353\n        ],\n        [\n          -86.999972,\n          31.305411\n        ],\n        [\n          -87.001923,\n          31.303786\n        ],\n        [\n          -87.002961,\n          31.304429\n        ],\n        [\n          -87.003972,\n          31.304585\n        ],\n        [\n          -87.00479,\n          31.304357\n        ],\n        [\n          -87.008525,\n          31.302549\n        ],\n        [\n          -87.010247,\n          31.301909\n        ],\n        [\n          -87.015201,\n          31.301838\n        ],\n        [\n          -87.016357,\n          31.301554\n        ],\n        [\n          -87.017216,\n          31.301156\n        ],\n        [\n          -87.022895,\n          31.301182\n        ],\n        [\n          -87.023471,\n          31.302347\n        ],\n        [\n          -87.023156,\n          31.316\n        ],\n        [\n          -87.027469,\n          31.315991\n        ],\n        [\n          -87.027645,\n          31.346666\n        ],\n        [\n          -87.027378,\n          31.349973\n        ],\n        [\n          -87.028076,\n          31.350091\n        ],\n        [\n          -87.028547,\n          31.350657\n        ],\n        [\n          -87.029226,\n          31.35055\n        ],\n        [\n          -87.029747,\n          31.351038\n        ],\n        [\n          -87.030651,\n          31.351157\n        ],\n        [\n          -87.031237,\n          31.352242\n        ],\n        [\n          -87.032222,\n          31.352818\n        ],\n        [\n          -87.033334,\n          31.353765\n        ],\n        [\n          -87.035598,\n          31.354281\n        ],\n        [\n          -87.037303,\n          31.354336\n        ],\n        [\n          -87.040652,\n          31.355475\n        ],\n        [\n          -87.042535,\n          31.356569\n        ],\n        [\n          -87.044469,\n          31.357075\n        ],\n        [\n          -87.045027,\n          31.357936\n        ],\n        [\n          -87.046411,\n          31.359235\n        ],\n        [\n          -87.046767,\n          31.360185\n        ],\n        [\n          -87.047412,\n          31.360914\n        ],\n        [\n          -87.047505,\n          31.3617\n        ],\n        [\n          -87.048339,\n          31.36261\n        ],\n        [\n          -87.049522,\n          31.361929\n        ],\n        [\n          -87.05228,\n          31.360946\n        ],\n        [\n          -87.053803,\n          31.359828\n        ],\n        [\n          -87.054699,\n          31.358721\n        ],\n        [\n          -87.055051,\n          31.357742\n        ],\n        [\n          -87.055764,\n          31.353686\n        ],\n        [\n          -87.056091,\n          31.350606\n        ],\n        [\n          -87.056523,\n          31.349057\n        ],\n        [\n          -87.060018,\n          31.349843\n        ],\n        [\n          -87.064603,\n          31.351212\n        ],\n        [\n          -87.070189,\n          31.353567\n        ],\n        [\n          -87.07309,\n          31.355317\n        ],\n        [\n          -87.068122,\n          31.358376\n        ],\n        [\n          -87.061082,\n          31.363745\n        ]\n      ],\n      [\n        [\n          -86.824213,\n          31.274995\n        ],\n        [\n          -86.823886,\n          31.277248\n        ],\n        [\n          -86.823001,\n          31.279791\n        ],\n        [\n          -86.82293,\n          31.280604\n        ],\n        [\n          -86.823065,\n          31.281315\n        ],\n        [\n          -86.799263,\n          31.300056\n        ],\n        [\n          -86.799654,\n          31.300056\n        ],\n        [\n          -86.800241,\n          31.300697\n        ],\n        [\n          -86.801656,\n          31.300537\n        ],\n        [\n          -86.80267,\n          31.301019\n        ],\n        [\n          -86.803337,\n          31.301569\n        ],\n        [\n          -86.805499,\n          31.301798\n        ],\n        [\n          -86.807287,\n          31.302394\n        ],\n        [\n          -86.807527,\n          31.302302\n        ],\n        [\n          -86.808035,\n          31.301615\n        ],\n        [\n          -86.807928,\n          31.300492\n        ],\n        [\n          -86.808408,\n          31.300285\n        ],\n        [\n          -86.810196,\n          31.301156\n        ],\n        [\n          -86.811425,\n          31.30134\n        ],\n        [\n          -86.812626,\n          31.301775\n        ],\n        [\n          -86.814281,\n          31.301867\n        ],\n        [\n          -86.814895,\n          31.302096\n        ],\n        [\n          -86.815589,\n          31.302875\n        ],\n        [\n          -86.816016,\n          31.302967\n        ],\n        [\n          -86.816443,\n          31.302921\n        ],\n        [\n          -86.81703,\n          31.302554\n        ],\n        [\n          -86.819859,\n          31.301844\n        ],\n        [\n          -86.820393,\n          31.301454\n        ],\n        [\n          -86.821167,\n          31.301317\n        ],\n        [\n          -86.822101,\n          31.300789\n        ],\n        [\n          -86.822635,\n          31.300881\n        ],\n        [\n          -86.823329,\n          31.301912\n        ],\n        [\n          -86.823596,\n          31.301981\n        ],\n        [\n          -86.824503,\n          31.301408\n        ],\n        [\n          -86.824877,\n          31.301362\n        ],\n        [\n          -86.825678,\n          31.301683\n        ],\n        [\n          -86.827519,\n          31.301568\n        ],\n        [\n          -86.829078,\n          31.301263\n        ],\n        [\n          -86.831208,\n          31.301793\n        ],\n        [\n          -86.831109,\n          31.299229\n        ],\n        [\n          -86.831215,\n          31.298527\n        ],\n        [\n          -86.844877,\n          31.298424\n        ],\n        [\n          -86.845094,\n          31.297616\n        ],\n        [\n          -86.845328,\n          31.295204\n        ],\n        [\n          -86.846331,\n          31.291481\n        ],\n        [\n          -86.846717,\n          31.290832\n        ],\n        [\n          -86.848543,\n          31.289411\n        ],\n        [\n          -86.849514,\n          31.287128\n        ],\n        [\n          -86.84969,\n          31.286107\n        ],\n        [\n          -86.849953,\n          31.285536\n        ],\n        [\n          -86.848787,\n          31.285265\n        ],\n        [\n          -86.846736,\n          31.285357\n        ],\n        [\n          -86.839803,\n          31.287799\n        ],\n        [\n          -86.837122,\n          31.288262\n        ],\n        [\n          -86.834481,\n          31.28826\n        ],\n        [\n          -86.828877,\n          31.280784\n        ],\n        [\n          -86.825664,\n          31.277897\n        ],\n        [\n          -86.825881,\n          31.275982\n        ],\n        [\n          -86.824213,\n          31.274995\n        ]\n      ]\n    ]\n  ]\n}\n"
  },
  {
    "path": "test/fixtures/degenring_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.70410156,\n              31.30671516\n            ],\n            [\n              -86.70410156,\n              31.31610138\n            ],\n            [\n              -86.69311523,\n              31.31610138\n            ],\n            [\n              -86.69311523,\n              31.30671516\n            ],\n            [\n              -86.70410156,\n              31.30671516\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.70410156,\n              31.31610138\n            ],\n            [\n              -86.70410156,\n              31.32548668\n            ],\n            [\n              -86.69311523,\n              31.32548668\n            ],\n            [\n              -86.69311523,\n              31.31610138\n            ],\n            [\n              -86.70410156,\n              31.31610138\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.70410156,\n              31.32548668\n            ],\n            [\n              -86.70410156,\n              31.33487103\n            ],\n            [\n              -86.69311523,\n              31.33487103\n            ],\n            [\n              -86.69311523,\n              31.32548668\n            ],\n            [\n              -86.70410156,\n              31.32548668\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.70410156,\n              31.33487103\n            ],\n            [\n              -86.70410156,\n              31.34425446\n            ],\n            [\n              -86.69311523,\n              31.34425446\n            ],\n            [\n              -86.69311523,\n              31.33487103\n            ],\n            [\n              -86.70410156,\n              31.33487103\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.70410156,\n              31.34425446\n            ],\n            [\n              -86.70410156,\n              31.35363694\n            ],\n            [\n              -86.69311523,\n              31.35363694\n            ],\n            [\n              -86.69311523,\n              31.34425446\n            ],\n            [\n              -86.70410156,\n              31.34425446\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.71508789,\n              31.30671516\n            ],\n            [\n              -86.71508789,\n              31.31610138\n            ],\n            [\n              -86.70410156,\n              31.31610138\n            ],\n            [\n              -86.70410156,\n              31.30671516\n            ],\n            [\n              -86.71508789,\n              31.30671516\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.71508789,\n              31.35363694\n            ],\n            [\n              -86.71508789,\n              31.36301849\n            ],\n            [\n              -86.70410156,\n              31.36301849\n            ],\n            [\n              -86.70410156,\n              31.35363694\n            ],\n            [\n              -86.71508789,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.25976999\n            ],\n            [\n              -86.72607422,\n              31.26916089\n            ],\n            [\n              -86.71508789,\n              31.26916089\n            ],\n            [\n              -86.71508789,\n              31.25976999\n            ],\n            [\n              -86.72607422,\n              31.25976999\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.26916089\n            ],\n            [\n              -86.72607422,\n              31.27855086\n            ],\n            [\n              -86.71508789,\n              31.27855086\n            ],\n            [\n              -86.71508789,\n              31.26916089\n            ],\n            [\n              -86.72607422,\n              31.26916089\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.27855086\n            ],\n            [\n              -86.72607422,\n              31.28793989\n            ],\n            [\n              -86.71508789,\n              31.28793989\n            ],\n            [\n              -86.71508789,\n              31.27855086\n            ],\n            [\n              -86.72607422,\n              31.27855086\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.28793989\n            ],\n            [\n              -86.72607422,\n              31.29732799\n            ],\n            [\n              -86.71508789,\n              31.29732799\n            ],\n            [\n              -86.71508789,\n              31.28793989\n            ],\n            [\n              -86.72607422,\n              31.28793989\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.30671516\n            ],\n            [\n              -86.72607422,\n              31.31610138\n            ],\n            [\n              -86.71508789,\n              31.31610138\n            ],\n            [\n              -86.71508789,\n              31.30671516\n            ],\n            [\n              -86.72607422,\n              31.30671516\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.35363694\n            ],\n            [\n              -86.72607422,\n              31.36301849\n            ],\n            [\n              -86.71508789,\n              31.36301849\n            ],\n            [\n              -86.71508789,\n              31.35363694\n            ],\n            [\n              -86.72607422,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.36301849\n            ],\n            [\n              -86.72607422,\n              31.3723991\n            ],\n            [\n              -86.71508789,\n              31.3723991\n            ],\n            [\n              -86.71508789,\n              31.36301849\n            ],\n            [\n              -86.72607422,\n              31.36301849\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.38177878\n            ],\n            [\n              -86.72607422,\n              31.39115752\n            ],\n            [\n              -86.71508789,\n              31.39115752\n            ],\n            [\n              -86.71508789,\n              31.38177878\n            ],\n            [\n              -86.72607422,\n              31.38177878\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.39115752\n            ],\n            [\n              -86.72607422,\n              31.40053533\n            ],\n            [\n              -86.71508789,\n              31.40053533\n            ],\n            [\n              -86.71508789,\n              31.39115752\n            ],\n            [\n              -86.72607422,\n              31.39115752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.72607422,\n              31.40053533\n            ],\n            [\n              -86.72607422,\n              31.40991219\n            ],\n            [\n              -86.71508789,\n              31.40991219\n            ],\n            [\n              -86.71508789,\n              31.40053533\n            ],\n            [\n              -86.72607422,\n              31.40053533\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.73706055,\n              31.40991219\n            ],\n            [\n              -86.73706055,\n              31.41928812\n            ],\n            [\n              -86.72607422,\n              31.41928812\n            ],\n            [\n              -86.72607422,\n              31.40991219\n            ],\n            [\n              -86.73706055,\n              31.40991219\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.25037815\n            ],\n            [\n              -86.74804688,\n              31.25976999\n            ],\n            [\n              -86.73706055,\n              31.25976999\n            ],\n            [\n              -86.73706055,\n              31.25037815\n            ],\n            [\n              -86.74804688,\n              31.25037815\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.25976999\n            ],\n            [\n              -86.74804688,\n              31.27855086\n            ],\n            [\n              -86.72607422,\n              31.27855086\n            ],\n            [\n              -86.72607422,\n              31.25976999\n            ],\n            [\n              -86.74804688,\n              31.25976999\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.27855086\n            ],\n            [\n              -86.74804688,\n              31.29732799\n            ],\n            [\n              -86.72607422,\n              31.29732799\n            ],\n            [\n              -86.72607422,\n              31.27855086\n            ],\n            [\n              -86.74804688,\n              31.27855086\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.31610138\n            ],\n            [\n              -86.74804688,\n              31.35363694\n            ],\n            [\n              -86.70410156,\n              31.35363694\n            ],\n            [\n              -86.70410156,\n              31.31610138\n            ],\n            [\n              -86.74804688,\n              31.31610138\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.35363694\n            ],\n            [\n              -86.74804688,\n              31.3723991\n            ],\n            [\n              -86.72607422,\n              31.3723991\n            ],\n            [\n              -86.72607422,\n              31.35363694\n            ],\n            [\n              -86.74804688,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.3723991\n            ],\n            [\n              -86.74804688,\n              31.39115752\n            ],\n            [\n              -86.72607422,\n              31.39115752\n            ],\n            [\n              -86.72607422,\n              31.3723991\n            ],\n            [\n              -86.74804688,\n              31.3723991\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.39115752\n            ],\n            [\n              -86.74804688,\n              31.40991219\n            ],\n            [\n              -86.72607422,\n              31.40991219\n            ],\n            [\n              -86.72607422,\n              31.39115752\n            ],\n            [\n              -86.74804688,\n              31.39115752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.40991219\n            ],\n            [\n              -86.74804688,\n              31.41928812\n            ],\n            [\n              -86.73706055,\n              31.41928812\n            ],\n            [\n              -86.73706055,\n              31.40991219\n            ],\n            [\n              -86.74804688,\n              31.40991219\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.74804688,\n              31.41928812\n            ],\n            [\n              -86.74804688,\n              31.42866312\n            ],\n            [\n              -86.73706055,\n              31.42866312\n            ],\n            [\n              -86.73706055,\n              31.41928812\n            ],\n            [\n              -86.74804688,\n              31.41928812\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.7590332,\n              31.25037815\n            ],\n            [\n              -86.7590332,\n              31.25976999\n            ],\n            [\n              -86.74804688,\n              31.25976999\n            ],\n            [\n              -86.74804688,\n              31.25037815\n            ],\n            [\n              -86.7590332,\n              31.25037815\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.7590332,\n              31.42866312\n            ],\n            [\n              -86.7590332,\n              31.43803717\n            ],\n            [\n              -86.74804688,\n              31.43803717\n            ],\n            [\n              -86.74804688,\n              31.42866312\n            ],\n            [\n              -86.7590332,\n              31.42866312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.77001953,\n              31.25976999\n            ],\n            [\n              -86.77001953,\n              31.27855086\n            ],\n            [\n              -86.74804688,\n              31.27855086\n            ],\n            [\n              -86.74804688,\n              31.25976999\n            ],\n            [\n              -86.77001953,\n              31.25976999\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.77001953,\n              31.42866312\n            ],\n            [\n              -86.77001953,\n              31.43803717\n            ],\n            [\n              -86.7590332,\n              31.43803717\n            ],\n            [\n              -86.7590332,\n              31.42866312\n            ],\n            [\n              -86.77001953,\n              31.42866312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.78100586,\n              31.45678247\n            ],\n            [\n              -86.78100586,\n              31.46615372\n            ],\n            [\n              -86.77001953,\n              31.46615372\n            ],\n            [\n              -86.77001953,\n              31.45678247\n            ],\n            [\n              -86.78100586,\n              31.45678247\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.79199219,\n              31.25976999\n            ],\n            [\n              -86.79199219,\n              31.27855086\n            ],\n            [\n              -86.77001953,\n              31.27855086\n            ],\n            [\n              -86.77001953,\n              31.25976999\n            ],\n            [\n              -86.79199219,\n              31.25976999\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.79199219,\n              31.42866312\n            ],\n            [\n              -86.79199219,\n              31.44741029\n            ],\n            [\n              -86.77001953,\n              31.44741029\n            ],\n            [\n              -86.77001953,\n              31.42866312\n            ],\n            [\n              -86.79199219,\n              31.42866312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.79199219,\n              31.44741029\n            ],\n            [\n              -86.79199219,\n              31.45678247\n            ],\n            [\n              -86.78100586,\n              31.45678247\n            ],\n            [\n              -86.78100586,\n              31.44741029\n            ],\n            [\n              -86.79199219,\n              31.44741029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.79199219,\n              31.45678247\n            ],\n            [\n              -86.79199219,\n              31.46615372\n            ],\n            [\n              -86.78100586,\n              31.46615372\n            ],\n            [\n              -86.78100586,\n              31.45678247\n            ],\n            [\n              -86.79199219,\n              31.45678247\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.79199219,\n              31.46615372\n            ],\n            [\n              -86.79199219,\n              31.47552402\n            ],\n            [\n              -86.78100586,\n              31.47552402\n            ],\n            [\n              -86.78100586,\n              31.46615372\n            ],\n            [\n              -86.79199219,\n              31.46615372\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.81396484,\n              31.25976999\n            ],\n            [\n              -86.81396484,\n              31.27855086\n            ],\n            [\n              -86.79199219,\n              31.27855086\n            ],\n            [\n              -86.79199219,\n              31.25976999\n            ],\n            [\n              -86.81396484,\n              31.25976999\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.81396484,\n              31.50362931\n            ],\n            [\n              -86.81396484,\n              31.51299586\n            ],\n            [\n              -86.80297852,\n              31.51299586\n            ],\n            [\n              -86.80297852,\n              31.50362931\n            ],\n            [\n              -86.81396484,\n              31.50362931\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.8359375,\n              31.25976999\n            ],\n            [\n              -86.8359375,\n              31.27855086\n            ],\n            [\n              -86.81396484,\n              31.27855086\n            ],\n            [\n              -86.81396484,\n              31.25976999\n            ],\n            [\n              -86.8359375,\n              31.25976999\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.8359375,\n              31.27855086\n            ],\n            [\n              -86.8359375,\n              31.35363694\n            ],\n            [\n              -86.74804688,\n              31.35363694\n            ],\n            [\n              -86.74804688,\n              31.27855086\n            ],\n            [\n              -86.8359375,\n              31.27855086\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.8359375,\n              31.35363694\n            ],\n            [\n              -86.8359375,\n              31.42866312\n            ],\n            [\n              -86.74804688,\n              31.42866312\n            ],\n            [\n              -86.74804688,\n              31.35363694\n            ],\n            [\n              -86.8359375,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.8359375,\n              31.42866312\n            ],\n            [\n              -86.8359375,\n              31.46615372\n            ],\n            [\n              -86.79199219,\n              31.46615372\n            ],\n            [\n              -86.79199219,\n              31.42866312\n            ],\n            [\n              -86.8359375,\n              31.42866312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.8359375,\n              31.46615372\n            ],\n            [\n              -86.8359375,\n              31.50362931\n            ],\n            [\n              -86.79199219,\n              31.50362931\n            ],\n            [\n              -86.79199219,\n              31.46615372\n            ],\n            [\n              -86.8359375,\n              31.46615372\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.8359375,\n              31.50362931\n            ],\n            [\n              -86.8359375,\n              31.52236147\n            ],\n            [\n              -86.81396484,\n              31.52236147\n            ],\n            [\n              -86.81396484,\n              31.50362931\n            ],\n            [\n              -86.8359375,\n              31.50362931\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.85791016,\n              31.25976999\n            ],\n            [\n              -86.85791016,\n              31.27855086\n            ],\n            [\n              -86.8359375,\n              31.27855086\n            ],\n            [\n              -86.8359375,\n              31.25976999\n            ],\n            [\n              -86.85791016,\n              31.25976999\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.86889648,\n              31.55981453\n            ],\n            [\n              -86.86889648,\n              31.56917545\n            ],\n            [\n              -86.85791016,\n              31.56917545\n            ],\n            [\n              -86.85791016,\n              31.55981453\n            ],\n            [\n              -86.86889648,\n              31.55981453\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.87988281,\n              31.25976999\n            ],\n            [\n              -86.87988281,\n              31.27855086\n            ],\n            [\n              -86.85791016,\n              31.27855086\n            ],\n            [\n              -86.85791016,\n              31.25976999\n            ],\n            [\n              -86.87988281,\n              31.25976999\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.87988281,\n              31.27855086\n            ],\n            [\n              -86.87988281,\n              31.31610138\n            ],\n            [\n              -86.8359375,\n              31.31610138\n            ],\n            [\n              -86.8359375,\n              31.27855086\n            ],\n            [\n              -86.87988281,\n              31.27855086\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.87988281,\n              31.31610138\n            ],\n            [\n              -86.87988281,\n              31.35363694\n            ],\n            [\n              -86.8359375,\n              31.35363694\n            ],\n            [\n              -86.8359375,\n              31.31610138\n            ],\n            [\n              -86.87988281,\n              31.31610138\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.87988281,\n              31.50362931\n            ],\n            [\n              -86.87988281,\n              31.54108988\n            ],\n            [\n              -86.8359375,\n              31.54108988\n            ],\n            [\n              -86.8359375,\n              31.50362931\n            ],\n            [\n              -86.87988281,\n              31.50362931\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.87988281,\n              31.54108988\n            ],\n            [\n              -86.87988281,\n              31.55981453\n            ],\n            [\n              -86.85791016,\n              31.55981453\n            ],\n            [\n              -86.85791016,\n              31.54108988\n            ],\n            [\n              -86.87988281,\n              31.54108988\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.87988281,\n              31.55981453\n            ],\n            [\n              -86.87988281,\n              31.56917545\n            ],\n            [\n              -86.86889648,\n              31.56917545\n            ],\n            [\n              -86.86889648,\n              31.55981453\n            ],\n            [\n              -86.87988281,\n              31.55981453\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.87988281,\n              31.56917545\n            ],\n            [\n              -86.87988281,\n              31.57853543\n            ],\n            [\n              -86.86889648,\n              31.57853543\n            ],\n            [\n              -86.86889648,\n              31.56917545\n            ],\n            [\n              -86.87988281,\n              31.56917545\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.87988281,\n              31.57853543\n            ],\n            [\n              -86.87988281,\n              31.58789446\n            ],\n            [\n              -86.86889648,\n              31.58789446\n            ],\n            [\n              -86.86889648,\n              31.57853543\n            ],\n            [\n              -86.87988281,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.89086914,\n              31.26916089\n            ],\n            [\n              -86.89086914,\n              31.27855086\n            ],\n            [\n              -86.87988281,\n              31.27855086\n            ],\n            [\n              -86.87988281,\n              31.26916089\n            ],\n            [\n              -86.89086914,\n              31.26916089\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.89086914,\n              31.29732799\n            ],\n            [\n              -86.89086914,\n              31.30671516\n            ],\n            [\n              -86.87988281,\n              31.30671516\n            ],\n            [\n              -86.87988281,\n              31.29732799\n            ],\n            [\n              -86.89086914,\n              31.29732799\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.89086914,\n              31.30671516\n            ],\n            [\n              -86.89086914,\n              31.31610138\n            ],\n            [\n              -86.87988281,\n              31.31610138\n            ],\n            [\n              -86.87988281,\n              31.30671516\n            ],\n            [\n              -86.89086914,\n              31.30671516\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.89086914,\n              31.57853543\n            ],\n            [\n              -86.89086914,\n              31.58789446\n            ],\n            [\n              -86.87988281,\n              31.58789446\n            ],\n            [\n              -86.87988281,\n              31.57853543\n            ],\n            [\n              -86.89086914,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.90185547,\n              31.26916089\n            ],\n            [\n              -86.90185547,\n              31.27855086\n            ],\n            [\n              -86.89086914,\n              31.27855086\n            ],\n            [\n              -86.89086914,\n              31.26916089\n            ],\n            [\n              -86.90185547,\n              31.26916089\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.90185547,\n              31.27855086\n            ],\n            [\n              -86.90185547,\n              31.29732799\n            ],\n            [\n              -86.87988281,\n              31.29732799\n            ],\n            [\n              -86.87988281,\n              31.27855086\n            ],\n            [\n              -86.90185547,\n              31.27855086\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.90185547,\n              31.31610138\n            ],\n            [\n              -86.90185547,\n              31.33487103\n            ],\n            [\n              -86.87988281,\n              31.33487103\n            ],\n            [\n              -86.87988281,\n              31.31610138\n            ],\n            [\n              -86.90185547,\n              31.31610138\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.90185547,\n              31.33487103\n            ],\n            [\n              -86.90185547,\n              31.35363694\n            ],\n            [\n              -86.87988281,\n              31.35363694\n            ],\n            [\n              -86.87988281,\n              31.33487103\n            ],\n            [\n              -86.90185547,\n              31.33487103\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.90185547,\n              31.57853543\n            ],\n            [\n              -86.90185547,\n              31.58789446\n            ],\n            [\n              -86.89086914,\n              31.58789446\n            ],\n            [\n              -86.89086914,\n              31.57853543\n            ],\n            [\n              -86.90185547,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.9128418,\n              31.32548668\n            ],\n            [\n              -86.9128418,\n              31.33487103\n            ],\n            [\n              -86.90185547,\n              31.33487103\n            ],\n            [\n              -86.90185547,\n              31.32548668\n            ],\n            [\n              -86.9128418,\n              31.32548668\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.9128418,\n              31.57853543\n            ],\n            [\n              -86.9128418,\n              31.58789446\n            ],\n            [\n              -86.90185547,\n              31.58789446\n            ],\n            [\n              -86.90185547,\n              31.57853543\n            ],\n            [\n              -86.9128418,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.28793989\n            ],\n            [\n              -86.92382813,\n              31.29732799\n            ],\n            [\n              -86.9128418,\n              31.29732799\n            ],\n            [\n              -86.9128418,\n              31.28793989\n            ],\n            [\n              -86.92382813,\n              31.28793989\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.29732799\n            ],\n            [\n              -86.92382813,\n              31.30671516\n            ],\n            [\n              -86.9128418,\n              31.30671516\n            ],\n            [\n              -86.9128418,\n              31.29732799\n            ],\n            [\n              -86.92382813,\n              31.29732799\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.30671516\n            ],\n            [\n              -86.92382813,\n              31.31610138\n            ],\n            [\n              -86.9128418,\n              31.31610138\n            ],\n            [\n              -86.9128418,\n              31.30671516\n            ],\n            [\n              -86.92382813,\n              31.30671516\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.31610138\n            ],\n            [\n              -86.92382813,\n              31.32548668\n            ],\n            [\n              -86.9128418,\n              31.32548668\n            ],\n            [\n              -86.9128418,\n              31.31610138\n            ],\n            [\n              -86.92382813,\n              31.31610138\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.32548668\n            ],\n            [\n              -86.92382813,\n              31.33487103\n            ],\n            [\n              -86.9128418,\n              31.33487103\n            ],\n            [\n              -86.9128418,\n              31.32548668\n            ],\n            [\n              -86.92382813,\n              31.32548668\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.33487103\n            ],\n            [\n              -86.92382813,\n              31.35363694\n            ],\n            [\n              -86.90185547,\n              31.35363694\n            ],\n            [\n              -86.90185547,\n              31.33487103\n            ],\n            [\n              -86.92382813,\n              31.33487103\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.50362931\n            ],\n            [\n              -86.92382813,\n              31.54108988\n            ],\n            [\n              -86.87988281,\n              31.54108988\n            ],\n            [\n              -86.87988281,\n              31.50362931\n            ],\n            [\n              -86.92382813,\n              31.50362931\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.54108988\n            ],\n            [\n              -86.92382813,\n              31.57853543\n            ],\n            [\n              -86.87988281,\n              31.57853543\n            ],\n            [\n              -86.87988281,\n              31.54108988\n            ],\n            [\n              -86.92382813,\n              31.54108988\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.57853543\n            ],\n            [\n              -86.92382813,\n              31.58789446\n            ],\n            [\n              -86.9128418,\n              31.58789446\n            ],\n            [\n              -86.9128418,\n              31.57853543\n            ],\n            [\n              -86.92382813,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.92382813,\n              31.58789446\n            ],\n            [\n              -86.92382813,\n              31.59725256\n            ],\n            [\n              -86.9128418,\n              31.59725256\n            ],\n            [\n              -86.9128418,\n              31.58789446\n            ],\n            [\n              -86.92382813,\n              31.58789446\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.93481445,\n              31.28793989\n            ],\n            [\n              -86.93481445,\n              31.29732799\n            ],\n            [\n              -86.92382813,\n              31.29732799\n            ],\n            [\n              -86.92382813,\n              31.28793989\n            ],\n            [\n              -86.93481445,\n              31.28793989\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.94580078,\n              31.28793989\n            ],\n            [\n              -86.94580078,\n              31.29732799\n            ],\n            [\n              -86.93481445,\n              31.29732799\n            ],\n            [\n              -86.93481445,\n              31.28793989\n            ],\n            [\n              -86.94580078,\n              31.28793989\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.94580078,\n              31.29732799\n            ],\n            [\n              -86.94580078,\n              31.31610138\n            ],\n            [\n              -86.92382813,\n              31.31610138\n            ],\n            [\n              -86.92382813,\n              31.29732799\n            ],\n            [\n              -86.94580078,\n              31.29732799\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.94580078,\n              31.57853543\n            ],\n            [\n              -86.94580078,\n              31.59725256\n            ],\n            [\n              -86.92382813,\n              31.59725256\n            ],\n            [\n              -86.92382813,\n              31.57853543\n            ],\n            [\n              -86.94580078,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.95678711,\n              31.28793989\n            ],\n            [\n              -86.95678711,\n              31.29732799\n            ],\n            [\n              -86.94580078,\n              31.29732799\n            ],\n            [\n              -86.94580078,\n              31.28793989\n            ],\n            [\n              -86.95678711,\n              31.28793989\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.95678711,\n              31.59725256\n            ],\n            [\n              -86.95678711,\n              31.60660972\n            ],\n            [\n              -86.94580078,\n              31.60660972\n            ],\n            [\n              -86.94580078,\n              31.59725256\n            ],\n            [\n              -86.95678711,\n              31.59725256\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.28793989\n            ],\n            [\n              -86.96777344,\n              31.29732799\n            ],\n            [\n              -86.95678711,\n              31.29732799\n            ],\n            [\n              -86.95678711,\n              31.28793989\n            ],\n            [\n              -86.96777344,\n              31.28793989\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.29732799\n            ],\n            [\n              -86.96777344,\n              31.31610138\n            ],\n            [\n              -86.94580078,\n              31.31610138\n            ],\n            [\n              -86.94580078,\n              31.29732799\n            ],\n            [\n              -86.96777344,\n              31.29732799\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.31610138\n            ],\n            [\n              -86.96777344,\n              31.35363694\n            ],\n            [\n              -86.92382813,\n              31.35363694\n            ],\n            [\n              -86.92382813,\n              31.31610138\n            ],\n            [\n              -86.96777344,\n              31.31610138\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.57853543\n            ],\n            [\n              -86.96777344,\n              31.59725256\n            ],\n            [\n              -86.94580078,\n              31.59725256\n            ],\n            [\n              -86.94580078,\n              31.57853543\n            ],\n            [\n              -86.96777344,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.59725256\n            ],\n            [\n              -86.96777344,\n              31.60660972\n            ],\n            [\n              -86.95678711,\n              31.60660972\n            ],\n            [\n              -86.95678711,\n              31.59725256\n            ],\n            [\n              -86.96777344,\n              31.59725256\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.60660972\n            ],\n            [\n              -86.96777344,\n              31.61596594\n            ],\n            [\n              -86.95678711,\n              31.61596594\n            ],\n            [\n              -86.95678711,\n              31.60660972\n            ],\n            [\n              -86.96777344,\n              31.60660972\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.61596594\n            ],\n            [\n              -86.96777344,\n              31.62532121\n            ],\n            [\n              -86.95678711,\n              31.62532121\n            ],\n            [\n              -86.95678711,\n              31.61596594\n            ],\n            [\n              -86.96777344,\n              31.61596594\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.62532121\n            ],\n            [\n              -86.96777344,\n              31.63467555\n            ],\n            [\n              -86.95678711,\n              31.63467555\n            ],\n            [\n              -86.95678711,\n              31.62532121\n            ],\n            [\n              -86.96777344,\n              31.62532121\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.96777344,\n              31.63467555\n            ],\n            [\n              -86.96777344,\n              31.64402895\n            ],\n            [\n              -86.95678711,\n              31.64402895\n            ],\n            [\n              -86.95678711,\n              31.63467555\n            ],\n            [\n              -86.96777344,\n              31.63467555\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.97875977,\n              31.28793989\n            ],\n            [\n              -86.97875977,\n              31.29732799\n            ],\n            [\n              -86.96777344,\n              31.29732799\n            ],\n            [\n              -86.96777344,\n              31.28793989\n            ],\n            [\n              -86.97875977,\n              31.28793989\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.97875977,\n              31.29732799\n            ],\n            [\n              -86.97875977,\n              31.30671516\n            ],\n            [\n              -86.96777344,\n              31.30671516\n            ],\n            [\n              -86.96777344,\n              31.29732799\n            ],\n            [\n              -86.97875977,\n              31.29732799\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.97875977,\n              31.30671516\n            ],\n            [\n              -86.97875977,\n              31.31610138\n            ],\n            [\n              -86.96777344,\n              31.31610138\n            ],\n            [\n              -86.96777344,\n              31.30671516\n            ],\n            [\n              -86.97875977,\n              31.30671516\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.97875977,\n              31.6533814\n            ],\n            [\n              -86.97875977,\n              31.66273291\n            ],\n            [\n              -86.96777344,\n              31.66273291\n            ],\n            [\n              -86.96777344,\n              31.6533814\n            ],\n            [\n              -86.97875977,\n              31.6533814\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.98974609,\n              31.29732799\n            ],\n            [\n              -86.98974609,\n              31.30671516\n            ],\n            [\n              -86.97875977,\n              31.30671516\n            ],\n            [\n              -86.97875977,\n              31.29732799\n            ],\n            [\n              -86.98974609,\n              31.29732799\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.98974609,\n              31.6533814\n            ],\n            [\n              -86.98974609,\n              31.66273291\n            ],\n            [\n              -86.97875977,\n              31.66273291\n            ],\n            [\n              -86.97875977,\n              31.6533814\n            ],\n            [\n              -86.98974609,\n              31.6533814\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.98974609,\n              31.66273291\n            ],\n            [\n              -86.98974609,\n              31.67208349\n            ],\n            [\n              -86.97875977,\n              31.67208349\n            ],\n            [\n              -86.97875977,\n              31.66273291\n            ],\n            [\n              -86.98974609,\n              31.66273291\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.98974609,\n              31.67208349\n            ],\n            [\n              -86.98974609,\n              31.68143312\n            ],\n            [\n              -86.97875977,\n              31.68143312\n            ],\n            [\n              -86.97875977,\n              31.67208349\n            ],\n            [\n              -86.98974609,\n              31.67208349\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.98974609,\n              31.68143312\n            ],\n            [\n              -86.98974609,\n              31.69078181\n            ],\n            [\n              -86.97875977,\n              31.69078181\n            ],\n            [\n              -86.97875977,\n              31.68143312\n            ],\n            [\n              -86.98974609,\n              31.68143312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -86.98974609,\n              31.69078181\n            ],\n            [\n              -86.98974609,\n              31.70012955\n            ],\n            [\n              -86.97875977,\n              31.70012955\n            ],\n            [\n              -86.97875977,\n              31.69078181\n            ],\n            [\n              -86.98974609,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.00073242,\n              31.69078181\n            ],\n            [\n              -87.00073242,\n              31.70012955\n            ],\n            [\n              -86.98974609,\n              31.70012955\n            ],\n            [\n              -86.98974609,\n              31.69078181\n            ],\n            [\n              -87.00073242,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.29732799\n            ],\n            [\n              -87.01171875,\n              31.31610138\n            ],\n            [\n              -86.98974609,\n              31.31610138\n            ],\n            [\n              -86.98974609,\n              31.29732799\n            ],\n            [\n              -87.01171875,\n              31.29732799\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.31610138\n            ],\n            [\n              -87.01171875,\n              31.35363694\n            ],\n            [\n              -86.96777344,\n              31.35363694\n            ],\n            [\n              -86.96777344,\n              31.31610138\n            ],\n            [\n              -87.01171875,\n              31.31610138\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.35363694\n            ],\n            [\n              -87.01171875,\n              31.50362931\n            ],\n            [\n              -86.8359375,\n              31.50362931\n            ],\n            [\n              -86.8359375,\n              31.35363694\n            ],\n            [\n              -87.01171875,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.50362931\n            ],\n            [\n              -87.01171875,\n              31.57853543\n            ],\n            [\n              -86.92382813,\n              31.57853543\n            ],\n            [\n              -86.92382813,\n              31.50362931\n            ],\n            [\n              -87.01171875,\n              31.50362931\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.57853543\n            ],\n            [\n              -87.01171875,\n              31.61596594\n            ],\n            [\n              -86.96777344,\n              31.61596594\n            ],\n            [\n              -86.96777344,\n              31.57853543\n            ],\n            [\n              -87.01171875,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.61596594\n            ],\n            [\n              -87.01171875,\n              31.6533814\n            ],\n            [\n              -86.96777344,\n              31.6533814\n            ],\n            [\n              -86.96777344,\n              31.61596594\n            ],\n            [\n              -87.01171875,\n              31.61596594\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.6533814\n            ],\n            [\n              -87.01171875,\n              31.67208349\n            ],\n            [\n              -86.98974609,\n              31.67208349\n            ],\n            [\n              -86.98974609,\n              31.6533814\n            ],\n            [\n              -87.01171875,\n              31.6533814\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.67208349\n            ],\n            [\n              -87.01171875,\n              31.69078181\n            ],\n            [\n              -86.98974609,\n              31.69078181\n            ],\n            [\n              -86.98974609,\n              31.67208349\n            ],\n            [\n              -87.01171875,\n              31.67208349\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.69078181\n            ],\n            [\n              -87.01171875,\n              31.70012955\n            ],\n            [\n              -87.00073242,\n              31.70012955\n            ],\n            [\n              -87.00073242,\n              31.69078181\n            ],\n            [\n              -87.01171875,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.70012955\n            ],\n            [\n              -87.01171875,\n              31.70947636\n            ],\n            [\n              -87.00073242,\n              31.70947636\n            ],\n            [\n              -87.00073242,\n              31.70012955\n            ],\n            [\n              -87.01171875,\n              31.70012955\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.01171875,\n              31.70947636\n            ],\n            [\n              -87.01171875,\n              31.71882222\n            ],\n            [\n              -87.00073242,\n              31.71882222\n            ],\n            [\n              -87.00073242,\n              31.70947636\n            ],\n            [\n              -87.01171875,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.02270508,\n              31.70947636\n            ],\n            [\n              -87.02270508,\n              31.71882222\n            ],\n            [\n              -87.01171875,\n              31.71882222\n            ],\n            [\n              -87.01171875,\n              31.70947636\n            ],\n            [\n              -87.02270508,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.03369141,\n              31.29732799\n            ],\n            [\n              -87.03369141,\n              31.31610138\n            ],\n            [\n              -87.01171875,\n              31.31610138\n            ],\n            [\n              -87.01171875,\n              31.29732799\n            ],\n            [\n              -87.03369141,\n              31.29732799\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.03369141,\n              31.31610138\n            ],\n            [\n              -87.03369141,\n              31.33487103\n            ],\n            [\n              -87.01171875,\n              31.33487103\n            ],\n            [\n              -87.01171875,\n              31.31610138\n            ],\n            [\n              -87.03369141,\n              31.31610138\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.03369141,\n              31.33487103\n            ],\n            [\n              -87.03369141,\n              31.35363694\n            ],\n            [\n              -87.01171875,\n              31.35363694\n            ],\n            [\n              -87.01171875,\n              31.33487103\n            ],\n            [\n              -87.03369141,\n              31.33487103\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.03369141,\n              31.35363694\n            ],\n            [\n              -87.03369141,\n              31.3723991\n            ],\n            [\n              -87.01171875,\n              31.3723991\n            ],\n            [\n              -87.01171875,\n              31.35363694\n            ],\n            [\n              -87.03369141,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.03369141,\n              31.3723991\n            ],\n            [\n              -87.03369141,\n              31.39115752\n            ],\n            [\n              -87.01171875,\n              31.39115752\n            ],\n            [\n              -87.01171875,\n              31.3723991\n            ],\n            [\n              -87.03369141,\n              31.3723991\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.03369141,\n              31.69078181\n            ],\n            [\n              -87.03369141,\n              31.70947636\n            ],\n            [\n              -87.01171875,\n              31.70947636\n            ],\n            [\n              -87.01171875,\n              31.69078181\n            ],\n            [\n              -87.03369141,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.03369141,\n              31.70947636\n            ],\n            [\n              -87.03369141,\n              31.71882222\n            ],\n            [\n              -87.02270508,\n              31.71882222\n            ],\n            [\n              -87.02270508,\n              31.70947636\n            ],\n            [\n              -87.03369141,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.04467773,\n              31.3723991\n            ],\n            [\n              -87.04467773,\n              31.38177878\n            ],\n            [\n              -87.03369141,\n              31.38177878\n            ],\n            [\n              -87.03369141,\n              31.3723991\n            ],\n            [\n              -87.04467773,\n              31.3723991\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.04467773,\n              31.38177878\n            ],\n            [\n              -87.04467773,\n              31.39115752\n            ],\n            [\n              -87.03369141,\n              31.39115752\n            ],\n            [\n              -87.03369141,\n              31.38177878\n            ],\n            [\n              -87.04467773,\n              31.38177878\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.04467773,\n              31.70947636\n            ],\n            [\n              -87.04467773,\n              31.71882222\n            ],\n            [\n              -87.03369141,\n              31.71882222\n            ],\n            [\n              -87.03369141,\n              31.70947636\n            ],\n            [\n              -87.04467773,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.35363694\n            ],\n            [\n              -87.05566406,\n              31.3723991\n            ],\n            [\n              -87.03369141,\n              31.3723991\n            ],\n            [\n              -87.03369141,\n              31.35363694\n            ],\n            [\n              -87.05566406,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.3723991\n            ],\n            [\n              -87.05566406,\n              31.38177878\n            ],\n            [\n              -87.04467773,\n              31.38177878\n            ],\n            [\n              -87.04467773,\n              31.3723991\n            ],\n            [\n              -87.05566406,\n              31.3723991\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.39115752\n            ],\n            [\n              -87.05566406,\n              31.42866312\n            ],\n            [\n              -87.01171875,\n              31.42866312\n            ],\n            [\n              -87.01171875,\n              31.39115752\n            ],\n            [\n              -87.05566406,\n              31.39115752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.42866312\n            ],\n            [\n              -87.05566406,\n              31.46615372\n            ],\n            [\n              -87.01171875,\n              31.46615372\n            ],\n            [\n              -87.01171875,\n              31.42866312\n            ],\n            [\n              -87.05566406,\n              31.42866312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.46615372\n            ],\n            [\n              -87.05566406,\n              31.50362931\n            ],\n            [\n              -87.01171875,\n              31.50362931\n            ],\n            [\n              -87.01171875,\n              31.46615372\n            ],\n            [\n              -87.05566406,\n              31.46615372\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.6533814\n            ],\n            [\n              -87.05566406,\n              31.69078181\n            ],\n            [\n              -87.01171875,\n              31.69078181\n            ],\n            [\n              -87.01171875,\n              31.6533814\n            ],\n            [\n              -87.05566406,\n              31.6533814\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.69078181\n            ],\n            [\n              -87.05566406,\n              31.70947636\n            ],\n            [\n              -87.03369141,\n              31.70947636\n            ],\n            [\n              -87.03369141,\n              31.69078181\n            ],\n            [\n              -87.05566406,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.70947636\n            ],\n            [\n              -87.05566406,\n              31.71882222\n            ],\n            [\n              -87.04467773,\n              31.71882222\n            ],\n            [\n              -87.04467773,\n              31.70947636\n            ],\n            [\n              -87.05566406,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.05566406,\n              31.71882222\n            ],\n            [\n              -87.05566406,\n              31.72816715\n            ],\n            [\n              -87.04467773,\n              31.72816715\n            ],\n            [\n              -87.04467773,\n              31.71882222\n            ],\n            [\n              -87.05566406,\n              31.71882222\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.06665039,\n              31.34425446\n            ],\n            [\n              -87.06665039,\n              31.35363694\n            ],\n            [\n              -87.05566406,\n              31.35363694\n            ],\n            [\n              -87.05566406,\n              31.34425446\n            ],\n            [\n              -87.06665039,\n              31.34425446\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.06665039,\n              31.35363694\n            ],\n            [\n              -87.06665039,\n              31.36301849\n            ],\n            [\n              -87.05566406,\n              31.36301849\n            ],\n            [\n              -87.05566406,\n              31.35363694\n            ],\n            [\n              -87.06665039,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.06665039,\n              31.36301849\n            ],\n            [\n              -87.06665039,\n              31.3723991\n            ],\n            [\n              -87.05566406,\n              31.3723991\n            ],\n            [\n              -87.05566406,\n              31.36301849\n            ],\n            [\n              -87.06665039,\n              31.36301849\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.06665039,\n              31.40053533\n            ],\n            [\n              -87.06665039,\n              31.40991219\n            ],\n            [\n              -87.05566406,\n              31.40991219\n            ],\n            [\n              -87.05566406,\n              31.40053533\n            ],\n            [\n              -87.06665039,\n              31.40053533\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.06665039,\n              31.70947636\n            ],\n            [\n              -87.06665039,\n              31.71882222\n            ],\n            [\n              -87.05566406,\n              31.71882222\n            ],\n            [\n              -87.05566406,\n              31.70947636\n            ],\n            [\n              -87.06665039,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.07763672,\n              31.34425446\n            ],\n            [\n              -87.07763672,\n              31.35363694\n            ],\n            [\n              -87.06665039,\n              31.35363694\n            ],\n            [\n              -87.06665039,\n              31.34425446\n            ],\n            [\n              -87.07763672,\n              31.34425446\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.07763672,\n              31.35363694\n            ],\n            [\n              -87.07763672,\n              31.36301849\n            ],\n            [\n              -87.06665039,\n              31.36301849\n            ],\n            [\n              -87.06665039,\n              31.35363694\n            ],\n            [\n              -87.07763672,\n              31.35363694\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.07763672,\n              31.40991219\n            ],\n            [\n              -87.07763672,\n              31.42866312\n            ],\n            [\n              -87.05566406,\n              31.42866312\n            ],\n            [\n              -87.05566406,\n              31.40991219\n            ],\n            [\n              -87.07763672,\n              31.40991219\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.07763672,\n              31.46615372\n            ],\n            [\n              -87.07763672,\n              31.48489339\n            ],\n            [\n              -87.05566406,\n              31.48489339\n            ],\n            [\n              -87.05566406,\n              31.46615372\n            ],\n            [\n              -87.07763672,\n              31.46615372\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.07763672,\n              31.48489339\n            ],\n            [\n              -87.07763672,\n              31.50362931\n            ],\n            [\n              -87.05566406,\n              31.50362931\n            ],\n            [\n              -87.05566406,\n              31.48489339\n            ],\n            [\n              -87.07763672,\n              31.48489339\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.07763672,\n              31.69078181\n            ],\n            [\n              -87.07763672,\n              31.70947636\n            ],\n            [\n              -87.05566406,\n              31.70947636\n            ],\n            [\n              -87.05566406,\n              31.69078181\n            ],\n            [\n              -87.07763672,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.07763672,\n              31.70947636\n            ],\n            [\n              -87.07763672,\n              31.71882222\n            ],\n            [\n              -87.06665039,\n              31.71882222\n            ],\n            [\n              -87.06665039,\n              31.70947636\n            ],\n            [\n              -87.07763672,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.07763672,\n              31.71882222\n            ],\n            [\n              -87.07763672,\n              31.72816715\n            ],\n            [\n              -87.06665039,\n              31.72816715\n            ],\n            [\n              -87.06665039,\n              31.71882222\n            ],\n            [\n              -87.07763672,\n              31.71882222\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.08862305,\n              31.40991219\n            ],\n            [\n              -87.08862305,\n              31.41928812\n            ],\n            [\n              -87.07763672,\n              31.41928812\n            ],\n            [\n              -87.07763672,\n              31.40991219\n            ],\n            [\n              -87.08862305,\n              31.40991219\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.08862305,\n              31.41928812\n            ],\n            [\n              -87.08862305,\n              31.42866312\n            ],\n            [\n              -87.07763672,\n              31.42866312\n            ],\n            [\n              -87.07763672,\n              31.41928812\n            ],\n            [\n              -87.08862305,\n              31.41928812\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.08862305,\n              31.47552402\n            ],\n            [\n              -87.08862305,\n              31.48489339\n            ],\n            [\n              -87.07763672,\n              31.48489339\n            ],\n            [\n              -87.07763672,\n              31.47552402\n            ],\n            [\n              -87.08862305,\n              31.47552402\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.09960938,\n              31.41928812\n            ],\n            [\n              -87.09960938,\n              31.42866312\n            ],\n            [\n              -87.08862305,\n              31.42866312\n            ],\n            [\n              -87.08862305,\n              31.41928812\n            ],\n            [\n              -87.09960938,\n              31.41928812\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.09960938,\n              31.42866312\n            ],\n            [\n              -87.09960938,\n              31.46615372\n            ],\n            [\n              -87.05566406,\n              31.46615372\n            ],\n            [\n              -87.05566406,\n              31.42866312\n            ],\n            [\n              -87.09960938,\n              31.42866312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.09960938,\n              31.48489339\n            ],\n            [\n              -87.09960938,\n              31.50362931\n            ],\n            [\n              -87.07763672,\n              31.50362931\n            ],\n            [\n              -87.07763672,\n              31.48489339\n            ],\n            [\n              -87.09960938,\n              31.48489339\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.09960938,\n              31.50362931\n            ],\n            [\n              -87.09960938,\n              31.57853543\n            ],\n            [\n              -87.01171875,\n              31.57853543\n            ],\n            [\n              -87.01171875,\n              31.50362931\n            ],\n            [\n              -87.09960938,\n              31.50362931\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.09960938,\n              31.57853543\n            ],\n            [\n              -87.09960938,\n              31.6533814\n            ],\n            [\n              -87.01171875,\n              31.6533814\n            ],\n            [\n              -87.01171875,\n              31.57853543\n            ],\n            [\n              -87.09960938,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.09960938,\n              31.6533814\n            ],\n            [\n              -87.09960938,\n              31.69078181\n            ],\n            [\n              -87.05566406,\n              31.69078181\n            ],\n            [\n              -87.05566406,\n              31.6533814\n            ],\n            [\n              -87.09960938,\n              31.6533814\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.09960938,\n              31.69078181\n            ],\n            [\n              -87.09960938,\n              31.70947636\n            ],\n            [\n              -87.07763672,\n              31.70947636\n            ],\n            [\n              -87.07763672,\n              31.69078181\n            ],\n            [\n              -87.09960938,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.09960938,\n              31.70947636\n            ],\n            [\n              -87.09960938,\n              31.72816715\n            ],\n            [\n              -87.07763672,\n              31.72816715\n            ],\n            [\n              -87.07763672,\n              31.70947636\n            ],\n            [\n              -87.09960938,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.1105957,\n              31.41928812\n            ],\n            [\n              -87.1105957,\n              31.42866312\n            ],\n            [\n              -87.09960938,\n              31.42866312\n            ],\n            [\n              -87.09960938,\n              31.41928812\n            ],\n            [\n              -87.1105957,\n              31.41928812\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.1105957,\n              31.42866312\n            ],\n            [\n              -87.1105957,\n              31.43803717\n            ],\n            [\n              -87.09960938,\n              31.43803717\n            ],\n            [\n              -87.09960938,\n              31.42866312\n            ],\n            [\n              -87.1105957,\n              31.42866312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.1105957,\n              31.43803717\n            ],\n            [\n              -87.1105957,\n              31.44741029\n            ],\n            [\n              -87.09960938,\n              31.44741029\n            ],\n            [\n              -87.09960938,\n              31.43803717\n            ],\n            [\n              -87.1105957,\n              31.43803717\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.1105957,\n              31.48489339\n            ],\n            [\n              -87.1105957,\n              31.49426182\n            ],\n            [\n              -87.09960938,\n              31.49426182\n            ],\n            [\n              -87.09960938,\n              31.48489339\n            ],\n            [\n              -87.1105957,\n              31.48489339\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.1105957,\n              31.49426182\n            ],\n            [\n              -87.1105957,\n              31.50362931\n            ],\n            [\n              -87.09960938,\n              31.50362931\n            ],\n            [\n              -87.09960938,\n              31.49426182\n            ],\n            [\n              -87.1105957,\n              31.49426182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.1105957,\n              31.55045268\n            ],\n            [\n              -87.1105957,\n              31.55981453\n            ],\n            [\n              -87.09960938,\n              31.55981453\n            ],\n            [\n              -87.09960938,\n              31.55045268\n            ],\n            [\n              -87.1105957,\n              31.55045268\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.12158203,\n              31.49426182\n            ],\n            [\n              -87.12158203,\n              31.50362931\n            ],\n            [\n              -87.1105957,\n              31.50362931\n            ],\n            [\n              -87.1105957,\n              31.49426182\n            ],\n            [\n              -87.12158203,\n              31.49426182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.12158203,\n              31.55045268\n            ],\n            [\n              -87.12158203,\n              31.55981453\n            ],\n            [\n              -87.1105957,\n              31.55981453\n            ],\n            [\n              -87.1105957,\n              31.55045268\n            ],\n            [\n              -87.12158203,\n              31.55045268\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.12158203,\n              31.55981453\n            ],\n            [\n              -87.12158203,\n              31.57853543\n            ],\n            [\n              -87.09960938,\n              31.57853543\n            ],\n            [\n              -87.09960938,\n              31.55981453\n            ],\n            [\n              -87.12158203,\n              31.55981453\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.12158203,\n              31.69078181\n            ],\n            [\n              -87.12158203,\n              31.70947636\n            ],\n            [\n              -87.09960938,\n              31.70947636\n            ],\n            [\n              -87.09960938,\n              31.69078181\n            ],\n            [\n              -87.12158203,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.12158203,\n              31.70947636\n            ],\n            [\n              -87.12158203,\n              31.72816715\n            ],\n            [\n              -87.09960938,\n              31.72816715\n            ],\n            [\n              -87.09960938,\n              31.70947636\n            ],\n            [\n              -87.12158203,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.13256836,\n              31.49426182\n            ],\n            [\n              -87.13256836,\n              31.50362931\n            ],\n            [\n              -87.12158203,\n              31.50362931\n            ],\n            [\n              -87.12158203,\n              31.49426182\n            ],\n            [\n              -87.13256836,\n              31.49426182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.13256836,\n              31.55045268\n            ],\n            [\n              -87.13256836,\n              31.55981453\n            ],\n            [\n              -87.12158203,\n              31.55981453\n            ],\n            [\n              -87.12158203,\n              31.55045268\n            ],\n            [\n              -87.13256836,\n              31.55045268\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.13256836,\n              31.70947636\n            ],\n            [\n              -87.13256836,\n              31.71882222\n            ],\n            [\n              -87.12158203,\n              31.71882222\n            ],\n            [\n              -87.12158203,\n              31.70947636\n            ],\n            [\n              -87.13256836,\n              31.70947636\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.14355469,\n              31.50362931\n            ],\n            [\n              -87.14355469,\n              31.54108988\n            ],\n            [\n              -87.09960938,\n              31.54108988\n            ],\n            [\n              -87.09960938,\n              31.50362931\n            ],\n            [\n              -87.14355469,\n              31.50362931\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.14355469,\n              31.54108988\n            ],\n            [\n              -87.14355469,\n              31.55045268\n            ],\n            [\n              -87.13256836,\n              31.55045268\n            ],\n            [\n              -87.13256836,\n              31.54108988\n            ],\n            [\n              -87.14355469,\n              31.54108988\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.14355469,\n              31.55045268\n            ],\n            [\n              -87.14355469,\n              31.55981453\n            ],\n            [\n              -87.13256836,\n              31.55981453\n            ],\n            [\n              -87.13256836,\n              31.55045268\n            ],\n            [\n              -87.14355469,\n              31.55045268\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.14355469,\n              31.55981453\n            ],\n            [\n              -87.14355469,\n              31.57853543\n            ],\n            [\n              -87.12158203,\n              31.57853543\n            ],\n            [\n              -87.12158203,\n              31.55981453\n            ],\n            [\n              -87.14355469,\n              31.55981453\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.14355469,\n              31.57853543\n            ],\n            [\n              -87.14355469,\n              31.61596594\n            ],\n            [\n              -87.09960938,\n              31.61596594\n            ],\n            [\n              -87.09960938,\n              31.57853543\n            ],\n            [\n              -87.14355469,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.14355469,\n              31.61596594\n            ],\n            [\n              -87.14355469,\n              31.6533814\n            ],\n            [\n              -87.09960938,\n              31.6533814\n            ],\n            [\n              -87.09960938,\n              31.61596594\n            ],\n            [\n              -87.14355469,\n              31.61596594\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.14355469,\n              31.6533814\n            ],\n            [\n              -87.14355469,\n              31.69078181\n            ],\n            [\n              -87.09960938,\n              31.69078181\n            ],\n            [\n              -87.09960938,\n              31.6533814\n            ],\n            [\n              -87.14355469,\n              31.6533814\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.14355469,\n              31.69078181\n            ],\n            [\n              -87.14355469,\n              31.70947636\n            ],\n            [\n              -87.12158203,\n              31.70947636\n            ],\n            [\n              -87.12158203,\n              31.69078181\n            ],\n            [\n              -87.14355469,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.50362931\n            ],\n            [\n              -87.15454102,\n              31.51299586\n            ],\n            [\n              -87.14355469,\n              31.51299586\n            ],\n            [\n              -87.14355469,\n              31.50362931\n            ],\n            [\n              -87.15454102,\n              31.50362931\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.51299586\n            ],\n            [\n              -87.15454102,\n              31.52236147\n            ],\n            [\n              -87.14355469,\n              31.52236147\n            ],\n            [\n              -87.14355469,\n              31.51299586\n            ],\n            [\n              -87.15454102,\n              31.51299586\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.52236147\n            ],\n            [\n              -87.15454102,\n              31.53172614\n            ],\n            [\n              -87.14355469,\n              31.53172614\n            ],\n            [\n              -87.14355469,\n              31.52236147\n            ],\n            [\n              -87.15454102,\n              31.52236147\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.53172614\n            ],\n            [\n              -87.15454102,\n              31.54108988\n            ],\n            [\n              -87.14355469,\n              31.54108988\n            ],\n            [\n              -87.14355469,\n              31.53172614\n            ],\n            [\n              -87.15454102,\n              31.53172614\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.57853543\n            ],\n            [\n              -87.15454102,\n              31.58789446\n            ],\n            [\n              -87.14355469,\n              31.58789446\n            ],\n            [\n              -87.14355469,\n              31.57853543\n            ],\n            [\n              -87.15454102,\n              31.57853543\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.58789446\n            ],\n            [\n              -87.15454102,\n              31.59725256\n            ],\n            [\n              -87.14355469,\n              31.59725256\n            ],\n            [\n              -87.14355469,\n              31.58789446\n            ],\n            [\n              -87.15454102,\n              31.58789446\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.67208349\n            ],\n            [\n              -87.15454102,\n              31.68143312\n            ],\n            [\n              -87.14355469,\n              31.68143312\n            ],\n            [\n              -87.14355469,\n              31.67208349\n            ],\n            [\n              -87.15454102,\n              31.67208349\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.68143312\n            ],\n            [\n              -87.15454102,\n              31.69078181\n            ],\n            [\n              -87.14355469,\n              31.69078181\n            ],\n            [\n              -87.14355469,\n              31.68143312\n            ],\n            [\n              -87.15454102,\n              31.68143312\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.69078181\n            ],\n            [\n              -87.15454102,\n              31.70012955\n            ],\n            [\n              -87.14355469,\n              31.70012955\n            ],\n            [\n              -87.14355469,\n              31.69078181\n            ],\n            [\n              -87.15454102,\n              31.69078181\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.15454102,\n              31.70012955\n            ],\n            [\n              -87.15454102,\n              31.70947636\n            ],\n            [\n              -87.14355469,\n              31.70947636\n            ],\n            [\n              -87.14355469,\n              31.70012955\n            ],\n            [\n              -87.15454102,\n              31.70012955\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.16552734,\n              31.53172614\n            ],\n            [\n              -87.16552734,\n              31.54108988\n            ],\n            [\n              -87.15454102,\n              31.54108988\n            ],\n            [\n              -87.15454102,\n              31.53172614\n            ],\n            [\n              -87.16552734,\n              31.53172614\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.16552734,\n              31.54108988\n            ],\n            [\n              -87.16552734,\n              31.55981453\n            ],\n            [\n              -87.14355469,\n              31.55981453\n            ],\n            [\n              -87.14355469,\n              31.54108988\n            ],\n            [\n              -87.16552734,\n              31.54108988\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.16552734,\n              31.55981453\n            ],\n            [\n              -87.16552734,\n              31.57853543\n            ],\n            [\n              -87.14355469,\n              31.57853543\n            ],\n            [\n              -87.14355469,\n              31.55981453\n            ],\n            [\n              -87.16552734,\n              31.55981453\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.16552734,\n              31.6533814\n            ],\n            [\n              -87.16552734,\n              31.67208349\n            ],\n            [\n              -87.14355469,\n              31.67208349\n            ],\n            [\n              -87.14355469,\n              31.6533814\n            ],\n            [\n              -87.16552734,\n              31.6533814\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.16552734,\n              31.67208349\n            ],\n            [\n              -87.16552734,\n              31.68143312\n            ],\n            [\n              -87.15454102,\n              31.68143312\n            ],\n            [\n              -87.15454102,\n              31.67208349\n            ],\n            [\n              -87.16552734,\n              31.67208349\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.17651367,\n              31.54108988\n            ],\n            [\n              -87.17651367,\n              31.55045268\n            ],\n            [\n              -87.16552734,\n              31.55045268\n            ],\n            [\n              -87.16552734,\n              31.54108988\n            ],\n            [\n              -87.17651367,\n              31.54108988\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.17651367,\n              31.6533814\n            ],\n            [\n              -87.17651367,\n              31.66273291\n            ],\n            [\n              -87.16552734,\n              31.66273291\n            ],\n            [\n              -87.16552734,\n              31.6533814\n            ],\n            [\n              -87.17651367,\n              31.6533814\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.17651367,\n              31.66273291\n            ],\n            [\n              -87.17651367,\n              31.67208349\n            ],\n            [\n              -87.16552734,\n              31.67208349\n            ],\n            [\n              -87.16552734,\n              31.66273291\n            ],\n            [\n              -87.17651367,\n              31.66273291\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                -87.061082,\n                31.363745\n              ],\n              [\n                -87.04404,\n                31.377009\n              ],\n              [\n                -87.040931,\n                31.379676\n              ],\n              [\n                -87.036651,\n                31.383917\n              ],\n              [\n                -87.029722,\n                31.391829\n              ],\n              [\n                -87.032293,\n                31.392847\n              ],\n              [\n                -87.034529,\n                31.392719\n              ],\n              [\n                -87.03582,\n                31.393347\n              ],\n              [\n                -87.036416,\n                31.393416\n              ],\n              [\n                -87.03666,\n                31.393614\n              ],\n              [\n                -87.038661,\n                31.394216\n              ],\n              [\n                -87.039197,\n                31.39484\n              ],\n              [\n                -87.040592,\n                31.395646\n              ],\n              [\n                -87.04106,\n                31.395716\n              ],\n              [\n                -87.041492,\n                31.396479\n              ],\n              [\n                -87.041787,\n                31.396434\n              ],\n              [\n                -87.042251,\n                31.396726\n              ],\n              [\n                -87.042951,\n                31.396532\n              ],\n              [\n                -87.043634,\n                31.396593\n              ],\n              [\n                -87.043986,\n                31.395797\n              ],\n              [\n                -87.043891,\n                31.395481\n              ],\n              [\n                -87.044851,\n                31.395219\n              ],\n              [\n                -87.045115,\n                31.395383\n              ],\n              [\n                -87.045614,\n                31.395266\n              ],\n              [\n                -87.046077,\n                31.395551\n              ],\n              [\n                -87.046165,\n                31.395264\n              ],\n              [\n                -87.046332,\n                31.395242\n              ],\n              [\n                -87.046712,\n                31.395587\n              ],\n              [\n                -87.047083,\n                31.395509\n              ],\n              [\n                -87.047969,\n                31.395902\n              ],\n              [\n                -87.049129,\n                31.395832\n              ],\n              [\n                -87.049707,\n                31.396193\n              ],\n              [\n                -87.050104,\n                31.395944\n              ],\n              [\n                -87.050476,\n                31.396102\n              ],\n              [\n                -87.050886,\n                31.396013\n              ],\n              [\n                -87.052146,\n                31.396811\n              ],\n              [\n                -87.052353,\n                31.397366\n              ],\n              [\n                -87.052285,\n                31.397928\n              ],\n              [\n                -87.051391,\n                31.398541\n              ],\n              [\n                -87.051198,\n                31.399031\n              ],\n              [\n                -87.052079,\n                31.400327\n              ],\n              [\n                -87.053346,\n                31.401213\n              ],\n              [\n                -87.054238,\n                31.402899\n              ],\n              [\n                -87.054733,\n                31.403216\n              ],\n              [\n                -87.055169,\n                31.403248\n              ],\n              [\n                -87.055552,\n                31.402994\n              ],\n              [\n                -87.055788,\n                31.402564\n              ],\n              [\n                -87.056271,\n                31.402482\n              ],\n              [\n                -87.05764,\n                31.402884\n              ],\n              [\n                -87.057626,\n                31.405208\n              ],\n              [\n                -87.05781,\n                31.407063\n              ],\n              [\n                -87.057079,\n                31.407207\n              ],\n              [\n                -87.056814,\n                31.408185\n              ],\n              [\n                -87.057382,\n                31.410012\n              ],\n              [\n                -87.057346,\n                31.41046\n              ],\n              [\n                -87.057738,\n                31.412362\n              ],\n              [\n                -87.057759,\n                31.413781\n              ],\n              [\n                -87.057595,\n                31.414034\n              ],\n              [\n                -87.057126,\n                31.414229\n              ],\n              [\n                -87.054669,\n                31.414633\n              ],\n              [\n                -87.054379,\n                31.415116\n              ],\n              [\n                -87.053828,\n                31.415577\n              ],\n              [\n                -87.053114,\n                31.41689\n              ],\n              [\n                -87.053799,\n                31.416989\n              ],\n              [\n                -87.054736,\n                31.416187\n              ],\n              [\n                -87.05499,\n                31.415642\n              ],\n              [\n                -87.055509,\n                31.415464\n              ],\n              [\n                -87.055949,\n                31.41505\n              ],\n              [\n                -87.057237,\n                31.41498\n              ],\n              [\n                -87.057692,\n                31.414775\n              ],\n              [\n                -87.057864,\n                31.414587\n              ],\n              [\n                -87.057818,\n                31.414351\n              ],\n              [\n                -87.058894,\n                31.414209\n              ],\n              [\n                -87.059756,\n                31.41348\n              ],\n              [\n                -87.060434,\n                31.413137\n              ],\n              [\n                -87.060833,\n                31.41269\n              ],\n              [\n                -87.061653,\n                31.412326\n              ],\n              [\n                -87.061693,\n                31.411705\n              ],\n              [\n                -87.061977,\n                31.411399\n              ],\n              [\n                -87.063125,\n                31.411395\n              ],\n              [\n                -87.064559,\n                31.410728\n              ],\n              [\n                -87.065074,\n                31.410753\n              ],\n              [\n                -87.066483,\n                31.411213\n              ],\n              [\n                -87.068129,\n                31.412148\n              ],\n              [\n                -87.070265,\n                31.411901\n              ],\n              [\n                -87.072532,\n                31.412033\n              ],\n              [\n                -87.074344,\n                31.411587\n              ],\n              [\n                -87.076002,\n                31.411699\n              ],\n              [\n                -87.076609,\n                31.411909\n              ],\n              [\n                -87.077447,\n                31.412841\n              ],\n              [\n                -87.078506,\n                31.413674\n              ],\n              [\n                -87.079376,\n                31.414045\n              ],\n              [\n                -87.079843,\n                31.415099\n              ],\n              [\n                -87.079904,\n                31.41566\n              ],\n              [\n                -87.080625,\n                31.416803\n              ],\n              [\n                -87.081086,\n                31.417285\n              ],\n              [\n                -87.081851,\n                31.417728\n              ],\n              [\n                -87.082589,\n                31.419001\n              ],\n              [\n                -87.083427,\n                31.4194\n              ],\n              [\n                -87.085324,\n                31.420978\n              ],\n              [\n                -87.085732,\n                31.421619\n              ],\n              [\n                -87.102116,\n                31.421889\n              ],\n              [\n                -87.101674,\n                31.423915\n              ],\n              [\n                -87.108863,\n                31.427137\n              ],\n              [\n                -87.109155,\n                31.430902\n              ],\n              [\n                -87.108913,\n                31.432205\n              ],\n              [\n                -87.108021,\n                31.433511\n              ],\n              [\n                -87.091931,\n                31.444431\n              ],\n              [\n                -87.091085,\n                31.444424\n              ],\n              [\n                -87.090467,\n                31.444605\n              ],\n              [\n                -87.088594,\n                31.444496\n              ],\n              [\n                -87.087714,\n                31.444257\n              ],\n              [\n                -87.086677,\n                31.444755\n              ],\n              [\n                -87.085755,\n                31.444362\n              ],\n              [\n                -87.083995,\n                31.443981\n              ],\n              [\n                -87.082914,\n                31.444534\n              ],\n              [\n                -87.082036,\n                31.444763\n              ],\n              [\n                -87.0819,\n                31.445649\n              ],\n              [\n                -87.081159,\n                31.446367\n              ],\n              [\n                -87.081002,\n                31.446885\n              ],\n              [\n                -87.080502,\n                31.446897\n              ],\n              [\n                -87.080246,\n                31.447102\n              ],\n              [\n                -87.079944,\n                31.447042\n              ],\n              [\n                -87.079157,\n                31.447463\n              ],\n              [\n                -87.077464,\n                31.447469\n              ],\n              [\n                -87.07701,\n                31.447877\n              ],\n              [\n                -87.07723,\n                31.448234\n              ],\n              [\n                -87.077214,\n                31.448812\n              ],\n              [\n                -87.076831,\n                31.449165\n              ],\n              [\n                -87.076299,\n                31.449299\n              ],\n              [\n                -87.074674,\n                31.451318\n              ],\n              [\n                -87.073168,\n                31.451653\n              ],\n              [\n                -87.072224,\n                31.451595\n              ],\n              [\n                -87.071387,\n                31.452299\n              ],\n              [\n                -87.069857,\n                31.45283\n              ],\n              [\n                -87.096487,\n                31.457022\n              ],\n              [\n                -87.093436,\n                31.458081\n              ],\n              [\n                -87.091872,\n                31.459226\n              ],\n              [\n                -87.089862,\n                31.46033\n              ],\n              [\n                -87.088151,\n                31.461012\n              ],\n              [\n                -87.086716,\n                31.461911\n              ],\n              [\n                -87.084809,\n                31.462003\n              ],\n              [\n                -87.079994,\n                31.463564\n              ],\n              [\n                -87.07657,\n                31.464218\n              ],\n              [\n                -87.074356,\n                31.465346\n              ],\n              [\n                -87.072572,\n                31.465427\n              ],\n              [\n                -87.071604,\n                31.465715\n              ],\n              [\n                -87.070759,\n                31.466181\n              ],\n              [\n                -87.070371,\n                31.466752\n              ],\n              [\n                -87.069546,\n                31.467393\n              ],\n              [\n                -87.067735,\n                31.469703\n              ],\n              [\n                -87.063379,\n                31.469836\n              ],\n              [\n                -87.061271,\n                31.470106\n              ],\n              [\n                -87.061054,\n                31.470406\n              ],\n              [\n                -87.0607,\n                31.471685\n              ],\n              [\n                -87.05862,\n                31.473508\n              ],\n              [\n                -87.058097,\n                31.474423\n              ],\n              [\n                -87.05939,\n                31.475254\n              ],\n              [\n                -87.062603,\n                31.477929\n              ],\n              [\n                -87.06419,\n                31.478745\n              ],\n              [\n                -87.072444,\n                31.480423\n              ],\n              [\n                -87.075817,\n                31.481428\n              ],\n              [\n                -87.085923,\n                31.485835\n              ],\n              [\n                -87.112143,\n                31.495845\n              ],\n              [\n                -87.116658,\n                31.496826\n              ],\n              [\n                -87.117962,\n                31.496734\n              ],\n              [\n                -87.119119,\n                31.496258\n              ],\n              [\n                -87.122696,\n                31.502124\n              ],\n              [\n                -87.124718,\n                31.502094\n              ],\n              [\n                -87.125753,\n                31.502262\n              ],\n              [\n                -87.12614,\n                31.50253\n              ],\n              [\n                -87.126018,\n                31.503814\n              ],\n              [\n                -87.124527,\n                31.505132\n              ],\n              [\n                -87.124105,\n                31.506528\n              ],\n              [\n                -87.123559,\n                31.506701\n              ],\n              [\n                -87.12436,\n                31.514752\n              ],\n              [\n                -87.124558,\n                31.515813\n              ],\n              [\n                -87.125063,\n                31.517129\n              ],\n              [\n                -87.125814,\n                31.517216\n              ],\n              [\n                -87.130505,\n                31.516259\n              ],\n              [\n                -87.131885,\n                31.515591\n              ],\n              [\n                -87.133614,\n                31.51517\n              ],\n              [\n                -87.135986,\n                31.515331\n              ],\n              [\n                -87.136742,\n                31.514551\n              ],\n              [\n                -87.137135,\n                31.513372\n              ],\n              [\n                -87.14078,\n                31.511446\n              ],\n              [\n                -87.141738,\n                31.511108\n              ],\n              [\n                -87.145183,\n                31.51034\n              ],\n              [\n                -87.14628,\n                31.510483\n              ],\n              [\n                -87.148412,\n                31.510283\n              ],\n              [\n                -87.149954,\n                31.510416\n              ],\n              [\n                -87.151993,\n                31.509845\n              ],\n              [\n                -87.151895,\n                31.513551\n              ],\n              [\n                -87.152454,\n                31.51618\n              ],\n              [\n                -87.150858,\n                31.518153\n              ],\n              [\n                -87.150174,\n                31.520491\n              ],\n              [\n                -87.150041,\n                31.52181\n              ],\n              [\n                -87.149493,\n                31.522782\n              ],\n              [\n                -87.149124,\n                31.527349\n              ],\n              [\n                -87.149371,\n                31.529928\n              ],\n              [\n                -87.151121,\n                31.532333\n              ],\n              [\n                -87.152914,\n                31.53297\n              ],\n              [\n                -87.153899,\n                31.53363\n              ],\n              [\n                -87.156149,\n                31.534501\n              ],\n              [\n                -87.15698,\n                31.534979\n              ],\n              [\n                -87.158434,\n                31.536424\n              ],\n              [\n                -87.159947,\n                31.538575\n              ],\n              [\n                -87.161607,\n                31.539244\n              ],\n              [\n                -87.162069,\n                31.53959\n              ],\n              [\n                -87.16322,\n                31.539599\n              ],\n              [\n                -87.163806,\n                31.539797\n              ],\n              [\n                -87.164269,\n                31.540368\n              ],\n              [\n                -87.164444,\n                31.541073\n              ],\n              [\n                -87.165225,\n                31.542485\n              ],\n              [\n                -87.165662,\n                31.542897\n              ],\n              [\n                -87.165351,\n                31.544138\n              ],\n              [\n                -87.164501,\n                31.544318\n              ],\n              [\n                -87.163724,\n                31.544709\n              ],\n              [\n                -87.160629,\n                31.547472\n              ],\n              [\n                -87.159765,\n                31.548894\n              ],\n              [\n                -87.159581,\n                31.550384\n              ],\n              [\n                -87.158204,\n                31.549104\n              ],\n              [\n                -87.156773,\n                31.548446\n              ],\n              [\n                -87.153558,\n                31.545886\n              ],\n              [\n                -87.152672,\n                31.545444\n              ],\n              [\n                -87.146778,\n                31.543812\n              ],\n              [\n                -87.145517,\n                31.54362\n              ],\n              [\n                -87.14319,\n                31.543522\n              ],\n              [\n                -87.142574,\n                31.543891\n              ],\n              [\n                -87.141972,\n                31.543981\n              ],\n              [\n                -87.141589,\n                31.544513\n              ],\n              [\n                -87.140982,\n                31.543833\n              ],\n              [\n                -87.140176,\n                31.542439\n              ],\n              [\n                -87.138474,\n                31.541352\n              ],\n              [\n                -87.137805,\n                31.540682\n              ],\n              [\n                -87.13607,\n                31.538235\n              ],\n              [\n                -87.133545,\n                31.535448\n              ],\n              [\n                -87.132629,\n                31.534119\n              ],\n              [\n                -87.130598,\n                31.533522\n              ],\n              [\n                -87.129581,\n                31.533606\n              ],\n              [\n                -87.12463,\n                31.534813\n              ],\n              [\n                -87.121846,\n                31.5344\n              ],\n              [\n                -87.12082,\n                31.534439\n              ],\n              [\n                -87.112588,\n                31.536199\n              ],\n              [\n                -87.108337,\n                31.538226\n              ],\n              [\n                -87.107139,\n                31.538628\n              ],\n              [\n                -87.105372,\n                31.538906\n              ],\n              [\n                -87.102467,\n                31.540337\n              ],\n              [\n                -87.101512,\n                31.540629\n              ],\n              [\n                -87.09896,\n                31.540448\n              ],\n              [\n                -87.09689,\n                31.539172\n              ],\n              [\n                -87.096175,\n                31.538934\n              ],\n              [\n                -87.088064,\n                31.538981\n              ],\n              [\n                -87.087067,\n                31.538776\n              ],\n              [\n                -87.084123,\n                31.537626\n              ],\n              [\n                -87.082563,\n                31.537813\n              ],\n              [\n                -87.083466,\n                31.539986\n              ],\n              [\n                -87.084363,\n                31.541313\n              ],\n              [\n                -87.084505,\n                31.541957\n              ],\n              [\n                -87.084716,\n                31.545752\n              ],\n              [\n                -87.083678,\n                31.547551\n              ],\n              [\n                -87.085941,\n                31.548296\n              ],\n              [\n                -87.087626,\n                31.548503\n              ],\n              [\n                -87.091193,\n                31.549665\n              ],\n              [\n                -87.096026,\n                31.549414\n              ],\n              [\n                -87.098008,\n                31.550674\n              ],\n              [\n                -87.100512,\n                31.550903\n              ],\n              [\n                -87.101754,\n                31.551593\n              ],\n              [\n                -87.102643,\n                31.552421\n              ],\n              [\n                -87.104959,\n                31.553569\n              ],\n              [\n                -87.105326,\n                31.55392\n              ],\n              [\n                -87.105773,\n                31.554871\n              ],\n              [\n                -87.106726,\n                31.555666\n              ],\n              [\n                -87.107511,\n                31.556093\n              ],\n              [\n                -87.108104,\n                31.556696\n              ],\n              [\n                -87.109262,\n                31.557166\n              ],\n              [\n                -87.110312,\n                31.558104\n              ],\n              [\n                -87.111148,\n                31.558498\n              ],\n              [\n                -87.112399,\n                31.558367\n              ],\n              [\n                -87.114423,\n                31.558774\n              ],\n              [\n                -87.115636,\n                31.55877\n              ],\n              [\n                -87.117275,\n                31.559078\n              ],\n              [\n                -87.118284,\n                31.559466\n              ],\n              [\n                -87.119499,\n                31.559157\n              ],\n              [\n                -87.121633,\n                31.558905\n              ],\n              [\n                -87.123123,\n                31.559066\n              ],\n              [\n                -87.124215,\n                31.559382\n              ],\n              [\n                -87.126905,\n                31.560768\n              ],\n              [\n                -87.129755,\n                31.562776\n              ],\n              [\n                -87.130541,\n                31.561749\n              ],\n              [\n                -87.131279,\n                31.561124\n              ],\n              [\n                -87.13632,\n                31.559437\n              ],\n              [\n                -87.138421,\n                31.559183\n              ],\n              [\n                -87.147042,\n                31.559183\n              ],\n              [\n                -87.148537,\n                31.558883\n              ],\n              [\n                -87.155547,\n                31.554691\n              ],\n              [\n                -87.157462,\n                31.554048\n              ],\n              [\n                -87.160096,\n                31.553688\n              ],\n              [\n                -87.160887,\n                31.557306\n              ],\n              [\n                -87.160782,\n                31.55943\n              ],\n              [\n                -87.158925,\n                31.56614\n              ],\n              [\n                -87.153825,\n                31.577805\n              ],\n              [\n                -87.152341,\n                31.579871\n              ],\n              [\n                -87.145126,\n                31.587168\n              ],\n              [\n                -87.144205,\n                31.588658\n              ],\n              [\n                -87.141064,\n                31.600965\n              ],\n              [\n                -87.140545,\n                31.608316\n              ],\n              [\n                -87.140044,\n                31.609348\n              ],\n              [\n                -87.138009,\n                31.611685\n              ],\n              [\n                -87.137371,\n                31.612872\n              ],\n              [\n                -87.137278,\n                31.613547\n              ],\n              [\n                -87.1374,\n                31.614446\n              ],\n              [\n                -87.139476,\n                31.622646\n              ],\n              [\n                -87.139574,\n                31.624784\n              ],\n              [\n                -87.138303,\n                31.629655\n              ],\n              [\n                -87.137558,\n                31.633861\n              ],\n              [\n                -87.136879,\n                31.636405\n              ],\n              [\n                -87.136198,\n                31.641232\n              ],\n              [\n                -87.135652,\n                31.641978\n              ],\n              [\n                -87.135051,\n                31.642417\n              ],\n              [\n                -87.132666,\n                31.643145\n              ],\n              [\n                -87.133142,\n                31.657931\n              ],\n              [\n                -87.161902,\n                31.654982\n              ],\n              [\n                -87.162415,\n                31.655497\n              ],\n              [\n                -87.163353,\n                31.656052\n              ],\n              [\n                -87.166918,\n                31.656889\n              ],\n              [\n                -87.167767,\n                31.657548\n              ],\n              [\n                -87.168743,\n                31.660035\n              ],\n              [\n                -87.16837,\n                31.661817\n              ],\n              [\n                -87.167934,\n                31.66222\n              ],\n              [\n                -87.168099,\n                31.663229\n              ],\n              [\n                -87.167353,\n                31.664044\n              ],\n              [\n                -87.166025,\n                31.664589\n              ],\n              [\n                -87.165233,\n                31.666155\n              ],\n              [\n                -87.163007,\n                31.667029\n              ],\n              [\n                -87.162801,\n                31.667244\n              ],\n              [\n                -87.162695,\n                31.667929\n              ],\n              [\n                -87.162477,\n                31.668102\n              ],\n              [\n                -87.161485,\n                31.668063\n              ],\n              [\n                -87.160985,\n                31.668347\n              ],\n              [\n                -87.160811,\n                31.668832\n              ],\n              [\n                -87.160921,\n                31.67062\n              ],\n              [\n                -87.160512,\n                31.672374\n              ],\n              [\n                -87.159031,\n                31.674071\n              ],\n              [\n                -87.158084,\n                31.67411\n              ],\n              [\n                -87.158115,\n                31.674785\n              ],\n              [\n                -87.158593,\n                31.675687\n              ],\n              [\n                -87.156072,\n                31.676339\n              ],\n              [\n                -87.155294,\n                31.676728\n              ],\n              [\n                -87.152719,\n                31.679045\n              ],\n              [\n                -87.150486,\n                31.681597\n              ],\n              [\n                -87.149579,\n                31.684755\n              ],\n              [\n                -87.148797,\n                31.685974\n              ],\n              [\n                -87.148734,\n                31.688817\n              ],\n              [\n                -87.148511,\n                31.690299\n              ],\n              [\n                -87.149236,\n                31.691807\n              ],\n              [\n                -87.149737,\n                31.692221\n              ],\n              [\n                -87.150211,\n                31.692374\n              ],\n              [\n                -87.150882,\n                31.693249\n              ],\n              [\n                -87.152369,\n                31.693497\n              ],\n              [\n                -87.151267,\n                31.69493\n              ],\n              [\n                -87.151177,\n                31.697218\n              ],\n              [\n                -87.152476,\n                31.697313\n              ],\n              [\n                -87.153234,\n                31.699463\n              ],\n              [\n                -87.150791,\n                31.698025\n              ],\n              [\n                -87.150228,\n                31.698048\n              ],\n              [\n                -87.149531,\n                31.698368\n              ],\n              [\n                -87.148888,\n                31.698345\n              ],\n              [\n                -87.148432,\n                31.697978\n              ],\n              [\n                -87.147709,\n                31.697726\n              ],\n              [\n                -87.146422,\n                31.697795\n              ],\n              [\n                -87.145377,\n                31.697405\n              ],\n              [\n                -87.144948,\n                31.697496\n              ],\n              [\n                -87.14476,\n                31.697702\n              ],\n              [\n                -87.144921,\n                31.698688\n              ],\n              [\n                -87.144251,\n                31.698963\n              ],\n              [\n                -87.144331,\n                31.699627\n              ],\n              [\n                -87.144116,\n                31.700383\n              ],\n              [\n                -87.143472,\n                31.701048\n              ],\n              [\n                -87.142104,\n                31.703477\n              ],\n              [\n                -87.141836,\n                31.703591\n              ],\n              [\n                -87.140925,\n                31.703362\n              ],\n              [\n                -87.140469,\n                31.703476\n              ],\n              [\n                -87.138619,\n                31.704277\n              ],\n              [\n                -87.13819,\n                31.704942\n              ],\n              [\n                -87.137171,\n                31.704873\n              ],\n              [\n                -87.136876,\n                31.70517\n              ],\n              [\n                -87.136635,\n                31.70517\n              ],\n              [\n                -87.136287,\n                31.704781\n              ],\n              [\n                -87.135697,\n                31.704643\n              ],\n              [\n                -87.134223,\n                31.704688\n              ],\n              [\n                -87.132212,\n                31.705008\n              ],\n              [\n                -87.130818,\n                31.704824\n              ],\n              [\n                -87.130388,\n                31.705603\n              ],\n              [\n                -87.129182,\n                31.705786\n              ],\n              [\n                -87.127091,\n                31.705716\n              ],\n              [\n                -87.126555,\n                31.705899\n              ],\n              [\n                -87.126125,\n                31.706701\n              ],\n              [\n                -87.125857,\n                31.707984\n              ],\n              [\n                -87.125321,\n                31.709084\n              ],\n              [\n                -87.123682,\n                31.710528\n              ],\n              [\n                -87.120359,\n                31.712203\n              ],\n              [\n                -87.12036,\n                31.712638\n              ],\n              [\n                -87.121218,\n                31.713807\n              ],\n              [\n                -87.121166,\n                31.714105\n              ],\n              [\n                -87.118806,\n                31.715251\n              ],\n              [\n                -87.117708,\n                31.716237\n              ],\n              [\n                -87.116797,\n                31.716467\n              ],\n              [\n                -87.116314,\n                31.716834\n              ],\n              [\n                -87.115322,\n                31.717041\n              ],\n              [\n                -87.113956,\n                31.717912\n              ],\n              [\n                -87.113447,\n                31.718829\n              ],\n              [\n                -87.113206,\n                31.719654\n              ],\n              [\n                -87.113554,\n                31.72002\n              ],\n              [\n                -87.1135,\n                31.720433\n              ],\n              [\n                -87.113099,\n                31.721075\n              ],\n              [\n                -87.112804,\n                31.721121\n              ],\n              [\n                -87.112455,\n                31.720617\n              ],\n              [\n                -87.11181,\n                31.720571\n              ],\n              [\n                -87.111435,\n                31.721144\n              ],\n              [\n                -87.111462,\n                31.721442\n              ],\n              [\n                -87.111757,\n                31.721763\n              ],\n              [\n                -87.111543,\n                31.722084\n              ],\n              [\n                -87.110416,\n                31.722107\n              ],\n              [\n                -87.10988,\n                31.722314\n              ],\n              [\n                -87.109532,\n                31.722657\n              ],\n              [\n                -87.109317,\n                31.723184\n              ],\n              [\n                -87.107252,\n                31.723094\n              ],\n              [\n                -87.105375,\n                31.723667\n              ],\n              [\n                -87.103578,\n                31.724424\n              ],\n              [\n                -87.102961,\n                31.724906\n              ],\n              [\n                -87.103042,\n                31.725479\n              ],\n              [\n                -87.102291,\n                31.725845\n              ],\n              [\n                -87.101538,\n                31.726905\n              ],\n              [\n                -87.097966,\n                31.727435\n              ],\n              [\n                -87.091166,\n                31.727668\n              ],\n              [\n                -87.089938,\n                31.727517\n              ],\n              [\n                -87.089093,\n                31.72682\n              ],\n              [\n                -87.088207,\n                31.724562\n              ],\n              [\n                -87.087666,\n                31.723883\n              ],\n              [\n                -87.086306,\n                31.722977\n              ],\n              [\n                -87.084829,\n                31.722342\n              ],\n              [\n                -87.083401,\n                31.722163\n              ],\n              [\n                -87.078484,\n                31.722258\n              ],\n              [\n                -87.074292,\n                31.721871\n              ],\n              [\n                -87.077018,\n                31.719337\n              ],\n              [\n                -87.078061,\n                31.718014\n              ],\n              [\n                -87.07851,\n                31.715385\n              ],\n              [\n                -87.078506,\n                31.713879\n              ],\n              [\n                -87.07772,\n                31.710133\n              ],\n              [\n                -87.077046,\n                31.708511\n              ],\n              [\n                -87.075862,\n                31.706935\n              ],\n              [\n                -87.075618,\n                31.705607\n              ],\n              [\n                -87.07519,\n                31.705239\n              ],\n              [\n                -87.073582,\n                31.704916\n              ],\n              [\n                -87.073019,\n                31.70464\n              ],\n              [\n                -87.0716,\n                31.703444\n              ],\n              [\n                -87.070153,\n                31.702755\n              ],\n              [\n                -87.069831,\n                31.70248\n              ],\n              [\n                -87.06943,\n                31.701653\n              ],\n              [\n                -87.068091,\n                31.70094\n              ],\n              [\n                -87.067663,\n                31.700091\n              ],\n              [\n                -87.067584,\n                31.699149\n              ],\n              [\n                -87.067236,\n                31.698299\n              ],\n              [\n                -87.066486,\n                31.697541\n              ],\n              [\n                -87.06603,\n                31.697449\n              ],\n              [\n                -87.061396,\n                31.697488\n              ],\n              [\n                -87.06109,\n                31.704063\n              ],\n              [\n                -87.060954,\n                31.704848\n              ],\n              [\n                -87.060497,\n                31.705909\n              ],\n              [\n                -87.059539,\n                31.70712\n              ],\n              [\n                -87.05629,\n                31.710053\n              ],\n              [\n                -87.051453,\n                31.717944\n              ],\n              [\n                -87.050785,\n                31.718595\n              ],\n              [\n                -87.049855,\n                31.718803\n              ],\n              [\n                -87.048903,\n                31.719321\n              ],\n              [\n                -87.04564,\n                31.717007\n              ],\n              [\n                -87.044354,\n                31.716442\n              ],\n              [\n                -87.040494,\n                31.715991\n              ],\n              [\n                -87.02799,\n                31.713087\n              ],\n              [\n                -87.025316,\n                31.712859\n              ],\n              [\n                -87.024453,\n                31.712553\n              ],\n              [\n                -87.024141,\n                31.712559\n              ],\n              [\n                -87.021726,\n                31.713762\n              ],\n              [\n                -87.019431,\n                31.714214\n              ],\n              [\n                -87.016872,\n                31.713746\n              ],\n              [\n                -87.015664,\n                31.713899\n              ],\n              [\n                -87.012351,\n                31.713444\n              ],\n              [\n                -87.008496,\n                31.714384\n              ],\n              [\n                -87.00447,\n                31.714859\n              ],\n              [\n                -87.003958,\n                31.715017\n              ],\n              [\n                -87.003073,\n                31.715713\n              ],\n              [\n                -87.001619,\n                31.716428\n              ],\n              [\n                -87.002251,\n                31.715113\n              ],\n              [\n                -87.002453,\n                31.711764\n              ],\n              [\n                -87.003309,\n                31.709269\n              ],\n              [\n                -87.002779,\n                31.704444\n              ],\n              [\n                -87.003081,\n                31.703525\n              ],\n              [\n                -87.004436,\n                31.701387\n              ],\n              [\n                -87.004543,\n                31.700728\n              ],\n              [\n                -87.00435,\n                31.699867\n              ],\n              [\n                -87.003429,\n                31.698814\n              ],\n              [\n                -87.001712,\n                31.697999\n              ],\n              [\n                -87.000455,\n                31.69778\n              ],\n              [\n                -86.995523,\n                31.697826\n              ],\n              [\n                -86.993897,\n                31.697642\n              ],\n              [\n                -86.990544,\n                31.696721\n              ],\n              [\n                -86.989663,\n                31.696264\n              ],\n              [\n                -86.988696,\n                31.695488\n              ],\n              [\n                -86.988688,\n                31.694771\n              ],\n              [\n                -86.989155,\n                31.693344\n              ],\n              [\n                -86.989227,\n                31.691088\n              ],\n              [\n                -86.989795,\n                31.690016\n              ],\n              [\n                -86.989693,\n                31.6893\n              ],\n              [\n                -86.988434,\n                31.687242\n              ],\n              [\n                -86.988649,\n                31.685357\n              ],\n              [\n                -86.988529,\n                31.684409\n              ],\n              [\n                -86.989546,\n                31.68272\n              ],\n              [\n                -86.989546,\n                31.681813\n              ],\n              [\n                -86.988888,\n                31.680938\n              ],\n              [\n                -86.988804,\n                31.679053\n              ],\n              [\n                -86.988266,\n                31.677724\n              ],\n              [\n                -86.98768,\n                31.676786\n              ],\n              [\n                -86.987608,\n                31.676251\n              ],\n              [\n                -86.987943,\n                31.674953\n              ],\n              [\n                -86.987824,\n                31.67417\n              ],\n              [\n                -86.987393,\n                31.673479\n              ],\n              [\n                -86.987441,\n                31.672192\n              ],\n              [\n                -86.988015,\n                31.668947\n              ],\n              [\n                -86.987967,\n                31.667978\n              ],\n              [\n                -86.987465,\n                31.667381\n              ],\n              [\n                -86.98701,\n                31.667216\n              ],\n              [\n                -86.983386,\n                31.666567\n              ],\n              [\n                -86.98274,\n                31.665805\n              ],\n              [\n                -86.982668,\n                31.665156\n              ],\n              [\n                -86.98299,\n                31.664423\n              ],\n              [\n                -86.982908,\n                31.663464\n              ],\n              [\n                -86.982531,\n                31.663304\n              ],\n              [\n                -86.981218,\n                31.663444\n              ],\n              [\n                -86.980521,\n                31.662623\n              ],\n              [\n                -86.979205,\n                31.661892\n              ],\n              [\n                -86.978588,\n                31.661115\n              ],\n              [\n                -86.977622,\n                31.660453\n              ],\n              [\n                -86.977408,\n                31.659904\n              ],\n              [\n                -86.976603,\n                31.659632\n              ],\n              [\n                -86.976281,\n                31.659289\n              ],\n              [\n                -86.976199,\n                31.658284\n              ],\n              [\n                -86.975796,\n                31.65755\n              ],\n              [\n                -86.973999,\n                31.65721\n              ],\n              [\n                -86.972524,\n                31.657169\n              ],\n              [\n                -86.970647,\n                31.656874\n              ],\n              [\n                -86.969976,\n                31.656533\n              ],\n              [\n                -86.969735,\n                31.65619\n              ],\n              [\n                -86.969007,\n                31.652944\n              ],\n              [\n                -86.968122,\n                31.652533\n              ],\n              [\n                -86.969088,\n                31.65163\n              ],\n              [\n                -86.970278,\n                31.64985\n              ],\n              [\n                -86.971718,\n                31.648778\n              ],\n              [\n                -86.971289,\n                31.648274\n              ],\n              [\n                -86.971074,\n                31.646945\n              ],\n              [\n                -86.970804,\n                31.64628\n              ],\n              [\n                -86.96799,\n                31.6436\n              ],\n              [\n                -86.965898,\n                31.63959\n              ],\n              [\n                -86.964505,\n                31.638032\n              ],\n              [\n                -86.964746,\n                31.637162\n              ],\n              [\n                -86.964183,\n                31.63652\n              ],\n              [\n                -86.964183,\n                31.635833\n              ],\n              [\n                -86.964879,\n                31.635237\n              ],\n              [\n                -86.965334,\n                31.63432\n              ],\n              [\n                -86.96761,\n                31.633242\n              ],\n              [\n                -86.966887,\n                31.631042\n              ],\n              [\n                -86.967636,\n                31.630217\n              ],\n              [\n                -86.967797,\n                31.629209\n              ],\n              [\n                -86.968599,\n                31.627238\n              ],\n              [\n                -86.968251,\n                31.626481\n              ],\n              [\n                -86.966724,\n                31.626046\n              ],\n              [\n                -86.965318,\n                31.625159\n              ],\n              [\n                -86.964849,\n                31.624458\n              ],\n              [\n                -86.964715,\n                31.623908\n              ],\n              [\n                -86.964527,\n                31.622418\n              ],\n              [\n                -86.964741,\n                31.621478\n              ],\n              [\n                -86.965062,\n                31.620653\n              ],\n              [\n                -86.965544,\n                31.619966\n              ],\n              [\n                -86.96632,\n                31.619255\n              ],\n              [\n                -86.966454,\n                31.618774\n              ],\n              [\n                -86.9664,\n                31.615657\n              ],\n              [\n                -86.966078,\n                31.615015\n              ],\n              [\n                -86.965649,\n                31.614649\n              ],\n              [\n                -86.9653,\n                31.614488\n              ],\n              [\n                -86.964309,\n                31.614512\n              ],\n              [\n                -86.963747,\n                31.614283\n              ],\n              [\n                -86.963158,\n                31.613733\n              ],\n              [\n                -86.962863,\n                31.61316\n              ],\n              [\n                -86.962863,\n                31.61151\n              ],\n              [\n                -86.961068,\n                31.608256\n              ],\n              [\n                -86.959836,\n                31.607019\n              ],\n              [\n                -86.959434,\n                31.606011\n              ],\n              [\n                -86.959193,\n                31.605759\n              ],\n              [\n                -86.958309,\n                31.605324\n              ],\n              [\n                -86.956461,\n                31.603651\n              ],\n              [\n                -86.956193,\n                31.602597\n              ],\n              [\n                -86.955738,\n                31.601772\n              ],\n              [\n                -86.955121,\n                31.599297\n              ],\n              [\n                -86.95405,\n                31.598907\n              ],\n              [\n                -86.953702,\n                31.598426\n              ],\n              [\n                -86.953434,\n                31.598357\n              ],\n              [\n                -86.952471,\n                31.598358\n              ],\n              [\n                -86.952096,\n                31.598106\n              ],\n              [\n                -86.951052,\n                31.598404\n              ],\n              [\n                -86.950944,\n                31.59767\n              ],\n              [\n                -86.949847,\n                31.597074\n              ],\n              [\n                -86.949552,\n                31.597029\n              ],\n              [\n                -86.949258,\n                31.597304\n              ],\n              [\n                -86.948749,\n                31.59735\n              ],\n              [\n                -86.948481,\n                31.59712\n              ],\n              [\n                -86.948481,\n                31.596731\n              ],\n              [\n                -86.948106,\n                31.596364\n              ],\n              [\n                -86.946634,\n                31.59586\n              ],\n              [\n                -86.946419,\n                31.595631\n              ],\n              [\n                -86.946418,\n                31.594714\n              ],\n              [\n                -86.945829,\n                31.5946\n              ],\n              [\n                -86.945535,\n                31.594714\n              ],\n              [\n                -86.945722,\n                31.595402\n              ],\n              [\n                -86.94516,\n                31.595562\n              ],\n              [\n                -86.942268,\n                31.594439\n              ],\n              [\n                -86.94184,\n                31.593798\n              ],\n              [\n                -86.941599,\n                31.592537\n              ],\n              [\n                -86.941117,\n                31.592881\n              ],\n              [\n                -86.940608,\n                31.592973\n              ],\n              [\n                -86.940126,\n                31.592675\n              ],\n              [\n                -86.940448,\n                31.591827\n              ],\n              [\n                -86.940448,\n                31.5913\n              ],\n              [\n                -86.938707,\n                31.589146\n              ],\n              [\n                -86.938306,\n                31.588825\n              ],\n              [\n                -86.936994,\n                31.588733\n              ],\n              [\n                -86.936833,\n                31.588596\n              ],\n              [\n                -86.936833,\n                31.588343\n              ],\n              [\n                -86.937342,\n                31.587587\n              ],\n              [\n                -86.937235,\n                31.587358\n              ],\n              [\n                -86.936352,\n                31.586877\n              ],\n              [\n                -86.935602,\n                31.586212\n              ],\n              [\n                -86.93512,\n                31.585731\n              ],\n              [\n                -86.934799,\n                31.584974\n              ],\n              [\n                -86.933942,\n                31.583943\n              ],\n              [\n                -86.933246,\n                31.583554\n              ],\n              [\n                -86.932818,\n                31.581743\n              ],\n              [\n                -86.932363,\n                31.581583\n              ],\n              [\n                -86.930462,\n                31.581789\n              ],\n              [\n                -86.929552,\n                31.581514\n              ],\n              [\n                -86.929124,\n                31.581628\n              ],\n              [\n                -86.928856,\n                31.582728\n              ],\n              [\n                -86.927464,\n                31.583003\n              ],\n              [\n                -86.927089,\n                31.583324\n              ],\n              [\n                -86.927892,\n                31.583897\n              ],\n              [\n                -86.927973,\n                31.584195\n              ],\n              [\n                -86.926527,\n                31.584264\n              ],\n              [\n                -86.925965,\n                31.584722\n              ],\n              [\n                -86.924492,\n                31.584905\n              ],\n              [\n                -86.924332,\n                31.585134\n              ],\n              [\n                -86.924465,\n                31.585913\n              ],\n              [\n                -86.924037,\n                31.586257\n              ],\n              [\n                -86.924144,\n                31.586395\n              ],\n              [\n                -86.924867,\n                31.586693\n              ],\n              [\n                -86.925938,\n                31.586784\n              ],\n              [\n                -86.926286,\n                31.586991\n              ],\n              [\n                -86.925964,\n                31.588091\n              ],\n              [\n                -86.925964,\n                31.588983\n              ],\n              [\n                -86.923528,\n                31.588709\n              ],\n              [\n                -86.918866,\n                31.587288\n              ],\n              [\n                -86.915785,\n                31.58669\n              ],\n              [\n                -86.915518,\n                31.586736\n              ],\n              [\n                -86.915302,\n                31.587011\n              ],\n              [\n                -86.915275,\n                31.587974\n              ],\n              [\n                -86.914792,\n                31.588455\n              ],\n              [\n                -86.914749,\n                31.587057\n              ],\n              [\n                -86.914983,\n                31.585476\n              ],\n              [\n                -86.913848,\n                31.584857\n              ],\n              [\n                -86.912904,\n                31.58465\n              ],\n              [\n                -86.910664,\n                31.585108\n              ],\n              [\n                -86.909827,\n                31.584994\n              ],\n              [\n                -86.90891,\n                31.5852\n              ],\n              [\n                -86.906804,\n                31.584375\n              ],\n              [\n                -86.906502,\n                31.58355\n              ],\n              [\n                -86.902781,\n                31.583984\n              ],\n              [\n                -86.901523,\n                31.583915\n              ],\n              [\n                -86.89898,\n                31.583319\n              ],\n              [\n                -86.896142,\n                31.583318\n              ],\n              [\n                -86.895285,\n                31.584188\n              ],\n              [\n                -86.894883,\n                31.585792\n              ],\n              [\n                -86.894882,\n                31.586824\n              ],\n              [\n                -86.893731,\n                31.586273\n              ],\n              [\n                -86.890065,\n                31.583797\n              ],\n              [\n                -86.888647,\n                31.582192\n              ],\n              [\n                -86.886855,\n                31.579648\n              ],\n              [\n                -86.884794,\n                31.57944\n              ],\n              [\n                -86.882866,\n                31.579715\n              ],\n              [\n                -86.880617,\n                31.579095\n              ],\n              [\n                -86.877726,\n                31.578796\n              ],\n              [\n                -86.875933,\n                31.577947\n              ],\n              [\n                -86.874545,\n                31.577844\n              ],\n              [\n                -86.874308,\n                31.576755\n              ],\n              [\n                -86.874441,\n                31.575472\n              ],\n              [\n                -86.8742,\n                31.574738\n              ],\n              [\n                -86.87533,\n                31.57389\n              ],\n              [\n                -86.875331,\n                31.5735\n              ],\n              [\n                -86.874038,\n                31.57302\n              ],\n              [\n                -86.874118,\n                31.57247\n              ],\n              [\n                -86.874563,\n                31.572103\n              ],\n              [\n                -86.874537,\n                31.571851\n              ],\n              [\n                -86.873903,\n                31.570981\n              ],\n              [\n                -86.87467,\n                31.570522\n              ],\n              [\n                -86.874683,\n                31.570087\n              ],\n              [\n                -86.873715,\n                31.569537\n              ],\n              [\n                -86.873607,\n                31.568942\n              ],\n              [\n                -86.873955,\n                31.568391\n              ],\n              [\n                -86.874549,\n                31.567956\n              ],\n              [\n                -86.874642,\n                31.566947\n              ],\n              [\n                -86.874462,\n                31.566764\n              ],\n              [\n                -86.873204,\n                31.566604\n              ],\n              [\n                -86.87283,\n                31.566375\n              ],\n              [\n                -86.872294,\n                31.566307\n              ],\n              [\n                -86.871598,\n                31.566605\n              ],\n              [\n                -86.871278,\n                31.567361\n              ],\n              [\n                -86.870448,\n                31.567797\n              ],\n              [\n                -86.870047,\n                31.567591\n              ],\n              [\n                -86.870287,\n                31.566766\n              ],\n              [\n                -86.869591,\n                31.566193\n              ],\n              [\n                -86.869591,\n                31.565827\n              ],\n              [\n                -86.869697,\n                31.564979\n              ],\n              [\n                -86.870205,\n                31.564428\n              ],\n              [\n                -86.870098,\n                31.564199\n              ],\n              [\n                -86.869322,\n                31.563741\n              ],\n              [\n                -86.868732,\n                31.563123\n              ],\n              [\n                -86.868705,\n                31.562618\n              ],\n              [\n                -86.868973,\n                31.56216\n              ],\n              [\n                -86.86841,\n                31.561679\n              ],\n              [\n                -86.867982,\n                31.560465\n              ],\n              [\n                -86.868276,\n                31.559754\n              ],\n              [\n                -86.868757,\n                31.559479\n              ],\n              [\n                -86.868784,\n                31.559318\n              ],\n              [\n                -86.868275,\n                31.559089\n              ],\n              [\n                -86.867523,\n                31.558289\n              ],\n              [\n                -86.867123,\n                31.555324\n              ],\n              [\n                -86.866668,\n                31.555056\n              ],\n              [\n                -86.866589,\n                31.554256\n              ],\n              [\n                -86.865655,\n                31.553776\n              ],\n              [\n                -86.865588,\n                31.553602\n              ],\n              [\n                -86.866129,\n                31.553044\n              ],\n              [\n                -86.866575,\n                31.553021\n              ],\n              [\n                -86.86712,\n                31.55364\n              ],\n              [\n                -86.86747,\n                31.553679\n              ],\n              [\n                -86.868244,\n                31.552743\n              ],\n              [\n                -86.867044,\n                31.552551\n              ],\n              [\n                -86.866826,\n                31.551203\n              ],\n              [\n                -86.866579,\n                31.550817\n              ],\n              [\n                -86.865913,\n                31.55033\n              ],\n              [\n                -86.86589,\n                31.550122\n              ],\n              [\n                -86.866591,\n                31.549625\n              ],\n              [\n                -86.865268,\n                31.549425\n              ],\n              [\n                -86.865059,\n                31.549056\n              ],\n              [\n                -86.865016,\n                31.548061\n              ],\n              [\n                -86.866302,\n                31.546981\n              ],\n              [\n                -86.866453,\n                31.546597\n              ],\n              [\n                -86.866254,\n                31.54642\n              ],\n              [\n                -86.865406,\n                31.546393\n              ],\n              [\n                -86.864863,\n                31.546121\n              ],\n              [\n                -86.864379,\n                31.545715\n              ],\n              [\n                -86.86414,\n                31.544934\n              ],\n              [\n                -86.863151,\n                31.543855\n              ],\n              [\n                -86.862644,\n                31.543786\n              ],\n              [\n                -86.861254,\n                31.544219\n              ],\n              [\n                -86.86104,\n                31.54415\n              ],\n              [\n                -86.861013,\n                31.543623\n              ],\n              [\n                -86.859836,\n                31.543371\n              ],\n              [\n                -86.85922,\n                31.543073\n              ],\n              [\n                -86.858658,\n                31.542478\n              ],\n              [\n                -86.858497,\n                31.542088\n              ],\n              [\n                -86.859032,\n                31.540829\n              ],\n              [\n                -86.858362,\n                31.540073\n              ],\n              [\n                -86.858335,\n                31.539431\n              ],\n              [\n                -86.857961,\n                31.539385\n              ],\n              [\n                -86.857158,\n                31.539867\n              ],\n              [\n                -86.856463,\n                31.539729\n              ],\n              [\n                -86.855418,\n                31.538378\n              ],\n              [\n                -86.854214,\n                31.538011\n              ],\n              [\n                -86.852528,\n                31.53721\n              ],\n              [\n                -86.852421,\n                31.537049\n              ],\n              [\n                -86.852528,\n                31.53627\n              ],\n              [\n                -86.850628,\n                31.535698\n              ],\n              [\n                -86.849825,\n                31.534988\n              ],\n              [\n                -86.84953,\n                31.534919\n              ],\n              [\n                -86.848888,\n                31.534919\n              ],\n              [\n                -86.848193,\n                31.535492\n              ],\n              [\n                -86.846828,\n                31.53602\n              ],\n              [\n                -86.84533,\n                31.535745\n              ],\n              [\n                -86.843777,\n                31.535814\n              ],\n              [\n                -86.84351,\n                31.535654\n              ],\n              [\n                -86.843456,\n                31.535173\n              ],\n              [\n                -86.842706,\n                31.5335\n              ],\n              [\n                -86.842144,\n                31.533019\n              ],\n              [\n                -86.842331,\n                31.532308\n              ],\n              [\n                -86.841769,\n                31.531116\n              ],\n              [\n                -86.840672,\n                31.530475\n              ],\n              [\n                -86.840404,\n                31.5302\n              ],\n              [\n                -86.840297,\n                31.52965\n              ],\n              [\n                -86.840003,\n                31.529444\n              ],\n              [\n                -86.839467,\n                31.527679\n              ],\n              [\n                -86.839253,\n                31.52635\n              ],\n              [\n                -86.839386,\n                31.525204\n              ],\n              [\n                -86.838022,\n                31.525204\n              ],\n              [\n                -86.83845,\n                31.5247\n              ],\n              [\n                -86.838476,\n                31.524242\n              ],\n              [\n                -86.838102,\n                31.524013\n              ],\n              [\n                -86.838048,\n                31.523623\n              ],\n              [\n                -86.838449,\n                31.522981\n              ],\n              [\n                -86.837272,\n                31.521698\n              ],\n              [\n                -86.837245,\n                31.521332\n              ],\n              [\n                -86.837378,\n                31.521171\n              ],\n              [\n                -86.838609,\n                31.520827\n              ],\n              [\n                -86.838716,\n                31.520575\n              ],\n              [\n                -86.838475,\n                31.520208\n              ],\n              [\n                -86.837699,\n                31.519681\n              ],\n              [\n                -86.835933,\n                31.519223\n              ],\n              [\n                -86.835024,\n                31.518696\n              ],\n              [\n                -86.834489,\n                31.518101\n              ],\n              [\n                -86.834248,\n                31.518032\n              ],\n              [\n                -86.833445,\n                31.518536\n              ],\n              [\n                -86.833338,\n                31.518192\n              ],\n              [\n                -86.833713,\n                31.517322\n              ],\n              [\n                -86.833445,\n                31.517253\n              ],\n              [\n                -86.832803,\n                31.517826\n              ],\n              [\n                -86.832455,\n                31.517826\n              ],\n              [\n                -86.832536,\n                31.517459\n              ],\n              [\n                -86.83299,\n                31.516932\n              ],\n              [\n                -86.832963,\n                31.516542\n              ],\n              [\n                -86.832669,\n                31.516267\n              ],\n              [\n                -86.832348,\n                31.516313\n              ],\n              [\n                -86.831867,\n                31.517047\n              ],\n              [\n                -86.831118,\n                31.517322\n              ],\n              [\n                -86.829673,\n                31.516772\n              ],\n              [\n                -86.829646,\n                31.515787\n              ],\n              [\n                -86.829512,\n                31.51558\n              ],\n              [\n                -86.828656,\n                31.51542\n              ],\n              [\n                -86.828041,\n                31.51636\n              ],\n              [\n                -86.827051,\n                31.516887\n              ],\n              [\n                -86.826944,\n                31.51636\n              ],\n              [\n                -86.827372,\n                31.515649\n              ],\n              [\n                -86.827265,\n                31.515374\n              ],\n              [\n                -86.826195,\n                31.515077\n              ],\n              [\n                -86.825928,\n                31.516039\n              ],\n              [\n                -86.824482,\n                31.51565\n              ],\n              [\n                -86.823733,\n                31.514664\n              ],\n              [\n                -86.823706,\n                31.513977\n              ],\n              [\n                -86.823974,\n                31.513427\n              ],\n              [\n                -86.824027,\n                31.512877\n              ],\n              [\n                -86.823358,\n                31.512418\n              ],\n              [\n                -86.822476,\n                31.512258\n              ],\n              [\n                -86.821914,\n                31.511937\n              ],\n              [\n                -86.821807,\n                31.511296\n              ],\n              [\n                -86.822181,\n                31.510883\n              ],\n              [\n                -86.822181,\n                31.510516\n              ],\n              [\n                -86.8217,\n                31.51015\n              ],\n              [\n                -86.820442,\n                31.510241\n              ],\n              [\n                -86.819827,\n                31.509943\n              ],\n              [\n                -86.819586,\n                31.509646\n              ],\n              [\n                -86.819827,\n                31.508568\n              ],\n              [\n                -86.819131,\n                31.507424\n              ],\n              [\n                -86.819131,\n                31.507057\n              ],\n              [\n                -86.819399,\n                31.506759\n              ],\n              [\n                -86.819426,\n                31.506415\n              ],\n              [\n                -86.819078,\n                31.505957\n              ],\n              [\n                -86.814156,\n                31.504307\n              ],\n              [\n                -86.813541,\n                31.503917\n              ],\n              [\n                -86.813514,\n                31.503734\n              ],\n              [\n                -86.812846,\n                31.503436\n              ],\n              [\n                -86.812418,\n                31.503574\n              ],\n              [\n                -86.812177,\n                31.503917\n              ],\n              [\n                -86.810331,\n                31.507217\n              ],\n              [\n                -86.809502,\n                31.510287\n              ],\n              [\n                -86.809127,\n                31.510952\n              ],\n              [\n                -86.808325,\n                31.511342\n              ],\n              [\n                -86.807924,\n                31.511365\n              ],\n              [\n                -86.806506,\n                31.510998\n              ],\n              [\n                -86.805677,\n                31.510539\n              ],\n              [\n                -86.804821,\n                31.509531\n              ],\n              [\n                -86.804687,\n                31.508706\n              ],\n              [\n                -86.805008,\n                31.507606\n              ],\n              [\n                -86.804982,\n                31.506988\n              ],\n              [\n                -86.803671,\n                31.505292\n              ],\n              [\n                -86.803671,\n                31.504559\n              ],\n              [\n                -86.804046,\n                31.503367\n              ],\n              [\n                -86.805116,\n                31.501534\n              ],\n              [\n                -86.806319,\n                31.49887\n              ],\n              [\n                -86.80656,\n                31.497586\n              ],\n              [\n                -86.806453,\n                31.495363\n              ],\n              [\n                -86.805971,\n                31.494607\n              ],\n              [\n                -86.80557,\n                31.494332\n              ],\n              [\n                -86.804848,\n                31.4944\n              ],\n              [\n                -86.804286,\n                31.494653\n              ],\n              [\n                -86.803617,\n                31.495317\n              ],\n              [\n                -86.802815,\n                31.496463\n              ],\n              [\n                -86.802093,\n                31.496669\n              ],\n              [\n                -86.800755,\n                31.496646\n              ],\n              [\n                -86.799472,\n                31.496348\n              ],\n              [\n                -86.798268,\n                31.495706\n              ],\n              [\n                -86.797653,\n                31.494766\n              ],\n              [\n                -86.797226,\n                31.493162\n              ],\n              [\n                -86.79661,\n                31.492589\n              ],\n              [\n                -86.79645,\n                31.491764\n              ],\n              [\n                -86.79728,\n                31.488968\n              ],\n              [\n                -86.797521,\n                31.487066\n              ],\n              [\n                -86.797815,\n                31.486333\n              ],\n              [\n                -86.797815,\n                31.485485\n              ],\n              [\n                -86.797441,\n                31.484408\n              ],\n              [\n                -86.797414,\n                31.483468\n              ],\n              [\n                -86.797762,\n                31.482597\n              ],\n              [\n                -86.797789,\n                31.481772\n              ],\n              [\n                -86.7968,\n                31.478655\n              ],\n              [\n                -86.796372,\n                31.477899\n              ],\n              [\n                -86.79426,\n                31.476202\n              ],\n              [\n                -86.793672,\n                31.474989\n              ],\n              [\n                -86.793352,\n                31.472834\n              ],\n              [\n                -86.793673,\n                31.47123\n              ],\n              [\n                -86.793192,\n                31.470222\n              ],\n              [\n                -86.791373,\n                31.467815\n              ],\n              [\n                -86.79132,\n                31.467036\n              ],\n              [\n                -86.791775,\n                31.465752\n              ],\n              [\n                -86.791747,\n                31.465119\n              ],\n              [\n                -86.790865,\n                31.464329\n              ],\n              [\n                -86.788698,\n                31.463596\n              ],\n              [\n                -86.787788,\n                31.463605\n              ],\n              [\n                -86.786717,\n                31.464006\n              ],\n              [\n                -86.783721,\n                31.464724\n              ],\n              [\n                -86.781606,\n                31.465664\n              ],\n              [\n                -86.781232,\n                31.465553\n              ],\n              [\n                -86.780724,\n                31.465171\n              ],\n              [\n                -86.77885,\n                31.462684\n              ],\n              [\n                -86.775881,\n                31.460045\n              ],\n              [\n                -86.775372,\n                31.459367\n              ],\n              [\n                -86.775372,\n                31.458733\n              ],\n              [\n                -86.77556,\n                31.458485\n              ],\n              [\n                -86.775879,\n                31.458259\n              ],\n              [\n                -86.776414,\n                31.458173\n              ],\n              [\n                -86.777937,\n                31.458948\n              ],\n              [\n                -86.779486,\n                31.459262\n              ],\n              [\n                -86.780261,\n                31.45927\n              ],\n              [\n                -86.782211,\n                31.458832\n              ],\n              [\n                -86.784909,\n                31.457535\n              ],\n              [\n                -86.786325,\n                31.456432\n              ],\n              [\n                -86.786752,\n                31.455572\n              ],\n              [\n                -86.786886,\n                31.454893\n              ],\n              [\n                -86.786888,\n                31.453592\n              ],\n              [\n                -86.786656,\n                31.452528\n              ],\n              [\n                -86.78555,\n                31.45035\n              ],\n              [\n                -86.784481,\n                31.449135\n              ],\n              [\n                -86.784294,\n                31.448379\n              ],\n              [\n                -86.784401,\n                31.44799\n              ],\n              [\n                -86.784989,\n                31.447394\n              ],\n              [\n                -86.785711,\n                31.447119\n              ],\n              [\n                -86.786674,\n                31.446432\n              ],\n              [\n                -86.787315,\n                31.445125\n              ],\n              [\n                -86.788065,\n                31.443018\n              ],\n              [\n                -86.788252,\n                31.440497\n              ],\n              [\n                -86.787985,\n                31.439557\n              ],\n              [\n                -86.78721,\n                31.439076\n              ],\n              [\n                -86.786729,\n                31.439099\n              ],\n              [\n                -86.78558,\n                31.43958\n              ],\n              [\n                -86.784135,\n                31.439809\n              ],\n              [\n                -86.78336,\n                31.440175\n              ],\n              [\n                -86.783199,\n                31.440656\n              ],\n              [\n                -86.782905,\n                31.440908\n              ],\n              [\n                -86.782745,\n                31.44265\n              ],\n              [\n                -86.781355,\n                31.444368\n              ],\n              [\n                -86.779083,\n                31.445032\n              ],\n              [\n                -86.777638,\n                31.444733\n              ],\n              [\n                -86.776649,\n                31.444344\n              ],\n              [\n                -86.776088,\n                31.443748\n              ],\n              [\n                -86.775981,\n                31.44322\n              ],\n              [\n                -86.776223,\n                31.441136\n              ],\n              [\n                -86.775583,\n                31.437331\n              ],\n              [\n                -86.775583,\n                31.43575\n              ],\n              [\n                -86.774862,\n                31.434971\n              ],\n              [\n                -86.773152,\n                31.433962\n              ],\n              [\n                -86.771362,\n                31.432563\n              ],\n              [\n                -86.769331,\n                31.431967\n              ],\n              [\n                -86.768636,\n                31.432035\n              ],\n              [\n                -86.768208,\n                31.432264\n              ],\n              [\n                -86.768181,\n                31.432562\n              ],\n              [\n                -86.768422,\n                31.433089\n              ],\n              [\n                -86.768956,\n                31.433525\n              ],\n              [\n                -86.769998,\n                31.433984\n              ],\n              [\n                -86.771361,\n                31.43419\n              ],\n              [\n                -86.772617,\n                31.43497\n              ],\n              [\n                -86.772643,\n                31.436047\n              ],\n              [\n                -86.77144,\n                31.436734\n              ],\n              [\n                -86.770718,\n                31.436871\n              ],\n              [\n                -86.769382,\n                31.436665\n              ],\n              [\n                -86.767458,\n                31.435587\n              ],\n              [\n                -86.766416,\n                31.43467\n              ],\n              [\n                -86.765722,\n                31.433317\n              ],\n              [\n                -86.765268,\n                31.43279\n              ],\n              [\n                -86.764066,\n                31.432125\n              ],\n              [\n                -86.762783,\n                31.431987\n              ],\n              [\n                -86.76019,\n                31.432101\n              ],\n              [\n                -86.757705,\n                31.431435\n              ],\n              [\n                -86.755861,\n                31.431274\n              ],\n              [\n                -86.755567,\n                31.43109\n              ],\n              [\n                -86.755407,\n                31.430746\n              ],\n              [\n                -86.754739,\n                31.428821\n              ],\n              [\n                -86.754258,\n                31.428592\n              ],\n              [\n                -86.753804,\n                31.428568\n              ],\n              [\n                -86.753189,\n                31.428843\n              ],\n              [\n                -86.752734,\n                31.429714\n              ],\n              [\n                -86.752012,\n                31.430286\n              ],\n              [\n                -86.751531,\n                31.430378\n              ],\n              [\n                -86.751103,\n                31.430217\n              ],\n              [\n                -86.750596,\n                31.429667\n              ],\n              [\n                -86.750265,\n                31.428727\n              ],\n              [\n                -86.749683,\n                31.42859\n              ],\n              [\n                -86.748107,\n                31.427032\n              ],\n              [\n                -86.747572,\n                31.425703\n              ],\n              [\n                -86.746395,\n                31.424856\n              ],\n              [\n                -86.744283,\n                31.423871\n              ],\n              [\n                -86.740192,\n                31.420229\n              ],\n              [\n                -86.739791,\n                31.419679\n              ],\n              [\n                -86.739469,\n                31.417525\n              ],\n              [\n                -86.739015,\n                31.416402\n              ],\n              [\n                -86.737705,\n                31.415761\n              ],\n              [\n                -86.734418,\n                31.415006\n              ],\n              [\n                -86.733643,\n                31.414686\n              ],\n              [\n                -86.732866,\n                31.414182\n              ],\n              [\n                -86.730476,\n                31.411974\n              ],\n              [\n                -86.730393,\n                31.411607\n              ],\n              [\n                -86.730577,\n                31.411031\n              ],\n              [\n                -86.731029,\n                31.410938\n              ],\n              [\n                -86.732145,\n                31.411163\n              ],\n              [\n                -86.732384,\n                31.41107\n              ],\n              [\n                -86.732701,\n                31.410541\n              ],\n              [\n                -86.732722,\n                31.409781\n              ],\n              [\n                -86.7299,\n                31.408304\n              ],\n              [\n                -86.729788,\n                31.407609\n              ],\n              [\n                -86.730111,\n                31.407079\n              ],\n              [\n                -86.730164,\n                31.406575\n              ],\n              [\n                -86.72979,\n                31.405635\n              ],\n              [\n                -86.729628,\n                31.403023\n              ],\n              [\n                -86.729521,\n                31.402633\n              ],\n              [\n                -86.72912,\n                31.402175\n              ],\n              [\n                -86.728425,\n                31.401969\n              ],\n              [\n                -86.727704,\n                31.401969\n              ],\n              [\n                -86.724097,\n                31.402497\n              ],\n              [\n                -86.722547,\n                31.401993\n              ],\n              [\n                -86.72212,\n                31.401512\n              ],\n              [\n                -86.721665,\n                31.400573\n              ],\n              [\n                -86.721798,\n                31.400206\n              ],\n              [\n                -86.72276,\n                31.399358\n              ],\n              [\n                -86.725431,\n                31.397913\n              ],\n              [\n                -86.725992,\n                31.397111\n              ],\n              [\n                -86.726205,\n                31.396034\n              ],\n              [\n                -86.726097,\n                31.393788\n              ],\n              [\n                -86.725803,\n                31.392711\n              ],\n              [\n                -86.72476,\n                31.390029\n              ],\n              [\n                -86.723236,\n                31.387005\n              ],\n              [\n                -86.723208,\n                31.386409\n              ],\n              [\n                -86.723742,\n                31.385973\n              ],\n              [\n                -86.724116,\n                31.38595\n              ],\n              [\n                -86.724972,\n                31.386248\n              ],\n              [\n                -86.726228,\n                31.387462\n              ],\n              [\n                -86.726763,\n                31.387622\n              ],\n              [\n                -86.72711,\n                31.387485\n              ],\n              [\n                -86.727804,\n                31.386041\n              ],\n              [\n                -86.728097,\n                31.384895\n              ],\n              [\n                -86.728097,\n                31.383818\n              ],\n              [\n                -86.727748,\n                31.382718\n              ],\n              [\n                -86.726572,\n                31.380976\n              ],\n              [\n                -86.726412,\n                31.380449\n              ],\n              [\n                -86.726518,\n                31.38006\n              ],\n              [\n                -86.726865,\n                31.379717\n              ],\n              [\n                -86.729029,\n                31.379624\n              ],\n              [\n                -86.729964,\n                31.379211\n              ],\n              [\n                -86.730444,\n                31.37857\n              ],\n              [\n                -86.730337,\n                31.377905\n              ],\n              [\n                -86.726303,\n                31.375167\n              ],\n              [\n                -86.726114,\n                31.374304\n              ],\n              [\n                -86.726434,\n                31.372998\n              ],\n              [\n                -86.727449,\n                31.371164\n              ],\n              [\n                -86.727448,\n                31.370385\n              ],\n              [\n                -86.727074,\n                31.369858\n              ],\n              [\n                -86.725605,\n                31.368529\n              ],\n              [\n                -86.724615,\n                31.36594\n              ],\n              [\n                -86.724054,\n                31.363167\n              ],\n              [\n                -86.72392,\n                31.362869\n              ],\n              [\n                -86.723012,\n                31.362021\n              ],\n              [\n                -86.723758,\n                31.359523\n              ],\n              [\n                -86.724479,\n                31.358125\n              ],\n              [\n                -86.725012,\n                31.35448\n              ],\n              [\n                -86.726026,\n                31.352647\n              ],\n              [\n                -86.726052,\n                31.352326\n              ],\n              [\n                -86.725598,\n                31.351799\n              ],\n              [\n                -86.725278,\n                31.351684\n              ],\n              [\n                -86.723435,\n                31.351731\n              ],\n              [\n                -86.7221,\n                31.352396\n              ],\n              [\n                -86.7217,\n                31.352923\n              ],\n              [\n                -86.72162,\n                31.35384\n              ],\n              [\n                -86.721086,\n                31.353977\n              ],\n              [\n                -86.72007,\n                31.353313\n              ],\n              [\n                -86.719349,\n                31.352534\n              ],\n              [\n                -86.717906,\n                31.351801\n              ],\n              [\n                -86.717025,\n                31.351893\n              ],\n              [\n                -86.71553,\n                31.352718\n              ],\n              [\n                -86.714782,\n                31.352604\n              ],\n              [\n                -86.714275,\n                31.352031\n              ],\n              [\n                -86.714167,\n                31.350771\n              ],\n              [\n                -86.713794,\n                31.350313\n              ],\n              [\n                -86.710936,\n                31.349672\n              ],\n              [\n                -86.709708,\n                31.349901\n              ],\n              [\n                -86.708427,\n                31.353728\n              ],\n              [\n                -86.707652,\n                31.35382\n              ],\n              [\n                -86.706317,\n                31.353041\n              ],\n              [\n                -86.70597,\n                31.352583\n              ],\n              [\n                -86.705676,\n                31.35201\n              ],\n              [\n                -86.705675,\n                31.348687\n              ],\n              [\n                -86.705862,\n                31.34816\n              ],\n              [\n                -86.70677,\n                31.347037\n              ],\n              [\n                -86.706716,\n                31.346578\n              ],\n              [\n                -86.706102,\n                31.346166\n              ],\n              [\n                -86.702791,\n                31.345387\n              ],\n              [\n                -86.701402,\n                31.344333\n              ],\n              [\n                -86.700147,\n                31.343073\n              ],\n              [\n                -86.699693,\n                31.342546\n              ],\n              [\n                -86.699586,\n                31.341996\n              ],\n              [\n                -86.699506,\n                31.340804\n              ],\n              [\n                -86.699746,\n                31.340093\n              ],\n              [\n                -86.700867,\n                31.338076\n              ],\n              [\n                -86.701642,\n                31.337503\n              ],\n              [\n                -86.701139,\n                31.324358\n              ],\n              [\n                -86.70113,\n                31.315663\n              ],\n              [\n                -86.704306,\n                31.313394\n              ],\n              [\n                -86.70524,\n                31.311812\n              ],\n              [\n                -86.705988,\n                31.311262\n              ],\n              [\n                -86.707509,\n                31.310597\n              ],\n              [\n                -86.708363,\n                31.309589\n              ],\n              [\n                -86.708763,\n                31.309474\n              ],\n              [\n                -86.710659,\n                31.309543\n              ],\n              [\n                -86.710739,\n                31.309864\n              ],\n              [\n                -86.712447,\n                31.311582\n              ],\n              [\n                -86.713462,\n                31.312109\n              ],\n              [\n                -86.715891,\n                31.312773\n              ],\n              [\n                -86.716505,\n                31.313323\n              ],\n              [\n                -86.716452,\n                31.314011\n              ],\n              [\n                -86.715785,\n                31.314882\n              ],\n              [\n                -86.715892,\n                31.315134\n              ],\n              [\n                -86.716826,\n                31.315661\n              ],\n              [\n                -86.717253,\n                31.316142\n              ],\n              [\n                -86.717334,\n                31.317563\n              ],\n              [\n                -86.717494,\n                31.318021\n              ],\n              [\n                -86.718215,\n                31.318731\n              ],\n              [\n                -86.719176,\n                31.31864\n              ],\n              [\n                -86.719683,\n                31.318387\n              ],\n              [\n                -86.721927,\n                31.318593\n              ],\n              [\n                -86.722942,\n                31.319646\n              ],\n              [\n                -86.723632,\n                31.319873\n              ],\n              [\n                -86.724667,\n                31.320693\n              ],\n              [\n                -86.725384,\n                31.320805\n              ],\n              [\n                -86.726101,\n                31.321329\n              ],\n              [\n                -86.726392,\n                31.321762\n              ],\n              [\n                -86.727295,\n                31.322057\n              ],\n              [\n                -86.727905,\n                31.322673\n              ],\n              [\n                -86.731305,\n                31.323303\n              ],\n              [\n                -86.731889,\n                31.323164\n              ],\n              [\n                -86.732367,\n                31.32268\n              ],\n              [\n                -86.732924,\n                31.322586\n              ],\n              [\n                -86.734253,\n                31.322788\n              ],\n              [\n                -86.73474,\n                31.323031\n              ],\n              [\n                -86.735502,\n                31.321827\n              ],\n              [\n                -86.737666,\n                31.322129\n              ],\n              [\n                -86.740766,\n                31.321671\n              ],\n              [\n                -86.742346,\n                31.322446\n              ],\n              [\n                -86.743551,\n                31.322495\n              ],\n              [\n                -86.744008,\n                31.322367\n              ],\n              [\n                -86.743534,\n                31.320316\n              ],\n              [\n                -86.745215,\n                31.319828\n              ],\n              [\n                -86.747161,\n                31.318628\n              ],\n              [\n                -86.749601,\n                31.317946\n              ],\n              [\n                -86.752166,\n                31.316634\n              ],\n              [\n                -86.753563,\n                31.315654\n              ],\n              [\n                -86.756581,\n                31.313168\n              ],\n              [\n                -86.758881,\n                31.309562\n              ],\n              [\n                -86.760044,\n                31.308384\n              ],\n              [\n                -86.7599,\n                31.306236\n              ],\n              [\n                -86.757967,\n                31.301655\n              ],\n              [\n                -86.757431,\n                31.299153\n              ],\n              [\n                -86.757386,\n                31.297701\n              ],\n              [\n                -86.757782,\n                31.29471\n              ],\n              [\n                -86.759516,\n                31.292024\n              ],\n              [\n                -86.764082,\n                31.288519\n              ],\n              [\n                -86.764349,\n                31.28813\n              ],\n              [\n                -86.76467,\n                31.285632\n              ],\n              [\n                -86.764725,\n                31.282699\n              ],\n              [\n                -86.764299,\n                31.281438\n              ],\n              [\n                -86.76438,\n                31.279192\n              ],\n              [\n                -86.764167,\n                31.278505\n              ],\n              [\n                -86.763286,\n                31.27745\n              ],\n              [\n                -86.762566,\n                31.276052\n              ],\n              [\n                -86.7611,\n                31.274378\n              ],\n              [\n                -86.761207,\n                31.272934\n              ],\n              [\n                -86.761101,\n                31.272453\n              ],\n              [\n                -86.75913,\n                31.270891\n              ],\n              [\n                -86.75891,\n                31.269476\n              ],\n              [\n                -86.758543,\n                31.268805\n              ],\n              [\n                -86.75724,\n                31.26932\n              ],\n              [\n                -86.756288,\n                31.269942\n              ],\n              [\n                -86.755509,\n                31.270713\n              ],\n              [\n                -86.752536,\n                31.276337\n              ],\n              [\n                -86.750382,\n                31.278805\n              ],\n              [\n                -86.749075,\n                31.279853\n              ],\n              [\n                -86.744701,\n                31.282557\n              ],\n              [\n                -86.744052,\n                31.283418\n              ],\n              [\n                -86.743035,\n                31.285282\n              ],\n              [\n                -86.739785,\n                31.287592\n              ],\n              [\n                -86.738687,\n                31.288859\n              ],\n              [\n                -86.737647,\n                31.287869\n              ],\n              [\n                -86.736666,\n                31.287759\n              ],\n              [\n                -86.735872,\n                31.288084\n              ],\n              [\n                -86.735231,\n                31.288084\n              ],\n              [\n                -86.73331,\n                31.287604\n              ],\n              [\n                -86.732642,\n                31.287581\n              ],\n              [\n                -86.730588,\n                31.288338\n              ],\n              [\n                -86.727413,\n                31.290998\n              ],\n              [\n                -86.726266,\n                31.291319\n              ],\n              [\n                -86.725625,\n                31.291158\n              ],\n              [\n                -86.725038,\n                31.290425\n              ],\n              [\n                -86.725438,\n                31.28866\n              ],\n              [\n                -86.725064,\n                31.287446\n              ],\n              [\n                -86.726024,\n                31.287079\n              ],\n              [\n                -86.727652,\n                31.286872\n              ],\n              [\n                -86.727999,\n                31.286666\n              ],\n              [\n                -86.728212,\n                31.286299\n              ],\n              [\n                -86.728212,\n                31.285544\n              ],\n              [\n                -86.727464,\n                31.28426\n              ],\n              [\n                -86.72637,\n                31.283321\n              ],\n              [\n                -86.724475,\n                31.282313\n              ],\n              [\n                -86.724368,\n                31.282153\n              ],\n              [\n                -86.724768,\n                31.281007\n              ],\n              [\n                -86.724233,\n                31.279723\n              ],\n              [\n                -86.723565,\n                31.278876\n              ],\n              [\n                -86.722657,\n                31.278234\n              ],\n              [\n                -86.720976,\n                31.277983\n              ],\n              [\n                -86.720736,\n                31.277593\n              ],\n              [\n                -86.720843,\n                31.27702\n              ],\n              [\n                -86.724043,\n                31.273856\n              ],\n              [\n                -86.723189,\n                31.273238\n              ],\n              [\n                -86.723029,\n                31.272917\n              ],\n              [\n                -86.722939,\n                31.27117\n              ],\n              [\n                -86.723147,\n                31.270296\n              ],\n              [\n                -86.722664,\n                31.269836\n              ],\n              [\n                -86.721483,\n                31.269146\n              ],\n              [\n                -86.721505,\n                31.268341\n              ],\n              [\n                -86.721096,\n                31.266731\n              ],\n              [\n                -86.720828,\n                31.266524\n              ],\n              [\n                -86.720245,\n                31.265506\n              ],\n              [\n                -86.721364,\n                31.264414\n              ],\n              [\n                -86.727037,\n                31.261524\n              ],\n              [\n                -86.729424,\n                31.260955\n              ],\n              [\n                -86.73146,\n                31.261173\n              ],\n              [\n                -86.732221,\n                31.261082\n              ],\n              [\n                -86.734251,\n                31.260501\n              ],\n              [\n                -86.735013,\n                31.260025\n              ],\n              [\n                -86.736148,\n                31.260618\n              ],\n              [\n                -86.736758,\n                31.260729\n              ],\n              [\n                -86.738669,\n                31.260121\n              ],\n              [\n                -86.74005,\n                31.260251\n              ],\n              [\n                -86.740582,\n                31.260133\n              ],\n              [\n                -86.741746,\n                31.258931\n              ],\n              [\n                -86.742357,\n                31.258745\n              ],\n              [\n                -86.743419,\n                31.259059\n              ],\n              [\n                -86.743604,\n                31.259309\n              ],\n              [\n                -86.743467,\n                31.26006\n              ],\n              [\n                -86.743838,\n                31.260516\n              ],\n              [\n                -86.744741,\n                31.260464\n              ],\n              [\n                -86.744847,\n                31.260052\n              ],\n              [\n                -86.74578,\n                31.259249\n              ],\n              [\n                -86.746607,\n                31.258836\n              ],\n              [\n                -86.748448,\n                31.258262\n              ],\n              [\n                -86.749009,\n                31.258308\n              ],\n              [\n                -86.749382,\n                31.258399\n              ],\n              [\n                -86.749623,\n                31.258789\n              ],\n              [\n                -86.75025,\n                31.259086\n              ],\n              [\n                -86.750437,\n                31.259682\n              ],\n              [\n                -86.751049,\n                31.260645\n              ],\n              [\n                -86.752116,\n                31.261517\n              ],\n              [\n                -86.753103,\n                31.261517\n              ],\n              [\n                -86.754277,\n                31.261151\n              ],\n              [\n                -86.754624,\n                31.261335\n              ],\n              [\n                -86.75481,\n                31.26161\n              ],\n              [\n                -86.754676,\n                31.263924\n              ],\n              [\n                -86.754862,\n                31.264772\n              ],\n              [\n                -86.755582,\n                31.265598\n              ],\n              [\n                -86.756462,\n                31.266034\n              ],\n              [\n                -86.757129,\n                31.266149\n              ],\n              [\n                -86.757876,\n                31.26608\n              ],\n              [\n                -86.759584,\n                31.26521\n              ],\n              [\n                -86.761319,\n                31.262529\n              ],\n              [\n                -86.76164,\n                31.262277\n              ],\n              [\n                -86.761667,\n                31.261979\n              ],\n              [\n                -86.76212,\n                31.26159\n              ],\n              [\n                -86.763961,\n                31.261293\n              ],\n              [\n                -86.827502,\n                31.261911\n              ],\n              [\n                -86.871022,\n                31.261902\n              ],\n              [\n                -86.870452,\n                31.265111\n              ],\n              [\n                -86.870508,\n                31.265803\n              ],\n              [\n                -86.873552,\n                31.272211\n              ],\n              [\n                -86.875011,\n                31.273642\n              ],\n              [\n                -86.877085,\n                31.276434\n              ],\n              [\n                -86.888569,\n                31.27349\n              ],\n              [\n                -86.889742,\n                31.273371\n              ],\n              [\n                -86.896535,\n                31.274229\n              ],\n              [\n                -86.897462,\n                31.274601\n              ],\n              [\n                -86.901082,\n                31.276813\n              ],\n              [\n                -86.899022,\n                31.279731\n              ],\n              [\n                -86.898647,\n                31.279893\n              ],\n              [\n                -86.896083,\n                31.280033\n              ],\n              [\n                -86.89494,\n                31.280794\n              ],\n              [\n                -86.895262,\n                31.284526\n              ],\n              [\n                -86.895152,\n                31.285845\n              ],\n              [\n                -86.893037,\n                31.289288\n              ],\n              [\n                -86.891698,\n                31.29207\n              ],\n              [\n                -86.891119,\n                31.292797\n              ],\n              [\n                -86.888522,\n                31.294718\n              ],\n              [\n                -86.884814,\n                31.296071\n              ],\n              [\n                -86.882076,\n                31.297708\n              ],\n              [\n                -86.877941,\n                31.299496\n              ],\n              [\n                -86.877552,\n                31.299833\n              ],\n              [\n                -86.878593,\n                31.300682\n              ],\n              [\n                -86.879109,\n                31.301451\n              ],\n              [\n                -86.880613,\n                31.306971\n              ],\n              [\n                -86.881319,\n                31.308478\n              ],\n              [\n                -86.886935,\n                31.316066\n              ],\n              [\n                -86.888351,\n                31.317446\n              ],\n              [\n                -86.893027,\n                31.321241\n              ],\n              [\n                -86.893719,\n                31.322083\n              ],\n              [\n                -86.895064,\n                31.324305\n              ],\n              [\n                -86.896287,\n                31.325637\n              ],\n              [\n                -86.897111,\n                31.326166\n              ],\n              [\n                -86.900029,\n                31.327221\n              ],\n              [\n                -86.901081,\n                31.327973\n              ],\n              [\n                -86.901739,\n                31.328673\n              ],\n              [\n                -86.902227,\n                31.329614\n              ],\n              [\n                -86.903182,\n                31.3329\n              ],\n              [\n                -86.903849,\n                31.337638\n              ],\n              [\n                -86.905362,\n                31.340282\n              ],\n              [\n                -86.907602,\n                31.340702\n              ],\n              [\n                -86.909042,\n                31.341249\n              ],\n              [\n                -86.909736,\n                31.341237\n              ],\n              [\n                -86.911043,\n                31.340706\n              ],\n              [\n                -86.911923,\n                31.340147\n              ],\n              [\n                -86.915844,\n                31.336217\n              ],\n              [\n                -86.917658,\n                31.335602\n              ],\n              [\n                -86.91717,\n                31.333192\n              ],\n              [\n                -86.91347,\n                31.321437\n              ],\n              [\n                -86.913336,\n                31.320406\n              ],\n              [\n                -86.91387,\n                31.320337\n              ],\n              [\n                -86.914538,\n                31.319673\n              ],\n              [\n                -86.915419,\n                31.318023\n              ],\n              [\n                -86.91622,\n                31.315868\n              ],\n              [\n                -86.919318,\n                31.312799\n              ],\n              [\n                -86.919905,\n                31.311722\n              ],\n              [\n                -86.919799,\n                31.309934\n              ],\n              [\n                -86.919612,\n                31.309384\n              ],\n              [\n                -86.919612,\n                31.307848\n              ],\n              [\n                -86.919853,\n                31.306084\n              ],\n              [\n                -86.921281,\n                31.303568\n              ],\n              [\n                -86.923146,\n                31.296611\n              ],\n              [\n                -86.923635,\n                31.295453\n              ],\n              [\n                -86.925781,\n                31.291794\n              ],\n              [\n                -86.926153,\n                31.289654\n              ],\n              [\n                -86.931555,\n                31.291451\n              ],\n              [\n                -86.933073,\n                31.291677\n              ],\n              [\n                -86.941279,\n                31.290688\n              ],\n              [\n                -86.948782,\n                31.289352\n              ],\n              [\n                -86.950744,\n                31.2894\n              ],\n              [\n                -86.956328,\n                31.290778\n              ],\n              [\n                -86.972996,\n                31.298051\n              ],\n              [\n                -86.977942,\n                31.299299\n              ],\n              [\n                -86.981368,\n                31.299649\n              ],\n              [\n                -86.980937,\n                31.300599\n              ],\n              [\n                -86.9809,\n                31.30281\n              ],\n              [\n                -86.980598,\n                31.303875\n              ],\n              [\n                -86.975966,\n                31.309626\n              ],\n              [\n                -86.975385,\n                31.310851\n              ],\n              [\n                -86.97542,\n                31.316735\n              ],\n              [\n                -86.975644,\n                31.319544\n              ],\n              [\n                -86.976333,\n                31.319666\n              ],\n              [\n                -86.98036,\n                31.319624\n              ],\n              [\n                -86.981103,\n                31.31913\n              ],\n              [\n                -86.985274,\n                31.31761\n              ],\n              [\n                -86.988225,\n                31.316147\n              ],\n              [\n                -86.99287,\n                31.316136\n              ],\n              [\n                -86.992984,\n                31.315636\n              ],\n              [\n                -86.993591,\n                31.314832\n              ],\n              [\n                -86.993615,\n                31.314331\n              ],\n              [\n                -86.992753,\n                31.312165\n              ],\n              [\n                -86.992642,\n                31.311478\n              ],\n              [\n                -86.993451,\n                31.309167\n              ],\n              [\n                -86.995977,\n                31.307391\n              ],\n              [\n                -86.997469,\n                31.307152\n              ],\n              [\n                -86.998406,\n                31.306353\n              ],\n              [\n                -86.999972,\n                31.305411\n              ],\n              [\n                -87.001923,\n                31.303786\n              ],\n              [\n                -87.002961,\n                31.304429\n              ],\n              [\n                -87.003972,\n                31.304585\n              ],\n              [\n                -87.00479,\n                31.304357\n              ],\n              [\n                -87.008525,\n                31.302549\n              ],\n              [\n                -87.010247,\n                31.301909\n              ],\n              [\n                -87.015201,\n                31.301838\n              ],\n              [\n                -87.016357,\n                31.301554\n              ],\n              [\n                -87.017216,\n                31.301156\n              ],\n              [\n                -87.022895,\n                31.301182\n              ],\n              [\n                -87.023471,\n                31.302347\n              ],\n              [\n                -87.023156,\n                31.316\n              ],\n              [\n                -87.027469,\n                31.315991\n              ],\n              [\n                -87.027645,\n                31.346666\n              ],\n              [\n                -87.027378,\n                31.349973\n              ],\n              [\n                -87.028076,\n                31.350091\n              ],\n              [\n                -87.028547,\n                31.350657\n              ],\n              [\n                -87.029226,\n                31.35055\n              ],\n              [\n                -87.029747,\n                31.351038\n              ],\n              [\n                -87.030651,\n                31.351157\n              ],\n              [\n                -87.031237,\n                31.352242\n              ],\n              [\n                -87.032222,\n                31.352818\n              ],\n              [\n                -87.033334,\n                31.353765\n              ],\n              [\n                -87.035598,\n                31.354281\n              ],\n              [\n                -87.037303,\n                31.354336\n              ],\n              [\n                -87.040652,\n                31.355475\n              ],\n              [\n                -87.042535,\n                31.356569\n              ],\n              [\n                -87.044469,\n                31.357075\n              ],\n              [\n                -87.045027,\n                31.357936\n              ],\n              [\n                -87.046411,\n                31.359235\n              ],\n              [\n                -87.046767,\n                31.360185\n              ],\n              [\n                -87.047412,\n                31.360914\n              ],\n              [\n                -87.047505,\n                31.3617\n              ],\n              [\n                -87.048339,\n                31.36261\n              ],\n              [\n                -87.049522,\n                31.361929\n              ],\n              [\n                -87.05228,\n                31.360946\n              ],\n              [\n                -87.053803,\n                31.359828\n              ],\n              [\n                -87.054699,\n                31.358721\n              ],\n              [\n                -87.055051,\n                31.357742\n              ],\n              [\n                -87.055764,\n                31.353686\n              ],\n              [\n                -87.056091,\n                31.350606\n              ],\n              [\n                -87.056523,\n                31.349057\n              ],\n              [\n                -87.060018,\n                31.349843\n              ],\n              [\n                -87.064603,\n                31.351212\n              ],\n              [\n                -87.070189,\n                31.353567\n              ],\n              [\n                -87.07309,\n                31.355317\n              ],\n              [\n                -87.068122,\n                31.358376\n              ],\n              [\n                -87.061082,\n                31.363745\n              ]\n            ],\n            [\n              [\n                -86.824213,\n                31.274995\n              ],\n              [\n                -86.823886,\n                31.277248\n              ],\n              [\n                -86.823001,\n                31.279791\n              ],\n              [\n                -86.82293,\n                31.280604\n              ],\n              [\n                -86.823065,\n                31.281315\n              ],\n              [\n                -86.799263,\n                31.300056\n              ],\n              [\n                -86.799654,\n                31.300056\n              ],\n              [\n                -86.800241,\n                31.300697\n              ],\n              [\n                -86.801656,\n                31.300537\n              ],\n              [\n                -86.80267,\n                31.301019\n              ],\n              [\n                -86.803337,\n                31.301569\n              ],\n              [\n                -86.805499,\n                31.301798\n              ],\n              [\n                -86.807287,\n                31.302394\n              ],\n              [\n                -86.807527,\n                31.302302\n              ],\n              [\n                -86.808035,\n                31.301615\n              ],\n              [\n                -86.807928,\n                31.300492\n              ],\n              [\n                -86.808408,\n                31.300285\n              ],\n              [\n                -86.810196,\n                31.301156\n              ],\n              [\n                -86.811425,\n                31.30134\n              ],\n              [\n                -86.812626,\n                31.301775\n              ],\n              [\n                -86.814281,\n                31.301867\n              ],\n              [\n                -86.814895,\n                31.302096\n              ],\n              [\n                -86.815589,\n                31.302875\n              ],\n              [\n                -86.816016,\n                31.302967\n              ],\n              [\n                -86.816443,\n                31.302921\n              ],\n              [\n                -86.81703,\n                31.302554\n              ],\n              [\n                -86.819859,\n                31.301844\n              ],\n              [\n                -86.820393,\n                31.301454\n              ],\n              [\n                -86.821167,\n                31.301317\n              ],\n              [\n                -86.822101,\n                31.300789\n              ],\n              [\n                -86.822635,\n                31.300881\n              ],\n              [\n                -86.823329,\n                31.301912\n              ],\n              [\n                -86.823596,\n                31.301981\n              ],\n              [\n                -86.824503,\n                31.301408\n              ],\n              [\n                -86.824877,\n                31.301362\n              ],\n              [\n                -86.825678,\n                31.301683\n              ],\n              [\n                -86.827519,\n                31.301568\n              ],\n              [\n                -86.829078,\n                31.301263\n              ],\n              [\n                -86.831208,\n                31.301793\n              ],\n              [\n                -86.831109,\n                31.299229\n              ],\n              [\n                -86.831215,\n                31.298527\n              ],\n              [\n                -86.844877,\n                31.298424\n              ],\n              [\n                -86.845094,\n                31.297616\n              ],\n              [\n                -86.845328,\n                31.295204\n              ],\n              [\n                -86.846331,\n                31.291481\n              ],\n              [\n                -86.846717,\n                31.290832\n              ],\n              [\n                -86.848543,\n                31.289411\n              ],\n              [\n                -86.849514,\n                31.287128\n              ],\n              [\n                -86.84969,\n                31.286107\n              ],\n              [\n                -86.849953,\n                31.285536\n              ],\n              [\n                -86.848787,\n                31.285265\n              ],\n              [\n                -86.846736,\n                31.285357\n              ],\n              [\n                -86.839803,\n                31.287799\n              ],\n              [\n                -86.837122,\n                31.288262\n              ],\n              [\n                -86.834481,\n                31.28826\n              ],\n              [\n                -86.828877,\n                31.280784\n              ],\n              [\n                -86.825664,\n                31.277897\n              ],\n              [\n                -86.825881,\n                31.275982\n              ],\n              [\n                -86.824213,\n                31.274995\n              ]\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/donut.geojson",
    "content": "{\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -76.165286,\n          45.479514\n        ],\n        [\n          -76.140095,\n          45.457437\n        ],\n        [\n          -76.162348,\n          45.444872\n        ],\n        [\n          -76.168656,\n          45.441087\n        ],\n        [\n          -76.201963,\n          45.420225\n        ],\n        [\n          -76.213668,\n          45.429276\n        ],\n        [\n          -76.214261,\n          45.429917\n        ],\n        [\n          -76.227477,\n          45.440383\n        ],\n        [\n          -76.263056,\n          45.467983\n        ],\n        [\n          -76.245084,\n          45.468609\n        ],\n        [\n          -76.240206,\n          45.471202\n        ],\n        [\n          -76.238518,\n          45.475254\n        ],\n        [\n          -76.233483,\n          45.507829\n        ],\n        [\n          -76.227816,\n          45.511836\n        ],\n        [\n          -76.212117,\n          45.51623\n        ],\n        [\n          -76.191776,\n          45.50154\n        ],\n        [\n          -76.174016,\n          45.486911\n        ],\n        [\n          -76.165286,\n          45.479514\n        ]\n      ],\n      [\n        [\n          -76.227618,\n          45.489247\n        ],\n        [\n          -76.232113,\n          45.486983\n        ],\n        [\n          -76.232151,\n          45.486379\n        ],\n        [\n          -76.231812,\n          45.485106\n        ],\n        [\n          -76.230698,\n          45.483236\n        ],\n        [\n          -76.225664,\n          45.477365\n        ],\n        [\n          -76.223568,\n          45.475174\n        ],\n        [\n          -76.202829,\n          45.458815\n        ],\n        [\n          -76.200229,\n          45.458822\n        ],\n        [\n          -76.199069,\n          45.459164\n        ],\n        [\n          -76.188361,\n          45.465784\n        ],\n        [\n          -76.204505,\n          45.479018\n        ],\n        [\n          -76.215555,\n          45.488534\n        ],\n        [\n          -76.220249,\n          45.492175\n        ],\n        [\n          -76.221154,\n          45.493315\n        ],\n        [\n          -76.22631,\n          45.490189\n        ],\n        [\n          -76.226543,\n          45.489754\n        ],\n        [\n          -76.227618,\n          45.489247\n        ]\n      ]\n    ]\n}\n"
  },
  {
    "path": "test/fixtures/donut_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.14074707,\n              45.45627757\n            ],\n            [\n              -76.14074707,\n              45.46013064\n            ],\n            [\n              -76.13525391,\n              45.46013064\n            ],\n            [\n              -76.13525391,\n              45.45627757\n            ],\n            [\n              -76.14074707,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.14624023,\n              45.45242424\n            ],\n            [\n              -76.14624023,\n              45.45627757\n            ],\n            [\n              -76.14074707,\n              45.45627757\n            ],\n            [\n              -76.14074707,\n              45.45242424\n            ],\n            [\n              -76.14624023,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.14624023,\n              45.45627757\n            ],\n            [\n              -76.14624023,\n              45.46013064\n            ],\n            [\n              -76.14074707,\n              45.46013064\n            ],\n            [\n              -76.14074707,\n              45.45627757\n            ],\n            [\n              -76.14624023,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.14624023,\n              45.46013064\n            ],\n            [\n              -76.14624023,\n              45.46398344\n            ],\n            [\n              -76.14074707,\n              45.46398344\n            ],\n            [\n              -76.14074707,\n              45.46013064\n            ],\n            [\n              -76.14624023,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.1517334,\n              45.44857065\n            ],\n            [\n              -76.1517334,\n              45.45242424\n            ],\n            [\n              -76.14624023,\n              45.45242424\n            ],\n            [\n              -76.14624023,\n              45.44857065\n            ],\n            [\n              -76.1517334,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.1517334,\n              45.45242424\n            ],\n            [\n              -76.1517334,\n              45.45627757\n            ],\n            [\n              -76.14624023,\n              45.45627757\n            ],\n            [\n              -76.14624023,\n              45.45242424\n            ],\n            [\n              -76.1517334,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.1517334,\n              45.45627757\n            ],\n            [\n              -76.1517334,\n              45.46013064\n            ],\n            [\n              -76.14624023,\n              45.46013064\n            ],\n            [\n              -76.14624023,\n              45.45627757\n            ],\n            [\n              -76.1517334,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.1517334,\n              45.46013064\n            ],\n            [\n              -76.1517334,\n              45.46398344\n            ],\n            [\n              -76.14624023,\n              45.46398344\n            ],\n            [\n              -76.14624023,\n              45.46013064\n            ],\n            [\n              -76.1517334,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.1517334,\n              45.46398344\n            ],\n            [\n              -76.1517334,\n              45.46783598\n            ],\n            [\n              -76.14624023,\n              45.46783598\n            ],\n            [\n              -76.14624023,\n              45.46398344\n            ],\n            [\n              -76.1517334,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.15722656,\n              45.44471679\n            ],\n            [\n              -76.15722656,\n              45.44857065\n            ],\n            [\n              -76.1517334,\n              45.44857065\n            ],\n            [\n              -76.1517334,\n              45.44471679\n            ],\n            [\n              -76.15722656,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.15722656,\n              45.44857065\n            ],\n            [\n              -76.15722656,\n              45.45242424\n            ],\n            [\n              -76.1517334,\n              45.45242424\n            ],\n            [\n              -76.1517334,\n              45.44857065\n            ],\n            [\n              -76.15722656,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.15722656,\n              45.45242424\n            ],\n            [\n              -76.15722656,\n              45.45627757\n            ],\n            [\n              -76.1517334,\n              45.45627757\n            ],\n            [\n              -76.1517334,\n              45.45242424\n            ],\n            [\n              -76.15722656,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.15722656,\n              45.45627757\n            ],\n            [\n              -76.15722656,\n              45.46013064\n            ],\n            [\n              -76.1517334,\n              45.46013064\n            ],\n            [\n              -76.1517334,\n              45.45627757\n            ],\n            [\n              -76.15722656,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.15722656,\n              45.46013064\n            ],\n            [\n              -76.15722656,\n              45.46398344\n            ],\n            [\n              -76.1517334,\n              45.46398344\n            ],\n            [\n              -76.1517334,\n              45.46013064\n            ],\n            [\n              -76.15722656,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.15722656,\n              45.46398344\n            ],\n            [\n              -76.15722656,\n              45.46783598\n            ],\n            [\n              -76.1517334,\n              45.46783598\n            ],\n            [\n              -76.1517334,\n              45.46398344\n            ],\n            [\n              -76.15722656,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.15722656,\n              45.46783598\n            ],\n            [\n              -76.15722656,\n              45.47168826\n            ],\n            [\n              -76.1517334,\n              45.47168826\n            ],\n            [\n              -76.1517334,\n              45.46783598\n            ],\n            [\n              -76.15722656,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.15722656,\n              45.47168826\n            ],\n            [\n              -76.15722656,\n              45.47554027\n            ],\n            [\n              -76.1517334,\n              45.47554027\n            ],\n            [\n              -76.1517334,\n              45.47168826\n            ],\n            [\n              -76.15722656,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.44086267\n            ],\n            [\n              -76.16271973,\n              45.44471679\n            ],\n            [\n              -76.15722656,\n              45.44471679\n            ],\n            [\n              -76.15722656,\n              45.44086267\n            ],\n            [\n              -76.16271973,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.44471679\n            ],\n            [\n              -76.16271973,\n              45.44857065\n            ],\n            [\n              -76.15722656,\n              45.44857065\n            ],\n            [\n              -76.15722656,\n              45.44471679\n            ],\n            [\n              -76.16271973,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.44857065\n            ],\n            [\n              -76.16271973,\n              45.45242424\n            ],\n            [\n              -76.15722656,\n              45.45242424\n            ],\n            [\n              -76.15722656,\n              45.44857065\n            ],\n            [\n              -76.16271973,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.45242424\n            ],\n            [\n              -76.16271973,\n              45.45627757\n            ],\n            [\n              -76.15722656,\n              45.45627757\n            ],\n            [\n              -76.15722656,\n              45.45242424\n            ],\n            [\n              -76.16271973,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.45627757\n            ],\n            [\n              -76.16271973,\n              45.46013064\n            ],\n            [\n              -76.15722656,\n              45.46013064\n            ],\n            [\n              -76.15722656,\n              45.45627757\n            ],\n            [\n              -76.16271973,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.46013064\n            ],\n            [\n              -76.16271973,\n              45.46398344\n            ],\n            [\n              -76.15722656,\n              45.46398344\n            ],\n            [\n              -76.15722656,\n              45.46013064\n            ],\n            [\n              -76.16271973,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.46398344\n            ],\n            [\n              -76.16271973,\n              45.46783598\n            ],\n            [\n              -76.15722656,\n              45.46783598\n            ],\n            [\n              -76.15722656,\n              45.46398344\n            ],\n            [\n              -76.16271973,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.46783598\n            ],\n            [\n              -76.16271973,\n              45.47168826\n            ],\n            [\n              -76.15722656,\n              45.47168826\n            ],\n            [\n              -76.15722656,\n              45.46783598\n            ],\n            [\n              -76.16271973,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.47168826\n            ],\n            [\n              -76.16271973,\n              45.47554027\n            ],\n            [\n              -76.15722656,\n              45.47554027\n            ],\n            [\n              -76.15722656,\n              45.47168826\n            ],\n            [\n              -76.16271973,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16271973,\n              45.47554027\n            ],\n            [\n              -76.16271973,\n              45.47939202\n            ],\n            [\n              -76.15722656,\n              45.47939202\n            ],\n            [\n              -76.15722656,\n              45.47554027\n            ],\n            [\n              -76.16271973,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.44086267\n            ],\n            [\n              -76.16821289,\n              45.44471679\n            ],\n            [\n              -76.16271973,\n              45.44471679\n            ],\n            [\n              -76.16271973,\n              45.44086267\n            ],\n            [\n              -76.16821289,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.44471679\n            ],\n            [\n              -76.16821289,\n              45.44857065\n            ],\n            [\n              -76.16271973,\n              45.44857065\n            ],\n            [\n              -76.16271973,\n              45.44471679\n            ],\n            [\n              -76.16821289,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.44857065\n            ],\n            [\n              -76.16821289,\n              45.45242424\n            ],\n            [\n              -76.16271973,\n              45.45242424\n            ],\n            [\n              -76.16271973,\n              45.44857065\n            ],\n            [\n              -76.16821289,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.45242424\n            ],\n            [\n              -76.16821289,\n              45.45627757\n            ],\n            [\n              -76.16271973,\n              45.45627757\n            ],\n            [\n              -76.16271973,\n              45.45242424\n            ],\n            [\n              -76.16821289,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.45627757\n            ],\n            [\n              -76.16821289,\n              45.46013064\n            ],\n            [\n              -76.16271973,\n              45.46013064\n            ],\n            [\n              -76.16271973,\n              45.45627757\n            ],\n            [\n              -76.16821289,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.46013064\n            ],\n            [\n              -76.16821289,\n              45.46398344\n            ],\n            [\n              -76.16271973,\n              45.46398344\n            ],\n            [\n              -76.16271973,\n              45.46013064\n            ],\n            [\n              -76.16821289,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.46398344\n            ],\n            [\n              -76.16821289,\n              45.46783598\n            ],\n            [\n              -76.16271973,\n              45.46783598\n            ],\n            [\n              -76.16271973,\n              45.46398344\n            ],\n            [\n              -76.16821289,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.46783598\n            ],\n            [\n              -76.16821289,\n              45.47168826\n            ],\n            [\n              -76.16271973,\n              45.47168826\n            ],\n            [\n              -76.16271973,\n              45.46783598\n            ],\n            [\n              -76.16821289,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.47168826\n            ],\n            [\n              -76.16821289,\n              45.47554027\n            ],\n            [\n              -76.16271973,\n              45.47554027\n            ],\n            [\n              -76.16271973,\n              45.47168826\n            ],\n            [\n              -76.16821289,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.47554027\n            ],\n            [\n              -76.16821289,\n              45.47939202\n            ],\n            [\n              -76.16271973,\n              45.47939202\n            ],\n            [\n              -76.16271973,\n              45.47554027\n            ],\n            [\n              -76.16821289,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.16821289,\n              45.47939202\n            ],\n            [\n              -76.16821289,\n              45.48324351\n            ],\n            [\n              -76.16271973,\n              45.48324351\n            ],\n            [\n              -76.16271973,\n              45.47939202\n            ],\n            [\n              -76.16821289,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.43700829\n            ],\n            [\n              -76.17370605,\n              45.44086267\n            ],\n            [\n              -76.16821289,\n              45.44086267\n            ],\n            [\n              -76.16821289,\n              45.43700829\n            ],\n            [\n              -76.17370605,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.44086267\n            ],\n            [\n              -76.17370605,\n              45.44471679\n            ],\n            [\n              -76.16821289,\n              45.44471679\n            ],\n            [\n              -76.16821289,\n              45.44086267\n            ],\n            [\n              -76.17370605,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.44471679\n            ],\n            [\n              -76.17370605,\n              45.44857065\n            ],\n            [\n              -76.16821289,\n              45.44857065\n            ],\n            [\n              -76.16821289,\n              45.44471679\n            ],\n            [\n              -76.17370605,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.44857065\n            ],\n            [\n              -76.17370605,\n              45.45242424\n            ],\n            [\n              -76.16821289,\n              45.45242424\n            ],\n            [\n              -76.16821289,\n              45.44857065\n            ],\n            [\n              -76.17370605,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.45242424\n            ],\n            [\n              -76.17370605,\n              45.45627757\n            ],\n            [\n              -76.16821289,\n              45.45627757\n            ],\n            [\n              -76.16821289,\n              45.45242424\n            ],\n            [\n              -76.17370605,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.45627757\n            ],\n            [\n              -76.17370605,\n              45.46013064\n            ],\n            [\n              -76.16821289,\n              45.46013064\n            ],\n            [\n              -76.16821289,\n              45.45627757\n            ],\n            [\n              -76.17370605,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.46013064\n            ],\n            [\n              -76.17370605,\n              45.46398344\n            ],\n            [\n              -76.16821289,\n              45.46398344\n            ],\n            [\n              -76.16821289,\n              45.46013064\n            ],\n            [\n              -76.17370605,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.46398344\n            ],\n            [\n              -76.17370605,\n              45.46783598\n            ],\n            [\n              -76.16821289,\n              45.46783598\n            ],\n            [\n              -76.16821289,\n              45.46398344\n            ],\n            [\n              -76.17370605,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.46783598\n            ],\n            [\n              -76.17370605,\n              45.47168826\n            ],\n            [\n              -76.16821289,\n              45.47168826\n            ],\n            [\n              -76.16821289,\n              45.46783598\n            ],\n            [\n              -76.17370605,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.47168826\n            ],\n            [\n              -76.17370605,\n              45.47554027\n            ],\n            [\n              -76.16821289,\n              45.47554027\n            ],\n            [\n              -76.16821289,\n              45.47168826\n            ],\n            [\n              -76.17370605,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.47554027\n            ],\n            [\n              -76.17370605,\n              45.47939202\n            ],\n            [\n              -76.16821289,\n              45.47939202\n            ],\n            [\n              -76.16821289,\n              45.47554027\n            ],\n            [\n              -76.17370605,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.47939202\n            ],\n            [\n              -76.17370605,\n              45.48324351\n            ],\n            [\n              -76.16821289,\n              45.48324351\n            ],\n            [\n              -76.16821289,\n              45.47939202\n            ],\n            [\n              -76.17370605,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17370605,\n              45.48324351\n            ],\n            [\n              -76.17370605,\n              45.48709473\n            ],\n            [\n              -76.16821289,\n              45.48709473\n            ],\n            [\n              -76.16821289,\n              45.48324351\n            ],\n            [\n              -76.17370605,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.43315364\n            ],\n            [\n              -76.17919922,\n              45.43700829\n            ],\n            [\n              -76.17370605,\n              45.43700829\n            ],\n            [\n              -76.17370605,\n              45.43315364\n            ],\n            [\n              -76.17919922,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.43700829\n            ],\n            [\n              -76.17919922,\n              45.44086267\n            ],\n            [\n              -76.17370605,\n              45.44086267\n            ],\n            [\n              -76.17370605,\n              45.43700829\n            ],\n            [\n              -76.17919922,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.44086267\n            ],\n            [\n              -76.17919922,\n              45.44471679\n            ],\n            [\n              -76.17370605,\n              45.44471679\n            ],\n            [\n              -76.17370605,\n              45.44086267\n            ],\n            [\n              -76.17919922,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.44471679\n            ],\n            [\n              -76.17919922,\n              45.44857065\n            ],\n            [\n              -76.17370605,\n              45.44857065\n            ],\n            [\n              -76.17370605,\n              45.44471679\n            ],\n            [\n              -76.17919922,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.44857065\n            ],\n            [\n              -76.17919922,\n              45.45242424\n            ],\n            [\n              -76.17370605,\n              45.45242424\n            ],\n            [\n              -76.17370605,\n              45.44857065\n            ],\n            [\n              -76.17919922,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.45242424\n            ],\n            [\n              -76.17919922,\n              45.45627757\n            ],\n            [\n              -76.17370605,\n              45.45627757\n            ],\n            [\n              -76.17370605,\n              45.45242424\n            ],\n            [\n              -76.17919922,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.45627757\n            ],\n            [\n              -76.17919922,\n              45.46013064\n            ],\n            [\n              -76.17370605,\n              45.46013064\n            ],\n            [\n              -76.17370605,\n              45.45627757\n            ],\n            [\n              -76.17919922,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.46013064\n            ],\n            [\n              -76.17919922,\n              45.46398344\n            ],\n            [\n              -76.17370605,\n              45.46398344\n            ],\n            [\n              -76.17370605,\n              45.46013064\n            ],\n            [\n              -76.17919922,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.46398344\n            ],\n            [\n              -76.17919922,\n              45.46783598\n            ],\n            [\n              -76.17370605,\n              45.46783598\n            ],\n            [\n              -76.17370605,\n              45.46398344\n            ],\n            [\n              -76.17919922,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.46783598\n            ],\n            [\n              -76.17919922,\n              45.47168826\n            ],\n            [\n              -76.17370605,\n              45.47168826\n            ],\n            [\n              -76.17370605,\n              45.46783598\n            ],\n            [\n              -76.17919922,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.47168826\n            ],\n            [\n              -76.17919922,\n              45.47554027\n            ],\n            [\n              -76.17370605,\n              45.47554027\n            ],\n            [\n              -76.17370605,\n              45.47168826\n            ],\n            [\n              -76.17919922,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.47554027\n            ],\n            [\n              -76.17919922,\n              45.47939202\n            ],\n            [\n              -76.17370605,\n              45.47939202\n            ],\n            [\n              -76.17370605,\n              45.47554027\n            ],\n            [\n              -76.17919922,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.47939202\n            ],\n            [\n              -76.17919922,\n              45.48324351\n            ],\n            [\n              -76.17370605,\n              45.48324351\n            ],\n            [\n              -76.17370605,\n              45.47939202\n            ],\n            [\n              -76.17919922,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.48324351\n            ],\n            [\n              -76.17919922,\n              45.48709473\n            ],\n            [\n              -76.17370605,\n              45.48709473\n            ],\n            [\n              -76.17370605,\n              45.48324351\n            ],\n            [\n              -76.17919922,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.48709473\n            ],\n            [\n              -76.17919922,\n              45.49094569\n            ],\n            [\n              -76.17370605,\n              45.49094569\n            ],\n            [\n              -76.17370605,\n              45.48709473\n            ],\n            [\n              -76.17919922,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.17919922,\n              45.49094569\n            ],\n            [\n              -76.17919922,\n              45.49479639\n            ],\n            [\n              -76.17370605,\n              45.49479639\n            ],\n            [\n              -76.17370605,\n              45.49094569\n            ],\n            [\n              -76.17919922,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.42929873\n            ],\n            [\n              -76.18469238,\n              45.43315364\n            ],\n            [\n              -76.17919922,\n              45.43315364\n            ],\n            [\n              -76.17919922,\n              45.42929873\n            ],\n            [\n              -76.18469238,\n              45.42929873\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.43315364\n            ],\n            [\n              -76.18469238,\n              45.43700829\n            ],\n            [\n              -76.17919922,\n              45.43700829\n            ],\n            [\n              -76.17919922,\n              45.43315364\n            ],\n            [\n              -76.18469238,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.43700829\n            ],\n            [\n              -76.18469238,\n              45.44086267\n            ],\n            [\n              -76.17919922,\n              45.44086267\n            ],\n            [\n              -76.17919922,\n              45.43700829\n            ],\n            [\n              -76.18469238,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.44086267\n            ],\n            [\n              -76.18469238,\n              45.44471679\n            ],\n            [\n              -76.17919922,\n              45.44471679\n            ],\n            [\n              -76.17919922,\n              45.44086267\n            ],\n            [\n              -76.18469238,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.44471679\n            ],\n            [\n              -76.18469238,\n              45.44857065\n            ],\n            [\n              -76.17919922,\n              45.44857065\n            ],\n            [\n              -76.17919922,\n              45.44471679\n            ],\n            [\n              -76.18469238,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.44857065\n            ],\n            [\n              -76.18469238,\n              45.45242424\n            ],\n            [\n              -76.17919922,\n              45.45242424\n            ],\n            [\n              -76.17919922,\n              45.44857065\n            ],\n            [\n              -76.18469238,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.45242424\n            ],\n            [\n              -76.18469238,\n              45.45627757\n            ],\n            [\n              -76.17919922,\n              45.45627757\n            ],\n            [\n              -76.17919922,\n              45.45242424\n            ],\n            [\n              -76.18469238,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.45627757\n            ],\n            [\n              -76.18469238,\n              45.46013064\n            ],\n            [\n              -76.17919922,\n              45.46013064\n            ],\n            [\n              -76.17919922,\n              45.45627757\n            ],\n            [\n              -76.18469238,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.46013064\n            ],\n            [\n              -76.18469238,\n              45.46398344\n            ],\n            [\n              -76.17919922,\n              45.46398344\n            ],\n            [\n              -76.17919922,\n              45.46013064\n            ],\n            [\n              -76.18469238,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.46398344\n            ],\n            [\n              -76.18469238,\n              45.46783598\n            ],\n            [\n              -76.17919922,\n              45.46783598\n            ],\n            [\n              -76.17919922,\n              45.46398344\n            ],\n            [\n              -76.18469238,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.46783598\n            ],\n            [\n              -76.18469238,\n              45.47168826\n            ],\n            [\n              -76.17919922,\n              45.47168826\n            ],\n            [\n              -76.17919922,\n              45.46783598\n            ],\n            [\n              -76.18469238,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.47168826\n            ],\n            [\n              -76.18469238,\n              45.47554027\n            ],\n            [\n              -76.17919922,\n              45.47554027\n            ],\n            [\n              -76.17919922,\n              45.47168826\n            ],\n            [\n              -76.18469238,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.47554027\n            ],\n            [\n              -76.18469238,\n              45.47939202\n            ],\n            [\n              -76.17919922,\n              45.47939202\n            ],\n            [\n              -76.17919922,\n              45.47554027\n            ],\n            [\n              -76.18469238,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.47939202\n            ],\n            [\n              -76.18469238,\n              45.48324351\n            ],\n            [\n              -76.17919922,\n              45.48324351\n            ],\n            [\n              -76.17919922,\n              45.47939202\n            ],\n            [\n              -76.18469238,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.48324351\n            ],\n            [\n              -76.18469238,\n              45.48709473\n            ],\n            [\n              -76.17919922,\n              45.48709473\n            ],\n            [\n              -76.17919922,\n              45.48324351\n            ],\n            [\n              -76.18469238,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.48709473\n            ],\n            [\n              -76.18469238,\n              45.49094569\n            ],\n            [\n              -76.17919922,\n              45.49094569\n            ],\n            [\n              -76.17919922,\n              45.48709473\n            ],\n            [\n              -76.18469238,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.49094569\n            ],\n            [\n              -76.18469238,\n              45.49479639\n            ],\n            [\n              -76.17919922,\n              45.49479639\n            ],\n            [\n              -76.17919922,\n              45.49094569\n            ],\n            [\n              -76.18469238,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.18469238,\n              45.49479639\n            ],\n            [\n              -76.18469238,\n              45.49864682\n            ],\n            [\n              -76.17919922,\n              45.49864682\n            ],\n            [\n              -76.17919922,\n              45.49479639\n            ],\n            [\n              -76.18469238,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.42544356\n            ],\n            [\n              -76.19018555,\n              45.42929873\n            ],\n            [\n              -76.18469238,\n              45.42929873\n            ],\n            [\n              -76.18469238,\n              45.42544356\n            ],\n            [\n              -76.19018555,\n              45.42544356\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.42929873\n            ],\n            [\n              -76.19018555,\n              45.43315364\n            ],\n            [\n              -76.18469238,\n              45.43315364\n            ],\n            [\n              -76.18469238,\n              45.42929873\n            ],\n            [\n              -76.19018555,\n              45.42929873\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.43315364\n            ],\n            [\n              -76.19018555,\n              45.43700829\n            ],\n            [\n              -76.18469238,\n              45.43700829\n            ],\n            [\n              -76.18469238,\n              45.43315364\n            ],\n            [\n              -76.19018555,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.43700829\n            ],\n            [\n              -76.19018555,\n              45.44086267\n            ],\n            [\n              -76.18469238,\n              45.44086267\n            ],\n            [\n              -76.18469238,\n              45.43700829\n            ],\n            [\n              -76.19018555,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.44086267\n            ],\n            [\n              -76.19018555,\n              45.44471679\n            ],\n            [\n              -76.18469238,\n              45.44471679\n            ],\n            [\n              -76.18469238,\n              45.44086267\n            ],\n            [\n              -76.19018555,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.44471679\n            ],\n            [\n              -76.19018555,\n              45.44857065\n            ],\n            [\n              -76.18469238,\n              45.44857065\n            ],\n            [\n              -76.18469238,\n              45.44471679\n            ],\n            [\n              -76.19018555,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.44857065\n            ],\n            [\n              -76.19018555,\n              45.45242424\n            ],\n            [\n              -76.18469238,\n              45.45242424\n            ],\n            [\n              -76.18469238,\n              45.44857065\n            ],\n            [\n              -76.19018555,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.45242424\n            ],\n            [\n              -76.19018555,\n              45.45627757\n            ],\n            [\n              -76.18469238,\n              45.45627757\n            ],\n            [\n              -76.18469238,\n              45.45242424\n            ],\n            [\n              -76.19018555,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.45627757\n            ],\n            [\n              -76.19018555,\n              45.46013064\n            ],\n            [\n              -76.18469238,\n              45.46013064\n            ],\n            [\n              -76.18469238,\n              45.45627757\n            ],\n            [\n              -76.19018555,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.46013064\n            ],\n            [\n              -76.19018555,\n              45.46398344\n            ],\n            [\n              -76.18469238,\n              45.46398344\n            ],\n            [\n              -76.18469238,\n              45.46013064\n            ],\n            [\n              -76.19018555,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.46398344\n            ],\n            [\n              -76.19018555,\n              45.46783598\n            ],\n            [\n              -76.18469238,\n              45.46783598\n            ],\n            [\n              -76.18469238,\n              45.46398344\n            ],\n            [\n              -76.19018555,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.46783598\n            ],\n            [\n              -76.19018555,\n              45.47168826\n            ],\n            [\n              -76.18469238,\n              45.47168826\n            ],\n            [\n              -76.18469238,\n              45.46783598\n            ],\n            [\n              -76.19018555,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.47168826\n            ],\n            [\n              -76.19018555,\n              45.47554027\n            ],\n            [\n              -76.18469238,\n              45.47554027\n            ],\n            [\n              -76.18469238,\n              45.47168826\n            ],\n            [\n              -76.19018555,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.47554027\n            ],\n            [\n              -76.19018555,\n              45.47939202\n            ],\n            [\n              -76.18469238,\n              45.47939202\n            ],\n            [\n              -76.18469238,\n              45.47554027\n            ],\n            [\n              -76.19018555,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.47939202\n            ],\n            [\n              -76.19018555,\n              45.48324351\n            ],\n            [\n              -76.18469238,\n              45.48324351\n            ],\n            [\n              -76.18469238,\n              45.47939202\n            ],\n            [\n              -76.19018555,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.48324351\n            ],\n            [\n              -76.19018555,\n              45.48709473\n            ],\n            [\n              -76.18469238,\n              45.48709473\n            ],\n            [\n              -76.18469238,\n              45.48324351\n            ],\n            [\n              -76.19018555,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.48709473\n            ],\n            [\n              -76.19018555,\n              45.49094569\n            ],\n            [\n              -76.18469238,\n              45.49094569\n            ],\n            [\n              -76.18469238,\n              45.48709473\n            ],\n            [\n              -76.19018555,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.49094569\n            ],\n            [\n              -76.19018555,\n              45.49479639\n            ],\n            [\n              -76.18469238,\n              45.49479639\n            ],\n            [\n              -76.18469238,\n              45.49094569\n            ],\n            [\n              -76.19018555,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.49479639\n            ],\n            [\n              -76.19018555,\n              45.49864682\n            ],\n            [\n              -76.18469238,\n              45.49864682\n            ],\n            [\n              -76.18469238,\n              45.49479639\n            ],\n            [\n              -76.19018555,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19018555,\n              45.49864682\n            ],\n            [\n              -76.19018555,\n              45.50249699\n            ],\n            [\n              -76.18469238,\n              45.50249699\n            ],\n            [\n              -76.18469238,\n              45.49864682\n            ],\n            [\n              -76.19018555,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.42158812\n            ],\n            [\n              -76.19567871,\n              45.42544356\n            ],\n            [\n              -76.19018555,\n              45.42544356\n            ],\n            [\n              -76.19018555,\n              45.42158812\n            ],\n            [\n              -76.19567871,\n              45.42158812\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.42544356\n            ],\n            [\n              -76.19567871,\n              45.42929873\n            ],\n            [\n              -76.19018555,\n              45.42929873\n            ],\n            [\n              -76.19018555,\n              45.42544356\n            ],\n            [\n              -76.19567871,\n              45.42544356\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.42929873\n            ],\n            [\n              -76.19567871,\n              45.43315364\n            ],\n            [\n              -76.19018555,\n              45.43315364\n            ],\n            [\n              -76.19018555,\n              45.42929873\n            ],\n            [\n              -76.19567871,\n              45.42929873\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.43315364\n            ],\n            [\n              -76.19567871,\n              45.43700829\n            ],\n            [\n              -76.19018555,\n              45.43700829\n            ],\n            [\n              -76.19018555,\n              45.43315364\n            ],\n            [\n              -76.19567871,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.43700829\n            ],\n            [\n              -76.19567871,\n              45.44086267\n            ],\n            [\n              -76.19018555,\n              45.44086267\n            ],\n            [\n              -76.19018555,\n              45.43700829\n            ],\n            [\n              -76.19567871,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.44086267\n            ],\n            [\n              -76.19567871,\n              45.44471679\n            ],\n            [\n              -76.19018555,\n              45.44471679\n            ],\n            [\n              -76.19018555,\n              45.44086267\n            ],\n            [\n              -76.19567871,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.44471679\n            ],\n            [\n              -76.19567871,\n              45.44857065\n            ],\n            [\n              -76.19018555,\n              45.44857065\n            ],\n            [\n              -76.19018555,\n              45.44471679\n            ],\n            [\n              -76.19567871,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.44857065\n            ],\n            [\n              -76.19567871,\n              45.45242424\n            ],\n            [\n              -76.19018555,\n              45.45242424\n            ],\n            [\n              -76.19018555,\n              45.44857065\n            ],\n            [\n              -76.19567871,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.45242424\n            ],\n            [\n              -76.19567871,\n              45.45627757\n            ],\n            [\n              -76.19018555,\n              45.45627757\n            ],\n            [\n              -76.19018555,\n              45.45242424\n            ],\n            [\n              -76.19567871,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.45627757\n            ],\n            [\n              -76.19567871,\n              45.46013064\n            ],\n            [\n              -76.19018555,\n              45.46013064\n            ],\n            [\n              -76.19018555,\n              45.45627757\n            ],\n            [\n              -76.19567871,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.46013064\n            ],\n            [\n              -76.19567871,\n              45.46398344\n            ],\n            [\n              -76.19018555,\n              45.46398344\n            ],\n            [\n              -76.19018555,\n              45.46013064\n            ],\n            [\n              -76.19567871,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.46398344\n            ],\n            [\n              -76.19567871,\n              45.46783598\n            ],\n            [\n              -76.19018555,\n              45.46783598\n            ],\n            [\n              -76.19018555,\n              45.46398344\n            ],\n            [\n              -76.19567871,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.46783598\n            ],\n            [\n              -76.19567871,\n              45.47168826\n            ],\n            [\n              -76.19018555,\n              45.47168826\n            ],\n            [\n              -76.19018555,\n              45.46783598\n            ],\n            [\n              -76.19567871,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.47168826\n            ],\n            [\n              -76.19567871,\n              45.47554027\n            ],\n            [\n              -76.19018555,\n              45.47554027\n            ],\n            [\n              -76.19018555,\n              45.47168826\n            ],\n            [\n              -76.19567871,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.47554027\n            ],\n            [\n              -76.19567871,\n              45.47939202\n            ],\n            [\n              -76.19018555,\n              45.47939202\n            ],\n            [\n              -76.19018555,\n              45.47554027\n            ],\n            [\n              -76.19567871,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.47939202\n            ],\n            [\n              -76.19567871,\n              45.48324351\n            ],\n            [\n              -76.19018555,\n              45.48324351\n            ],\n            [\n              -76.19018555,\n              45.47939202\n            ],\n            [\n              -76.19567871,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.48324351\n            ],\n            [\n              -76.19567871,\n              45.48709473\n            ],\n            [\n              -76.19018555,\n              45.48709473\n            ],\n            [\n              -76.19018555,\n              45.48324351\n            ],\n            [\n              -76.19567871,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.48709473\n            ],\n            [\n              -76.19567871,\n              45.49094569\n            ],\n            [\n              -76.19018555,\n              45.49094569\n            ],\n            [\n              -76.19018555,\n              45.48709473\n            ],\n            [\n              -76.19567871,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.49094569\n            ],\n            [\n              -76.19567871,\n              45.49479639\n            ],\n            [\n              -76.19018555,\n              45.49479639\n            ],\n            [\n              -76.19018555,\n              45.49094569\n            ],\n            [\n              -76.19567871,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.49479639\n            ],\n            [\n              -76.19567871,\n              45.49864682\n            ],\n            [\n              -76.19018555,\n              45.49864682\n            ],\n            [\n              -76.19018555,\n              45.49479639\n            ],\n            [\n              -76.19567871,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.49864682\n            ],\n            [\n              -76.19567871,\n              45.50249699\n            ],\n            [\n              -76.19018555,\n              45.50249699\n            ],\n            [\n              -76.19018555,\n              45.49864682\n            ],\n            [\n              -76.19567871,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.19567871,\n              45.50249699\n            ],\n            [\n              -76.19567871,\n              45.5063469\n            ],\n            [\n              -76.19018555,\n              45.5063469\n            ],\n            [\n              -76.19018555,\n              45.50249699\n            ],\n            [\n              -76.19567871,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.41773242\n            ],\n            [\n              -76.20117188,\n              45.42158812\n            ],\n            [\n              -76.19567871,\n              45.42158812\n            ],\n            [\n              -76.19567871,\n              45.41773242\n            ],\n            [\n              -76.20117188,\n              45.41773242\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.42158812\n            ],\n            [\n              -76.20117188,\n              45.42544356\n            ],\n            [\n              -76.19567871,\n              45.42544356\n            ],\n            [\n              -76.19567871,\n              45.42158812\n            ],\n            [\n              -76.20117188,\n              45.42158812\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.42544356\n            ],\n            [\n              -76.20117188,\n              45.42929873\n            ],\n            [\n              -76.19567871,\n              45.42929873\n            ],\n            [\n              -76.19567871,\n              45.42544356\n            ],\n            [\n              -76.20117188,\n              45.42544356\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.42929873\n            ],\n            [\n              -76.20117188,\n              45.43315364\n            ],\n            [\n              -76.19567871,\n              45.43315364\n            ],\n            [\n              -76.19567871,\n              45.42929873\n            ],\n            [\n              -76.20117188,\n              45.42929873\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.43315364\n            ],\n            [\n              -76.20117188,\n              45.43700829\n            ],\n            [\n              -76.19567871,\n              45.43700829\n            ],\n            [\n              -76.19567871,\n              45.43315364\n            ],\n            [\n              -76.20117188,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.43700829\n            ],\n            [\n              -76.20117188,\n              45.44086267\n            ],\n            [\n              -76.19567871,\n              45.44086267\n            ],\n            [\n              -76.19567871,\n              45.43700829\n            ],\n            [\n              -76.20117188,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.44086267\n            ],\n            [\n              -76.20117188,\n              45.44471679\n            ],\n            [\n              -76.19567871,\n              45.44471679\n            ],\n            [\n              -76.19567871,\n              45.44086267\n            ],\n            [\n              -76.20117188,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.44471679\n            ],\n            [\n              -76.20117188,\n              45.44857065\n            ],\n            [\n              -76.19567871,\n              45.44857065\n            ],\n            [\n              -76.19567871,\n              45.44471679\n            ],\n            [\n              -76.20117188,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.44857065\n            ],\n            [\n              -76.20117188,\n              45.45242424\n            ],\n            [\n              -76.19567871,\n              45.45242424\n            ],\n            [\n              -76.19567871,\n              45.44857065\n            ],\n            [\n              -76.20117188,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.45242424\n            ],\n            [\n              -76.20117188,\n              45.45627757\n            ],\n            [\n              -76.19567871,\n              45.45627757\n            ],\n            [\n              -76.19567871,\n              45.45242424\n            ],\n            [\n              -76.20117188,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.45627757\n            ],\n            [\n              -76.20117188,\n              45.46013064\n            ],\n            [\n              -76.19567871,\n              45.46013064\n            ],\n            [\n              -76.19567871,\n              45.45627757\n            ],\n            [\n              -76.20117188,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.46013064\n            ],\n            [\n              -76.20117188,\n              45.46398344\n            ],\n            [\n              -76.19567871,\n              45.46398344\n            ],\n            [\n              -76.19567871,\n              45.46013064\n            ],\n            [\n              -76.20117188,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.47168826\n            ],\n            [\n              -76.20117188,\n              45.47554027\n            ],\n            [\n              -76.19567871,\n              45.47554027\n            ],\n            [\n              -76.19567871,\n              45.47168826\n            ],\n            [\n              -76.20117188,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.47554027\n            ],\n            [\n              -76.20117188,\n              45.47939202\n            ],\n            [\n              -76.19567871,\n              45.47939202\n            ],\n            [\n              -76.19567871,\n              45.47554027\n            ],\n            [\n              -76.20117188,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.47939202\n            ],\n            [\n              -76.20117188,\n              45.48324351\n            ],\n            [\n              -76.19567871,\n              45.48324351\n            ],\n            [\n              -76.19567871,\n              45.47939202\n            ],\n            [\n              -76.20117188,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.48324351\n            ],\n            [\n              -76.20117188,\n              45.48709473\n            ],\n            [\n              -76.19567871,\n              45.48709473\n            ],\n            [\n              -76.19567871,\n              45.48324351\n            ],\n            [\n              -76.20117188,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.48709473\n            ],\n            [\n              -76.20117188,\n              45.49094569\n            ],\n            [\n              -76.19567871,\n              45.49094569\n            ],\n            [\n              -76.19567871,\n              45.48709473\n            ],\n            [\n              -76.20117188,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.49094569\n            ],\n            [\n              -76.20117188,\n              45.49479639\n            ],\n            [\n              -76.19567871,\n              45.49479639\n            ],\n            [\n              -76.19567871,\n              45.49094569\n            ],\n            [\n              -76.20117188,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.49479639\n            ],\n            [\n              -76.20117188,\n              45.49864682\n            ],\n            [\n              -76.19567871,\n              45.49864682\n            ],\n            [\n              -76.19567871,\n              45.49479639\n            ],\n            [\n              -76.20117188,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.49864682\n            ],\n            [\n              -76.20117188,\n              45.50249699\n            ],\n            [\n              -76.19567871,\n              45.50249699\n            ],\n            [\n              -76.19567871,\n              45.49864682\n            ],\n            [\n              -76.20117188,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.50249699\n            ],\n            [\n              -76.20117188,\n              45.5063469\n            ],\n            [\n              -76.19567871,\n              45.5063469\n            ],\n            [\n              -76.19567871,\n              45.50249699\n            ],\n            [\n              -76.20117188,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20117188,\n              45.5063469\n            ],\n            [\n              -76.20117188,\n              45.51019654\n            ],\n            [\n              -76.19567871,\n              45.51019654\n            ],\n            [\n              -76.19567871,\n              45.5063469\n            ],\n            [\n              -76.20117188,\n              45.5063469\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.41773242\n            ],\n            [\n              -76.20666504,\n              45.42158812\n            ],\n            [\n              -76.20117188,\n              45.42158812\n            ],\n            [\n              -76.20117188,\n              45.41773242\n            ],\n            [\n              -76.20666504,\n              45.41773242\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.42158812\n            ],\n            [\n              -76.20666504,\n              45.42544356\n            ],\n            [\n              -76.20117188,\n              45.42544356\n            ],\n            [\n              -76.20117188,\n              45.42158812\n            ],\n            [\n              -76.20666504,\n              45.42158812\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.42544356\n            ],\n            [\n              -76.20666504,\n              45.42929873\n            ],\n            [\n              -76.20117188,\n              45.42929873\n            ],\n            [\n              -76.20117188,\n              45.42544356\n            ],\n            [\n              -76.20666504,\n              45.42544356\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.42929873\n            ],\n            [\n              -76.20666504,\n              45.43315364\n            ],\n            [\n              -76.20117188,\n              45.43315364\n            ],\n            [\n              -76.20117188,\n              45.42929873\n            ],\n            [\n              -76.20666504,\n              45.42929873\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.43315364\n            ],\n            [\n              -76.20666504,\n              45.43700829\n            ],\n            [\n              -76.20117188,\n              45.43700829\n            ],\n            [\n              -76.20117188,\n              45.43315364\n            ],\n            [\n              -76.20666504,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.43700829\n            ],\n            [\n              -76.20666504,\n              45.44086267\n            ],\n            [\n              -76.20117188,\n              45.44086267\n            ],\n            [\n              -76.20117188,\n              45.43700829\n            ],\n            [\n              -76.20666504,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.44086267\n            ],\n            [\n              -76.20666504,\n              45.44471679\n            ],\n            [\n              -76.20117188,\n              45.44471679\n            ],\n            [\n              -76.20117188,\n              45.44086267\n            ],\n            [\n              -76.20666504,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.44471679\n            ],\n            [\n              -76.20666504,\n              45.44857065\n            ],\n            [\n              -76.20117188,\n              45.44857065\n            ],\n            [\n              -76.20117188,\n              45.44471679\n            ],\n            [\n              -76.20666504,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.44857065\n            ],\n            [\n              -76.20666504,\n              45.45242424\n            ],\n            [\n              -76.20117188,\n              45.45242424\n            ],\n            [\n              -76.20117188,\n              45.44857065\n            ],\n            [\n              -76.20666504,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.45242424\n            ],\n            [\n              -76.20666504,\n              45.45627757\n            ],\n            [\n              -76.20117188,\n              45.45627757\n            ],\n            [\n              -76.20117188,\n              45.45242424\n            ],\n            [\n              -76.20666504,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.45627757\n            ],\n            [\n              -76.20666504,\n              45.46013064\n            ],\n            [\n              -76.20117188,\n              45.46013064\n            ],\n            [\n              -76.20117188,\n              45.45627757\n            ],\n            [\n              -76.20666504,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.46013064\n            ],\n            [\n              -76.20666504,\n              45.46398344\n            ],\n            [\n              -76.20117188,\n              45.46398344\n            ],\n            [\n              -76.20117188,\n              45.46013064\n            ],\n            [\n              -76.20666504,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.47554027\n            ],\n            [\n              -76.20666504,\n              45.47939202\n            ],\n            [\n              -76.20117188,\n              45.47939202\n            ],\n            [\n              -76.20117188,\n              45.47554027\n            ],\n            [\n              -76.20666504,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.47939202\n            ],\n            [\n              -76.20666504,\n              45.48324351\n            ],\n            [\n              -76.20117188,\n              45.48324351\n            ],\n            [\n              -76.20117188,\n              45.47939202\n            ],\n            [\n              -76.20666504,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.48324351\n            ],\n            [\n              -76.20666504,\n              45.48709473\n            ],\n            [\n              -76.20117188,\n              45.48709473\n            ],\n            [\n              -76.20117188,\n              45.48324351\n            ],\n            [\n              -76.20666504,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.48709473\n            ],\n            [\n              -76.20666504,\n              45.49094569\n            ],\n            [\n              -76.20117188,\n              45.49094569\n            ],\n            [\n              -76.20117188,\n              45.48709473\n            ],\n            [\n              -76.20666504,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.49094569\n            ],\n            [\n              -76.20666504,\n              45.49479639\n            ],\n            [\n              -76.20117188,\n              45.49479639\n            ],\n            [\n              -76.20117188,\n              45.49094569\n            ],\n            [\n              -76.20666504,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.49479639\n            ],\n            [\n              -76.20666504,\n              45.49864682\n            ],\n            [\n              -76.20117188,\n              45.49864682\n            ],\n            [\n              -76.20117188,\n              45.49479639\n            ],\n            [\n              -76.20666504,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.49864682\n            ],\n            [\n              -76.20666504,\n              45.50249699\n            ],\n            [\n              -76.20117188,\n              45.50249699\n            ],\n            [\n              -76.20117188,\n              45.49864682\n            ],\n            [\n              -76.20666504,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.50249699\n            ],\n            [\n              -76.20666504,\n              45.5063469\n            ],\n            [\n              -76.20117188,\n              45.5063469\n            ],\n            [\n              -76.20117188,\n              45.50249699\n            ],\n            [\n              -76.20666504,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.5063469\n            ],\n            [\n              -76.20666504,\n              45.51019654\n            ],\n            [\n              -76.20117188,\n              45.51019654\n            ],\n            [\n              -76.20117188,\n              45.5063469\n            ],\n            [\n              -76.20666504,\n              45.5063469\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.20666504,\n              45.51019654\n            ],\n            [\n              -76.20666504,\n              45.51404593\n            ],\n            [\n              -76.20117188,\n              45.51404593\n            ],\n            [\n              -76.20117188,\n              45.51019654\n            ],\n            [\n              -76.20666504,\n              45.51019654\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.42158812\n            ],\n            [\n              -76.2121582,\n              45.42544356\n            ],\n            [\n              -76.20666504,\n              45.42544356\n            ],\n            [\n              -76.20666504,\n              45.42158812\n            ],\n            [\n              -76.2121582,\n              45.42158812\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.42544356\n            ],\n            [\n              -76.2121582,\n              45.42929873\n            ],\n            [\n              -76.20666504,\n              45.42929873\n            ],\n            [\n              -76.20666504,\n              45.42544356\n            ],\n            [\n              -76.2121582,\n              45.42544356\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.42929873\n            ],\n            [\n              -76.2121582,\n              45.43315364\n            ],\n            [\n              -76.20666504,\n              45.43315364\n            ],\n            [\n              -76.20666504,\n              45.42929873\n            ],\n            [\n              -76.2121582,\n              45.42929873\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.43315364\n            ],\n            [\n              -76.2121582,\n              45.43700829\n            ],\n            [\n              -76.20666504,\n              45.43700829\n            ],\n            [\n              -76.20666504,\n              45.43315364\n            ],\n            [\n              -76.2121582,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.43700829\n            ],\n            [\n              -76.2121582,\n              45.44086267\n            ],\n            [\n              -76.20666504,\n              45.44086267\n            ],\n            [\n              -76.20666504,\n              45.43700829\n            ],\n            [\n              -76.2121582,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.44086267\n            ],\n            [\n              -76.2121582,\n              45.44471679\n            ],\n            [\n              -76.20666504,\n              45.44471679\n            ],\n            [\n              -76.20666504,\n              45.44086267\n            ],\n            [\n              -76.2121582,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.44471679\n            ],\n            [\n              -76.2121582,\n              45.44857065\n            ],\n            [\n              -76.20666504,\n              45.44857065\n            ],\n            [\n              -76.20666504,\n              45.44471679\n            ],\n            [\n              -76.2121582,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.44857065\n            ],\n            [\n              -76.2121582,\n              45.45242424\n            ],\n            [\n              -76.20666504,\n              45.45242424\n            ],\n            [\n              -76.20666504,\n              45.44857065\n            ],\n            [\n              -76.2121582,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.45242424\n            ],\n            [\n              -76.2121582,\n              45.45627757\n            ],\n            [\n              -76.20666504,\n              45.45627757\n            ],\n            [\n              -76.20666504,\n              45.45242424\n            ],\n            [\n              -76.2121582,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.45627757\n            ],\n            [\n              -76.2121582,\n              45.46013064\n            ],\n            [\n              -76.20666504,\n              45.46013064\n            ],\n            [\n              -76.20666504,\n              45.45627757\n            ],\n            [\n              -76.2121582,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.46013064\n            ],\n            [\n              -76.2121582,\n              45.46398344\n            ],\n            [\n              -76.20666504,\n              45.46398344\n            ],\n            [\n              -76.20666504,\n              45.46013064\n            ],\n            [\n              -76.2121582,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.46398344\n            ],\n            [\n              -76.2121582,\n              45.46783598\n            ],\n            [\n              -76.20666504,\n              45.46783598\n            ],\n            [\n              -76.20666504,\n              45.46398344\n            ],\n            [\n              -76.2121582,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.47939202\n            ],\n            [\n              -76.2121582,\n              45.48324351\n            ],\n            [\n              -76.20666504,\n              45.48324351\n            ],\n            [\n              -76.20666504,\n              45.47939202\n            ],\n            [\n              -76.2121582,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.48324351\n            ],\n            [\n              -76.2121582,\n              45.48709473\n            ],\n            [\n              -76.20666504,\n              45.48709473\n            ],\n            [\n              -76.20666504,\n              45.48324351\n            ],\n            [\n              -76.2121582,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.48709473\n            ],\n            [\n              -76.2121582,\n              45.49094569\n            ],\n            [\n              -76.20666504,\n              45.49094569\n            ],\n            [\n              -76.20666504,\n              45.48709473\n            ],\n            [\n              -76.2121582,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.49094569\n            ],\n            [\n              -76.2121582,\n              45.49479639\n            ],\n            [\n              -76.20666504,\n              45.49479639\n            ],\n            [\n              -76.20666504,\n              45.49094569\n            ],\n            [\n              -76.2121582,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.49479639\n            ],\n            [\n              -76.2121582,\n              45.49864682\n            ],\n            [\n              -76.20666504,\n              45.49864682\n            ],\n            [\n              -76.20666504,\n              45.49479639\n            ],\n            [\n              -76.2121582,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.49864682\n            ],\n            [\n              -76.2121582,\n              45.50249699\n            ],\n            [\n              -76.20666504,\n              45.50249699\n            ],\n            [\n              -76.20666504,\n              45.49864682\n            ],\n            [\n              -76.2121582,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.50249699\n            ],\n            [\n              -76.2121582,\n              45.5063469\n            ],\n            [\n              -76.20666504,\n              45.5063469\n            ],\n            [\n              -76.20666504,\n              45.50249699\n            ],\n            [\n              -76.2121582,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.5063469\n            ],\n            [\n              -76.2121582,\n              45.51019654\n            ],\n            [\n              -76.20666504,\n              45.51019654\n            ],\n            [\n              -76.20666504,\n              45.5063469\n            ],\n            [\n              -76.2121582,\n              45.5063469\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.51019654\n            ],\n            [\n              -76.2121582,\n              45.51404593\n            ],\n            [\n              -76.20666504,\n              45.51404593\n            ],\n            [\n              -76.20666504,\n              45.51019654\n            ],\n            [\n              -76.2121582,\n              45.51019654\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2121582,\n              45.51404593\n            ],\n            [\n              -76.2121582,\n              45.51789504\n            ],\n            [\n              -76.20666504,\n              45.51789504\n            ],\n            [\n              -76.20666504,\n              45.51404593\n            ],\n            [\n              -76.2121582,\n              45.51404593\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.42544356\n            ],\n            [\n              -76.21765137,\n              45.42929873\n            ],\n            [\n              -76.2121582,\n              45.42929873\n            ],\n            [\n              -76.2121582,\n              45.42544356\n            ],\n            [\n              -76.21765137,\n              45.42544356\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.42929873\n            ],\n            [\n              -76.21765137,\n              45.43315364\n            ],\n            [\n              -76.2121582,\n              45.43315364\n            ],\n            [\n              -76.2121582,\n              45.42929873\n            ],\n            [\n              -76.21765137,\n              45.42929873\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.43315364\n            ],\n            [\n              -76.21765137,\n              45.43700829\n            ],\n            [\n              -76.2121582,\n              45.43700829\n            ],\n            [\n              -76.2121582,\n              45.43315364\n            ],\n            [\n              -76.21765137,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.43700829\n            ],\n            [\n              -76.21765137,\n              45.44086267\n            ],\n            [\n              -76.2121582,\n              45.44086267\n            ],\n            [\n              -76.2121582,\n              45.43700829\n            ],\n            [\n              -76.21765137,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.44086267\n            ],\n            [\n              -76.21765137,\n              45.44471679\n            ],\n            [\n              -76.2121582,\n              45.44471679\n            ],\n            [\n              -76.2121582,\n              45.44086267\n            ],\n            [\n              -76.21765137,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.44471679\n            ],\n            [\n              -76.21765137,\n              45.44857065\n            ],\n            [\n              -76.2121582,\n              45.44857065\n            ],\n            [\n              -76.2121582,\n              45.44471679\n            ],\n            [\n              -76.21765137,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.44857065\n            ],\n            [\n              -76.21765137,\n              45.45242424\n            ],\n            [\n              -76.2121582,\n              45.45242424\n            ],\n            [\n              -76.2121582,\n              45.44857065\n            ],\n            [\n              -76.21765137,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.45242424\n            ],\n            [\n              -76.21765137,\n              45.45627757\n            ],\n            [\n              -76.2121582,\n              45.45627757\n            ],\n            [\n              -76.2121582,\n              45.45242424\n            ],\n            [\n              -76.21765137,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.45627757\n            ],\n            [\n              -76.21765137,\n              45.46013064\n            ],\n            [\n              -76.2121582,\n              45.46013064\n            ],\n            [\n              -76.2121582,\n              45.45627757\n            ],\n            [\n              -76.21765137,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.46013064\n            ],\n            [\n              -76.21765137,\n              45.46398344\n            ],\n            [\n              -76.2121582,\n              45.46398344\n            ],\n            [\n              -76.2121582,\n              45.46013064\n            ],\n            [\n              -76.21765137,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.46398344\n            ],\n            [\n              -76.21765137,\n              45.46783598\n            ],\n            [\n              -76.2121582,\n              45.46783598\n            ],\n            [\n              -76.2121582,\n              45.46398344\n            ],\n            [\n              -76.21765137,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.46783598\n            ],\n            [\n              -76.21765137,\n              45.47168826\n            ],\n            [\n              -76.2121582,\n              45.47168826\n            ],\n            [\n              -76.2121582,\n              45.46783598\n            ],\n            [\n              -76.21765137,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.48324351\n            ],\n            [\n              -76.21765137,\n              45.48709473\n            ],\n            [\n              -76.2121582,\n              45.48709473\n            ],\n            [\n              -76.2121582,\n              45.48324351\n            ],\n            [\n              -76.21765137,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.48709473\n            ],\n            [\n              -76.21765137,\n              45.49094569\n            ],\n            [\n              -76.2121582,\n              45.49094569\n            ],\n            [\n              -76.2121582,\n              45.48709473\n            ],\n            [\n              -76.21765137,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.49094569\n            ],\n            [\n              -76.21765137,\n              45.49479639\n            ],\n            [\n              -76.2121582,\n              45.49479639\n            ],\n            [\n              -76.2121582,\n              45.49094569\n            ],\n            [\n              -76.21765137,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.49479639\n            ],\n            [\n              -76.21765137,\n              45.49864682\n            ],\n            [\n              -76.2121582,\n              45.49864682\n            ],\n            [\n              -76.2121582,\n              45.49479639\n            ],\n            [\n              -76.21765137,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.49864682\n            ],\n            [\n              -76.21765137,\n              45.50249699\n            ],\n            [\n              -76.2121582,\n              45.50249699\n            ],\n            [\n              -76.2121582,\n              45.49864682\n            ],\n            [\n              -76.21765137,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.50249699\n            ],\n            [\n              -76.21765137,\n              45.5063469\n            ],\n            [\n              -76.2121582,\n              45.5063469\n            ],\n            [\n              -76.2121582,\n              45.50249699\n            ],\n            [\n              -76.21765137,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.5063469\n            ],\n            [\n              -76.21765137,\n              45.51019654\n            ],\n            [\n              -76.2121582,\n              45.51019654\n            ],\n            [\n              -76.2121582,\n              45.5063469\n            ],\n            [\n              -76.21765137,\n              45.5063469\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.51019654\n            ],\n            [\n              -76.21765137,\n              45.51404593\n            ],\n            [\n              -76.2121582,\n              45.51404593\n            ],\n            [\n              -76.2121582,\n              45.51019654\n            ],\n            [\n              -76.21765137,\n              45.51019654\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.21765137,\n              45.51404593\n            ],\n            [\n              -76.21765137,\n              45.51789504\n            ],\n            [\n              -76.2121582,\n              45.51789504\n            ],\n            [\n              -76.2121582,\n              45.51404593\n            ],\n            [\n              -76.21765137,\n              45.51404593\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.42929873\n            ],\n            [\n              -76.22314453,\n              45.43315364\n            ],\n            [\n              -76.21765137,\n              45.43315364\n            ],\n            [\n              -76.21765137,\n              45.42929873\n            ],\n            [\n              -76.22314453,\n              45.42929873\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.43315364\n            ],\n            [\n              -76.22314453,\n              45.43700829\n            ],\n            [\n              -76.21765137,\n              45.43700829\n            ],\n            [\n              -76.21765137,\n              45.43315364\n            ],\n            [\n              -76.22314453,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.43700829\n            ],\n            [\n              -76.22314453,\n              45.44086267\n            ],\n            [\n              -76.21765137,\n              45.44086267\n            ],\n            [\n              -76.21765137,\n              45.43700829\n            ],\n            [\n              -76.22314453,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.44086267\n            ],\n            [\n              -76.22314453,\n              45.44471679\n            ],\n            [\n              -76.21765137,\n              45.44471679\n            ],\n            [\n              -76.21765137,\n              45.44086267\n            ],\n            [\n              -76.22314453,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.44471679\n            ],\n            [\n              -76.22314453,\n              45.44857065\n            ],\n            [\n              -76.21765137,\n              45.44857065\n            ],\n            [\n              -76.21765137,\n              45.44471679\n            ],\n            [\n              -76.22314453,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.44857065\n            ],\n            [\n              -76.22314453,\n              45.45242424\n            ],\n            [\n              -76.21765137,\n              45.45242424\n            ],\n            [\n              -76.21765137,\n              45.44857065\n            ],\n            [\n              -76.22314453,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.45242424\n            ],\n            [\n              -76.22314453,\n              45.45627757\n            ],\n            [\n              -76.21765137,\n              45.45627757\n            ],\n            [\n              -76.21765137,\n              45.45242424\n            ],\n            [\n              -76.22314453,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.45627757\n            ],\n            [\n              -76.22314453,\n              45.46013064\n            ],\n            [\n              -76.21765137,\n              45.46013064\n            ],\n            [\n              -76.21765137,\n              45.45627757\n            ],\n            [\n              -76.22314453,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.46013064\n            ],\n            [\n              -76.22314453,\n              45.46398344\n            ],\n            [\n              -76.21765137,\n              45.46398344\n            ],\n            [\n              -76.21765137,\n              45.46013064\n            ],\n            [\n              -76.22314453,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.46398344\n            ],\n            [\n              -76.22314453,\n              45.46783598\n            ],\n            [\n              -76.21765137,\n              45.46783598\n            ],\n            [\n              -76.21765137,\n              45.46398344\n            ],\n            [\n              -76.22314453,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.46783598\n            ],\n            [\n              -76.22314453,\n              45.47168826\n            ],\n            [\n              -76.21765137,\n              45.47168826\n            ],\n            [\n              -76.21765137,\n              45.46783598\n            ],\n            [\n              -76.22314453,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.47168826\n            ],\n            [\n              -76.22314453,\n              45.47554027\n            ],\n            [\n              -76.21765137,\n              45.47554027\n            ],\n            [\n              -76.21765137,\n              45.47168826\n            ],\n            [\n              -76.22314453,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.48709473\n            ],\n            [\n              -76.22314453,\n              45.49094569\n            ],\n            [\n              -76.21765137,\n              45.49094569\n            ],\n            [\n              -76.21765137,\n              45.48709473\n            ],\n            [\n              -76.22314453,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.49094569\n            ],\n            [\n              -76.22314453,\n              45.49479639\n            ],\n            [\n              -76.21765137,\n              45.49479639\n            ],\n            [\n              -76.21765137,\n              45.49094569\n            ],\n            [\n              -76.22314453,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.49479639\n            ],\n            [\n              -76.22314453,\n              45.49864682\n            ],\n            [\n              -76.21765137,\n              45.49864682\n            ],\n            [\n              -76.21765137,\n              45.49479639\n            ],\n            [\n              -76.22314453,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.49864682\n            ],\n            [\n              -76.22314453,\n              45.50249699\n            ],\n            [\n              -76.21765137,\n              45.50249699\n            ],\n            [\n              -76.21765137,\n              45.49864682\n            ],\n            [\n              -76.22314453,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.50249699\n            ],\n            [\n              -76.22314453,\n              45.5063469\n            ],\n            [\n              -76.21765137,\n              45.5063469\n            ],\n            [\n              -76.21765137,\n              45.50249699\n            ],\n            [\n              -76.22314453,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.5063469\n            ],\n            [\n              -76.22314453,\n              45.51019654\n            ],\n            [\n              -76.21765137,\n              45.51019654\n            ],\n            [\n              -76.21765137,\n              45.5063469\n            ],\n            [\n              -76.22314453,\n              45.5063469\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.51019654\n            ],\n            [\n              -76.22314453,\n              45.51404593\n            ],\n            [\n              -76.21765137,\n              45.51404593\n            ],\n            [\n              -76.21765137,\n              45.51019654\n            ],\n            [\n              -76.22314453,\n              45.51019654\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.22314453,\n              45.51404593\n            ],\n            [\n              -76.22314453,\n              45.51789504\n            ],\n            [\n              -76.21765137,\n              45.51789504\n            ],\n            [\n              -76.21765137,\n              45.51404593\n            ],\n            [\n              -76.22314453,\n              45.51404593\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.43315364\n            ],\n            [\n              -76.2286377,\n              45.43700829\n            ],\n            [\n              -76.22314453,\n              45.43700829\n            ],\n            [\n              -76.22314453,\n              45.43315364\n            ],\n            [\n              -76.2286377,\n              45.43315364\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.43700829\n            ],\n            [\n              -76.2286377,\n              45.44086267\n            ],\n            [\n              -76.22314453,\n              45.44086267\n            ],\n            [\n              -76.22314453,\n              45.43700829\n            ],\n            [\n              -76.2286377,\n              45.43700829\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.44086267\n            ],\n            [\n              -76.2286377,\n              45.44471679\n            ],\n            [\n              -76.22314453,\n              45.44471679\n            ],\n            [\n              -76.22314453,\n              45.44086267\n            ],\n            [\n              -76.2286377,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.44471679\n            ],\n            [\n              -76.2286377,\n              45.44857065\n            ],\n            [\n              -76.22314453,\n              45.44857065\n            ],\n            [\n              -76.22314453,\n              45.44471679\n            ],\n            [\n              -76.2286377,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.44857065\n            ],\n            [\n              -76.2286377,\n              45.45242424\n            ],\n            [\n              -76.22314453,\n              45.45242424\n            ],\n            [\n              -76.22314453,\n              45.44857065\n            ],\n            [\n              -76.2286377,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.45242424\n            ],\n            [\n              -76.2286377,\n              45.45627757\n            ],\n            [\n              -76.22314453,\n              45.45627757\n            ],\n            [\n              -76.22314453,\n              45.45242424\n            ],\n            [\n              -76.2286377,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.45627757\n            ],\n            [\n              -76.2286377,\n              45.46013064\n            ],\n            [\n              -76.22314453,\n              45.46013064\n            ],\n            [\n              -76.22314453,\n              45.45627757\n            ],\n            [\n              -76.2286377,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.46013064\n            ],\n            [\n              -76.2286377,\n              45.46398344\n            ],\n            [\n              -76.22314453,\n              45.46398344\n            ],\n            [\n              -76.22314453,\n              45.46013064\n            ],\n            [\n              -76.2286377,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.46398344\n            ],\n            [\n              -76.2286377,\n              45.46783598\n            ],\n            [\n              -76.22314453,\n              45.46783598\n            ],\n            [\n              -76.22314453,\n              45.46398344\n            ],\n            [\n              -76.2286377,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.46783598\n            ],\n            [\n              -76.2286377,\n              45.47168826\n            ],\n            [\n              -76.22314453,\n              45.47168826\n            ],\n            [\n              -76.22314453,\n              45.46783598\n            ],\n            [\n              -76.2286377,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.47168826\n            ],\n            [\n              -76.2286377,\n              45.47554027\n            ],\n            [\n              -76.22314453,\n              45.47554027\n            ],\n            [\n              -76.22314453,\n              45.47168826\n            ],\n            [\n              -76.2286377,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.47554027\n            ],\n            [\n              -76.2286377,\n              45.47939202\n            ],\n            [\n              -76.22314453,\n              45.47939202\n            ],\n            [\n              -76.22314453,\n              45.47554027\n            ],\n            [\n              -76.2286377,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.47939202\n            ],\n            [\n              -76.2286377,\n              45.48324351\n            ],\n            [\n              -76.22314453,\n              45.48324351\n            ],\n            [\n              -76.22314453,\n              45.47939202\n            ],\n            [\n              -76.2286377,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.48709473\n            ],\n            [\n              -76.2286377,\n              45.49094569\n            ],\n            [\n              -76.22314453,\n              45.49094569\n            ],\n            [\n              -76.22314453,\n              45.48709473\n            ],\n            [\n              -76.2286377,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.49094569\n            ],\n            [\n              -76.2286377,\n              45.49479639\n            ],\n            [\n              -76.22314453,\n              45.49479639\n            ],\n            [\n              -76.22314453,\n              45.49094569\n            ],\n            [\n              -76.2286377,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.49479639\n            ],\n            [\n              -76.2286377,\n              45.49864682\n            ],\n            [\n              -76.22314453,\n              45.49864682\n            ],\n            [\n              -76.22314453,\n              45.49479639\n            ],\n            [\n              -76.2286377,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.49864682\n            ],\n            [\n              -76.2286377,\n              45.50249699\n            ],\n            [\n              -76.22314453,\n              45.50249699\n            ],\n            [\n              -76.22314453,\n              45.49864682\n            ],\n            [\n              -76.2286377,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.50249699\n            ],\n            [\n              -76.2286377,\n              45.5063469\n            ],\n            [\n              -76.22314453,\n              45.5063469\n            ],\n            [\n              -76.22314453,\n              45.50249699\n            ],\n            [\n              -76.2286377,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.5063469\n            ],\n            [\n              -76.2286377,\n              45.51019654\n            ],\n            [\n              -76.22314453,\n              45.51019654\n            ],\n            [\n              -76.22314453,\n              45.5063469\n            ],\n            [\n              -76.2286377,\n              45.5063469\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.2286377,\n              45.51019654\n            ],\n            [\n              -76.2286377,\n              45.51404593\n            ],\n            [\n              -76.22314453,\n              45.51404593\n            ],\n            [\n              -76.22314453,\n              45.51019654\n            ],\n            [\n              -76.2286377,\n              45.51019654\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.44086267\n            ],\n            [\n              -76.23413086,\n              45.44471679\n            ],\n            [\n              -76.2286377,\n              45.44471679\n            ],\n            [\n              -76.2286377,\n              45.44086267\n            ],\n            [\n              -76.23413086,\n              45.44086267\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.44471679\n            ],\n            [\n              -76.23413086,\n              45.44857065\n            ],\n            [\n              -76.2286377,\n              45.44857065\n            ],\n            [\n              -76.2286377,\n              45.44471679\n            ],\n            [\n              -76.23413086,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.44857065\n            ],\n            [\n              -76.23413086,\n              45.45242424\n            ],\n            [\n              -76.2286377,\n              45.45242424\n            ],\n            [\n              -76.2286377,\n              45.44857065\n            ],\n            [\n              -76.23413086,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.45242424\n            ],\n            [\n              -76.23413086,\n              45.45627757\n            ],\n            [\n              -76.2286377,\n              45.45627757\n            ],\n            [\n              -76.2286377,\n              45.45242424\n            ],\n            [\n              -76.23413086,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.45627757\n            ],\n            [\n              -76.23413086,\n              45.46013064\n            ],\n            [\n              -76.2286377,\n              45.46013064\n            ],\n            [\n              -76.2286377,\n              45.45627757\n            ],\n            [\n              -76.23413086,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.46013064\n            ],\n            [\n              -76.23413086,\n              45.46398344\n            ],\n            [\n              -76.2286377,\n              45.46398344\n            ],\n            [\n              -76.2286377,\n              45.46013064\n            ],\n            [\n              -76.23413086,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.46398344\n            ],\n            [\n              -76.23413086,\n              45.46783598\n            ],\n            [\n              -76.2286377,\n              45.46783598\n            ],\n            [\n              -76.2286377,\n              45.46398344\n            ],\n            [\n              -76.23413086,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.46783598\n            ],\n            [\n              -76.23413086,\n              45.47168826\n            ],\n            [\n              -76.2286377,\n              45.47168826\n            ],\n            [\n              -76.2286377,\n              45.46783598\n            ],\n            [\n              -76.23413086,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.47168826\n            ],\n            [\n              -76.23413086,\n              45.47554027\n            ],\n            [\n              -76.2286377,\n              45.47554027\n            ],\n            [\n              -76.2286377,\n              45.47168826\n            ],\n            [\n              -76.23413086,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.47554027\n            ],\n            [\n              -76.23413086,\n              45.47939202\n            ],\n            [\n              -76.2286377,\n              45.47939202\n            ],\n            [\n              -76.2286377,\n              45.47554027\n            ],\n            [\n              -76.23413086,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.47939202\n            ],\n            [\n              -76.23413086,\n              45.48324351\n            ],\n            [\n              -76.2286377,\n              45.48324351\n            ],\n            [\n              -76.2286377,\n              45.47939202\n            ],\n            [\n              -76.23413086,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.48324351\n            ],\n            [\n              -76.23413086,\n              45.48709473\n            ],\n            [\n              -76.2286377,\n              45.48709473\n            ],\n            [\n              -76.2286377,\n              45.48324351\n            ],\n            [\n              -76.23413086,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.48709473\n            ],\n            [\n              -76.23413086,\n              45.49094569\n            ],\n            [\n              -76.2286377,\n              45.49094569\n            ],\n            [\n              -76.2286377,\n              45.48709473\n            ],\n            [\n              -76.23413086,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.49094569\n            ],\n            [\n              -76.23413086,\n              45.49479639\n            ],\n            [\n              -76.2286377,\n              45.49479639\n            ],\n            [\n              -76.2286377,\n              45.49094569\n            ],\n            [\n              -76.23413086,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.49479639\n            ],\n            [\n              -76.23413086,\n              45.49864682\n            ],\n            [\n              -76.2286377,\n              45.49864682\n            ],\n            [\n              -76.2286377,\n              45.49479639\n            ],\n            [\n              -76.23413086,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.49864682\n            ],\n            [\n              -76.23413086,\n              45.50249699\n            ],\n            [\n              -76.2286377,\n              45.50249699\n            ],\n            [\n              -76.2286377,\n              45.49864682\n            ],\n            [\n              -76.23413086,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.50249699\n            ],\n            [\n              -76.23413086,\n              45.5063469\n            ],\n            [\n              -76.2286377,\n              45.5063469\n            ],\n            [\n              -76.2286377,\n              45.50249699\n            ],\n            [\n              -76.23413086,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.5063469\n            ],\n            [\n              -76.23413086,\n              45.51019654\n            ],\n            [\n              -76.2286377,\n              45.51019654\n            ],\n            [\n              -76.2286377,\n              45.5063469\n            ],\n            [\n              -76.23413086,\n              45.5063469\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23413086,\n              45.51019654\n            ],\n            [\n              -76.23413086,\n              45.51404593\n            ],\n            [\n              -76.2286377,\n              45.51404593\n            ],\n            [\n              -76.2286377,\n              45.51019654\n            ],\n            [\n              -76.23413086,\n              45.51019654\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.44471679\n            ],\n            [\n              -76.23962402,\n              45.44857065\n            ],\n            [\n              -76.23413086,\n              45.44857065\n            ],\n            [\n              -76.23413086,\n              45.44471679\n            ],\n            [\n              -76.23962402,\n              45.44471679\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.44857065\n            ],\n            [\n              -76.23962402,\n              45.45242424\n            ],\n            [\n              -76.23413086,\n              45.45242424\n            ],\n            [\n              -76.23413086,\n              45.44857065\n            ],\n            [\n              -76.23962402,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.45242424\n            ],\n            [\n              -76.23962402,\n              45.45627757\n            ],\n            [\n              -76.23413086,\n              45.45627757\n            ],\n            [\n              -76.23413086,\n              45.45242424\n            ],\n            [\n              -76.23962402,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.45627757\n            ],\n            [\n              -76.23962402,\n              45.46013064\n            ],\n            [\n              -76.23413086,\n              45.46013064\n            ],\n            [\n              -76.23413086,\n              45.45627757\n            ],\n            [\n              -76.23962402,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.46013064\n            ],\n            [\n              -76.23962402,\n              45.46398344\n            ],\n            [\n              -76.23413086,\n              45.46398344\n            ],\n            [\n              -76.23413086,\n              45.46013064\n            ],\n            [\n              -76.23962402,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.46398344\n            ],\n            [\n              -76.23962402,\n              45.46783598\n            ],\n            [\n              -76.23413086,\n              45.46783598\n            ],\n            [\n              -76.23413086,\n              45.46398344\n            ],\n            [\n              -76.23962402,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.46783598\n            ],\n            [\n              -76.23962402,\n              45.47168826\n            ],\n            [\n              -76.23413086,\n              45.47168826\n            ],\n            [\n              -76.23413086,\n              45.46783598\n            ],\n            [\n              -76.23962402,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.47168826\n            ],\n            [\n              -76.23962402,\n              45.47554027\n            ],\n            [\n              -76.23413086,\n              45.47554027\n            ],\n            [\n              -76.23413086,\n              45.47168826\n            ],\n            [\n              -76.23962402,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.47554027\n            ],\n            [\n              -76.23962402,\n              45.47939202\n            ],\n            [\n              -76.23413086,\n              45.47939202\n            ],\n            [\n              -76.23413086,\n              45.47554027\n            ],\n            [\n              -76.23962402,\n              45.47554027\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.47939202\n            ],\n            [\n              -76.23962402,\n              45.48324351\n            ],\n            [\n              -76.23413086,\n              45.48324351\n            ],\n            [\n              -76.23413086,\n              45.47939202\n            ],\n            [\n              -76.23962402,\n              45.47939202\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.48324351\n            ],\n            [\n              -76.23962402,\n              45.48709473\n            ],\n            [\n              -76.23413086,\n              45.48709473\n            ],\n            [\n              -76.23413086,\n              45.48324351\n            ],\n            [\n              -76.23962402,\n              45.48324351\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.48709473\n            ],\n            [\n              -76.23962402,\n              45.49094569\n            ],\n            [\n              -76.23413086,\n              45.49094569\n            ],\n            [\n              -76.23413086,\n              45.48709473\n            ],\n            [\n              -76.23962402,\n              45.48709473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.49094569\n            ],\n            [\n              -76.23962402,\n              45.49479639\n            ],\n            [\n              -76.23413086,\n              45.49479639\n            ],\n            [\n              -76.23413086,\n              45.49094569\n            ],\n            [\n              -76.23962402,\n              45.49094569\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.49479639\n            ],\n            [\n              -76.23962402,\n              45.49864682\n            ],\n            [\n              -76.23413086,\n              45.49864682\n            ],\n            [\n              -76.23413086,\n              45.49479639\n            ],\n            [\n              -76.23962402,\n              45.49479639\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.49864682\n            ],\n            [\n              -76.23962402,\n              45.50249699\n            ],\n            [\n              -76.23413086,\n              45.50249699\n            ],\n            [\n              -76.23413086,\n              45.49864682\n            ],\n            [\n              -76.23962402,\n              45.49864682\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.23962402,\n              45.50249699\n            ],\n            [\n              -76.23962402,\n              45.5063469\n            ],\n            [\n              -76.23413086,\n              45.5063469\n            ],\n            [\n              -76.23413086,\n              45.50249699\n            ],\n            [\n              -76.23962402,\n              45.50249699\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.24511719,\n              45.44857065\n            ],\n            [\n              -76.24511719,\n              45.45242424\n            ],\n            [\n              -76.23962402,\n              45.45242424\n            ],\n            [\n              -76.23962402,\n              45.44857065\n            ],\n            [\n              -76.24511719,\n              45.44857065\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.24511719,\n              45.45242424\n            ],\n            [\n              -76.24511719,\n              45.45627757\n            ],\n            [\n              -76.23962402,\n              45.45627757\n            ],\n            [\n              -76.23962402,\n              45.45242424\n            ],\n            [\n              -76.24511719,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.24511719,\n              45.45627757\n            ],\n            [\n              -76.24511719,\n              45.46013064\n            ],\n            [\n              -76.23962402,\n              45.46013064\n            ],\n            [\n              -76.23962402,\n              45.45627757\n            ],\n            [\n              -76.24511719,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.24511719,\n              45.46013064\n            ],\n            [\n              -76.24511719,\n              45.46398344\n            ],\n            [\n              -76.23962402,\n              45.46398344\n            ],\n            [\n              -76.23962402,\n              45.46013064\n            ],\n            [\n              -76.24511719,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.24511719,\n              45.46398344\n            ],\n            [\n              -76.24511719,\n              45.46783598\n            ],\n            [\n              -76.23962402,\n              45.46783598\n            ],\n            [\n              -76.23962402,\n              45.46398344\n            ],\n            [\n              -76.24511719,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.24511719,\n              45.46783598\n            ],\n            [\n              -76.24511719,\n              45.47168826\n            ],\n            [\n              -76.23962402,\n              45.47168826\n            ],\n            [\n              -76.23962402,\n              45.46783598\n            ],\n            [\n              -76.24511719,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.24511719,\n              45.47168826\n            ],\n            [\n              -76.24511719,\n              45.47554027\n            ],\n            [\n              -76.23962402,\n              45.47554027\n            ],\n            [\n              -76.23962402,\n              45.47168826\n            ],\n            [\n              -76.24511719,\n              45.47168826\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25061035,\n              45.45242424\n            ],\n            [\n              -76.25061035,\n              45.45627757\n            ],\n            [\n              -76.24511719,\n              45.45627757\n            ],\n            [\n              -76.24511719,\n              45.45242424\n            ],\n            [\n              -76.25061035,\n              45.45242424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25061035,\n              45.45627757\n            ],\n            [\n              -76.25061035,\n              45.46013064\n            ],\n            [\n              -76.24511719,\n              45.46013064\n            ],\n            [\n              -76.24511719,\n              45.45627757\n            ],\n            [\n              -76.25061035,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25061035,\n              45.46013064\n            ],\n            [\n              -76.25061035,\n              45.46398344\n            ],\n            [\n              -76.24511719,\n              45.46398344\n            ],\n            [\n              -76.24511719,\n              45.46013064\n            ],\n            [\n              -76.25061035,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25061035,\n              45.46398344\n            ],\n            [\n              -76.25061035,\n              45.46783598\n            ],\n            [\n              -76.24511719,\n              45.46783598\n            ],\n            [\n              -76.24511719,\n              45.46398344\n            ],\n            [\n              -76.25061035,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25061035,\n              45.46783598\n            ],\n            [\n              -76.25061035,\n              45.47168826\n            ],\n            [\n              -76.24511719,\n              45.47168826\n            ],\n            [\n              -76.24511719,\n              45.46783598\n            ],\n            [\n              -76.25061035,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25610352,\n              45.45627757\n            ],\n            [\n              -76.25610352,\n              45.46013064\n            ],\n            [\n              -76.25061035,\n              45.46013064\n            ],\n            [\n              -76.25061035,\n              45.45627757\n            ],\n            [\n              -76.25610352,\n              45.45627757\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25610352,\n              45.46013064\n            ],\n            [\n              -76.25610352,\n              45.46398344\n            ],\n            [\n              -76.25061035,\n              45.46398344\n            ],\n            [\n              -76.25061035,\n              45.46013064\n            ],\n            [\n              -76.25610352,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25610352,\n              45.46398344\n            ],\n            [\n              -76.25610352,\n              45.46783598\n            ],\n            [\n              -76.25061035,\n              45.46783598\n            ],\n            [\n              -76.25061035,\n              45.46398344\n            ],\n            [\n              -76.25610352,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.25610352,\n              45.46783598\n            ],\n            [\n              -76.25610352,\n              45.47168826\n            ],\n            [\n              -76.25061035,\n              45.47168826\n            ],\n            [\n              -76.25061035,\n              45.46783598\n            ],\n            [\n              -76.25610352,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.26159668,\n              45.46013064\n            ],\n            [\n              -76.26159668,\n              45.46398344\n            ],\n            [\n              -76.25610352,\n              45.46398344\n            ],\n            [\n              -76.25610352,\n              45.46013064\n            ],\n            [\n              -76.26159668,\n              45.46013064\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.26159668,\n              45.46398344\n            ],\n            [\n              -76.26159668,\n              45.46783598\n            ],\n            [\n              -76.25610352,\n              45.46783598\n            ],\n            [\n              -76.25610352,\n              45.46398344\n            ],\n            [\n              -76.26159668,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.26159668,\n              45.46783598\n            ],\n            [\n              -76.26159668,\n              45.47168826\n            ],\n            [\n              -76.25610352,\n              45.47168826\n            ],\n            [\n              -76.25610352,\n              45.46783598\n            ],\n            [\n              -76.26159668,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.26708984,\n              45.46398344\n            ],\n            [\n              -76.26708984,\n              45.46783598\n            ],\n            [\n              -76.26159668,\n              45.46783598\n            ],\n            [\n              -76.26159668,\n              45.46398344\n            ],\n            [\n              -76.26708984,\n              45.46398344\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.26708984,\n              45.46783598\n            ],\n            [\n              -76.26708984,\n              45.47168826\n            ],\n            [\n              -76.26159668,\n              45.47168826\n            ],\n            [\n              -76.26159668,\n              45.46783598\n            ],\n            [\n              -76.26708984,\n              45.46783598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -76.165286,\n              45.479514\n            ],\n            [\n              -76.140095,\n              45.457437\n            ],\n            [\n              -76.162348,\n              45.444872\n            ],\n            [\n              -76.168656,\n              45.441087\n            ],\n            [\n              -76.201963,\n              45.420225\n            ],\n            [\n              -76.213668,\n              45.429276\n            ],\n            [\n              -76.214261,\n              45.429917\n            ],\n            [\n              -76.227477,\n              45.440383\n            ],\n            [\n              -76.263056,\n              45.467983\n            ],\n            [\n              -76.245084,\n              45.468609\n            ],\n            [\n              -76.240206,\n              45.471202\n            ],\n            [\n              -76.238518,\n              45.475254\n            ],\n            [\n              -76.233483,\n              45.507829\n            ],\n            [\n              -76.227816,\n              45.511836\n            ],\n            [\n              -76.212117,\n              45.51623\n            ],\n            [\n              -76.191776,\n              45.50154\n            ],\n            [\n              -76.174016,\n              45.486911\n            ],\n            [\n              -76.165286,\n              45.479514\n            ]\n          ],\n          [\n            [\n              -76.227618,\n              45.489247\n            ],\n            [\n              -76.232113,\n              45.486983\n            ],\n            [\n              -76.232151,\n              45.486379\n            ],\n            [\n              -76.231812,\n              45.485106\n            ],\n            [\n              -76.230698,\n              45.483236\n            ],\n            [\n              -76.225664,\n              45.477365\n            ],\n            [\n              -76.223568,\n              45.475174\n            ],\n            [\n              -76.202829,\n              45.458815\n            ],\n            [\n              -76.200229,\n              45.458822\n            ],\n            [\n              -76.199069,\n              45.459164\n            ],\n            [\n              -76.188361,\n              45.465784\n            ],\n            [\n              -76.204505,\n              45.479018\n            ],\n            [\n              -76.215555,\n              45.488534\n            ],\n            [\n              -76.220249,\n              45.492175\n            ],\n            [\n              -76.221154,\n              45.493315\n            ],\n            [\n              -76.22631,\n              45.490189\n            ],\n            [\n              -76.226543,\n              45.489754\n            ],\n            [\n              -76.227618,\n              45.489247\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/edgeline.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [\n        -80.160384,\n        32.766901\n      ],\n      [\n        -80.160216,\n        32.766845\n      ],\n      [\n        -80.159659,\n        32.766722\n      ],\n      [\n        -80.159356,\n        32.766633\n      ],\n      [\n        -80.159196,\n        32.766586\n      ],\n      [\n        -80.159096,\n        32.766571\n      ],\n      [\n        -80.159016,\n        32.766569\n      ],\n      [\n        -80.158947,\n        32.766581\n      ],\n      [\n        -80.158637,\n        32.766668\n      ],\n      [\n        -80.158527,\n        32.766691\n      ],\n      [\n        -80.158433,\n        32.766697\n      ],\n      [\n        -80.158367,\n        32.76669\n      ],\n      [\n        -80.158116,\n        32.766641\n      ],\n      [\n        -80.157565,\n        32.766507\n      ],\n      [\n        -80.157183,\n        32.766389\n      ],\n      [\n        -80.156946,\n        32.76633\n      ],\n      [\n        -80.156748,\n        32.766298\n      ],\n      [\n        -80.156657,\n        32.766279\n      ],\n      [\n        -80.156492,\n        32.766253\n      ],\n      [\n        -80.15626,\n        32.766181\n      ],\n      [\n        -80.156216,\n        32.766155\n      ],\n      [\n        -80.156166,\n        32.766118\n      ],\n      [\n        -80.156148,\n        32.7661\n      ],\n      [\n        -80.156125,\n        32.766052\n      ],\n      [\n        -80.156122,\n        32.766012\n      ],\n      [\n        -80.156131,\n        32.765974\n      ],\n      [\n        -80.156179,\n        32.765905\n      ],\n      [\n        -80.156198,\n        32.765856\n      ],\n      [\n        -80.15621,\n        32.765807\n      ],\n      [\n        -80.15625,\n        32.76548\n      ],\n      [\n        -80.156249,\n        32.765323\n      ],\n      [\n        -80.156235,\n        32.765284\n      ],\n      [\n        -80.156215,\n        32.765256\n      ],\n      [\n        -80.156181,\n        32.765226\n      ]\n    ]\n  },\n  \"properties\": {}\n}\n"
  },
  {
    "path": "test/fixtures/edgeline_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -80.15625,\n              32.75032261\n            ],\n            [\n              -80.15625,\n              32.76880048\n            ],\n            [\n              -80.13427734,\n              32.76880048\n            ],\n            [\n              -80.13427734,\n              32.75032261\n            ],\n            [\n              -80.15625,\n              32.75032261\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -80.17822266,\n              32.75032261\n            ],\n            [\n              -80.17822266,\n              32.76880048\n            ],\n            [\n              -80.15625,\n              32.76880048\n            ],\n            [\n              -80.15625,\n              32.75032261\n            ],\n            [\n              -80.17822266,\n              32.75032261\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [\n            -80.160384,\n            32.766901\n          ],\n          [\n            -80.160216,\n            32.766845\n          ],\n          [\n            -80.159659,\n            32.766722\n          ],\n          [\n            -80.159356,\n            32.766633\n          ],\n          [\n            -80.159196,\n            32.766586\n          ],\n          [\n            -80.159096,\n            32.766571\n          ],\n          [\n            -80.159016,\n            32.766569\n          ],\n          [\n            -80.158947,\n            32.766581\n          ],\n          [\n            -80.158637,\n            32.766668\n          ],\n          [\n            -80.158527,\n            32.766691\n          ],\n          [\n            -80.158433,\n            32.766697\n          ],\n          [\n            -80.158367,\n            32.76669\n          ],\n          [\n            -80.158116,\n            32.766641\n          ],\n          [\n            -80.157565,\n            32.766507\n          ],\n          [\n            -80.157183,\n            32.766389\n          ],\n          [\n            -80.156946,\n            32.76633\n          ],\n          [\n            -80.156748,\n            32.766298\n          ],\n          [\n            -80.156657,\n            32.766279\n          ],\n          [\n            -80.156492,\n            32.766253\n          ],\n          [\n            -80.15626,\n            32.766181\n          ],\n          [\n            -80.156216,\n            32.766155\n          ],\n          [\n            -80.156166,\n            32.766118\n          ],\n          [\n            -80.156148,\n            32.7661\n          ],\n          [\n            -80.156125,\n            32.766052\n          ],\n          [\n            -80.156122,\n            32.766012\n          ],\n          [\n            -80.156131,\n            32.765974\n          ],\n          [\n            -80.156179,\n            32.765905\n          ],\n          [\n            -80.156198,\n            32.765856\n          ],\n          [\n            -80.15621,\n            32.765807\n          ],\n          [\n            -80.15625,\n            32.76548\n          ],\n          [\n            -80.156249,\n            32.765323\n          ],\n          [\n            -80.156235,\n            32.765284\n          ],\n          [\n            -80.156215,\n            32.765256\n          ],\n          [\n            -80.156181,\n            32.765226\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/highzoom.geojson",
    "content": "{\"properties\":{\"osm_id\":0},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.04474940896034,38.90019399459534],[-77.04473063349724,38.90019399459534],[-77.04473063349724,38.90027122854152],[-77.04474672675133,38.900273315944304],[-77.04474672675133,38.900457007149065],[-77.04394474625587,38.90017520794709],[-77.04394206404686,38.900173120541425],[-77.04384550452232,38.9001710331357],[-77.04384550452232,38.900141809449025],[-77.04365238547325,38.90007501240577],[-77.04365238547325,38.89989340762676],[-77.04371139407158,38.899916369176196],[-77.04371139407158,38.89986209641103],[-77.04369261860847,38.89986209641103],[-77.04369261860847,38.89969927786663],[-77.04452946782112,38.89969719044697],[-77.04460456967354,38.89967214140626],[-77.04460725188255,38.89969510302724],[-77.04474672675133,38.89969719044697],[-77.04474940896034,38.90019399459534],[-77.04474940896034,38.90019399459534],[-77.04474940896034,38.90019399459534]]]},\"type\":\"Feature\"}"
  },
  {
    "path": "test/fixtures/highzoom_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04368591,\n              38.89988401\n            ],\n            [\n              -77.04368591,\n              38.89991741\n            ],\n            [\n              -77.043643,\n              38.89991741\n            ],\n            [\n              -77.043643,\n              38.89988401\n            ],\n            [\n              -77.04368591,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04368591,\n              38.89991741\n            ],\n            [\n              -77.04368591,\n              38.89995081\n            ],\n            [\n              -77.043643,\n              38.89995081\n            ],\n            [\n              -77.043643,\n              38.89991741\n            ],\n            [\n              -77.04368591,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04368591,\n              38.89995081\n            ],\n            [\n              -77.04368591,\n              38.89998421\n            ],\n            [\n              -77.043643,\n              38.89998421\n            ],\n            [\n              -77.043643,\n              38.89995081\n            ],\n            [\n              -77.04368591,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04368591,\n              38.89998421\n            ],\n            [\n              -77.04368591,\n              38.90001761\n            ],\n            [\n              -77.043643,\n              38.90001761\n            ],\n            [\n              -77.043643,\n              38.89998421\n            ],\n            [\n              -77.04368591,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04368591,\n              38.90001761\n            ],\n            [\n              -77.04368591,\n              38.90005101\n            ],\n            [\n              -77.043643,\n              38.90005101\n            ],\n            [\n              -77.043643,\n              38.90001761\n            ],\n            [\n              -77.04368591,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04368591,\n              38.90005101\n            ],\n            [\n              -77.04368591,\n              38.90008441\n            ],\n            [\n              -77.043643,\n              38.90008441\n            ],\n            [\n              -77.043643,\n              38.90005101\n            ],\n            [\n              -77.04368591,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04368591,\n              38.90008441\n            ],\n            [\n              -77.04368591,\n              38.9001178\n            ],\n            [\n              -77.043643,\n              38.9001178\n            ],\n            [\n              -77.043643,\n              38.90008441\n            ],\n            [\n              -77.04368591,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89968362\n            ],\n            [\n              -77.04372883,\n              38.89971702\n            ],\n            [\n              -77.04368591,\n              38.89971702\n            ],\n            [\n              -77.04368591,\n              38.89968362\n            ],\n            [\n              -77.04372883,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89971702\n            ],\n            [\n              -77.04372883,\n              38.89975042\n            ],\n            [\n              -77.04368591,\n              38.89975042\n            ],\n            [\n              -77.04368591,\n              38.89971702\n            ],\n            [\n              -77.04372883,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89975042\n            ],\n            [\n              -77.04372883,\n              38.89978382\n            ],\n            [\n              -77.04368591,\n              38.89978382\n            ],\n            [\n              -77.04368591,\n              38.89975042\n            ],\n            [\n              -77.04372883,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89978382\n            ],\n            [\n              -77.04372883,\n              38.89981722\n            ],\n            [\n              -77.04368591,\n              38.89981722\n            ],\n            [\n              -77.04368591,\n              38.89978382\n            ],\n            [\n              -77.04372883,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89981722\n            ],\n            [\n              -77.04372883,\n              38.89985062\n            ],\n            [\n              -77.04368591,\n              38.89985062\n            ],\n            [\n              -77.04368591,\n              38.89981722\n            ],\n            [\n              -77.04372883,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89985062\n            ],\n            [\n              -77.04372883,\n              38.89988401\n            ],\n            [\n              -77.04368591,\n              38.89988401\n            ],\n            [\n              -77.04368591,\n              38.89985062\n            ],\n            [\n              -77.04372883,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89988401\n            ],\n            [\n              -77.04372883,\n              38.89991741\n            ],\n            [\n              -77.04368591,\n              38.89991741\n            ],\n            [\n              -77.04368591,\n              38.89988401\n            ],\n            [\n              -77.04372883,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89991741\n            ],\n            [\n              -77.04372883,\n              38.89995081\n            ],\n            [\n              -77.04368591,\n              38.89995081\n            ],\n            [\n              -77.04368591,\n              38.89991741\n            ],\n            [\n              -77.04372883,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89995081\n            ],\n            [\n              -77.04372883,\n              38.89998421\n            ],\n            [\n              -77.04368591,\n              38.89998421\n            ],\n            [\n              -77.04368591,\n              38.89995081\n            ],\n            [\n              -77.04372883,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.89998421\n            ],\n            [\n              -77.04372883,\n              38.90001761\n            ],\n            [\n              -77.04368591,\n              38.90001761\n            ],\n            [\n              -77.04368591,\n              38.89998421\n            ],\n            [\n              -77.04372883,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.90001761\n            ],\n            [\n              -77.04372883,\n              38.90005101\n            ],\n            [\n              -77.04368591,\n              38.90005101\n            ],\n            [\n              -77.04368591,\n              38.90001761\n            ],\n            [\n              -77.04372883,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.90005101\n            ],\n            [\n              -77.04372883,\n              38.90008441\n            ],\n            [\n              -77.04368591,\n              38.90008441\n            ],\n            [\n              -77.04368591,\n              38.90005101\n            ],\n            [\n              -77.04372883,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04372883,\n              38.90008441\n            ],\n            [\n              -77.04372883,\n              38.9001178\n            ],\n            [\n              -77.04368591,\n              38.9001178\n            ],\n            [\n              -77.04368591,\n              38.90008441\n            ],\n            [\n              -77.04372883,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89968362\n            ],\n            [\n              -77.04377174,\n              38.89971702\n            ],\n            [\n              -77.04372883,\n              38.89971702\n            ],\n            [\n              -77.04372883,\n              38.89968362\n            ],\n            [\n              -77.04377174,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89971702\n            ],\n            [\n              -77.04377174,\n              38.89975042\n            ],\n            [\n              -77.04372883,\n              38.89975042\n            ],\n            [\n              -77.04372883,\n              38.89971702\n            ],\n            [\n              -77.04377174,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89975042\n            ],\n            [\n              -77.04377174,\n              38.89978382\n            ],\n            [\n              -77.04372883,\n              38.89978382\n            ],\n            [\n              -77.04372883,\n              38.89975042\n            ],\n            [\n              -77.04377174,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89978382\n            ],\n            [\n              -77.04377174,\n              38.89981722\n            ],\n            [\n              -77.04372883,\n              38.89981722\n            ],\n            [\n              -77.04372883,\n              38.89978382\n            ],\n            [\n              -77.04377174,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89981722\n            ],\n            [\n              -77.04377174,\n              38.89985062\n            ],\n            [\n              -77.04372883,\n              38.89985062\n            ],\n            [\n              -77.04372883,\n              38.89981722\n            ],\n            [\n              -77.04377174,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89985062\n            ],\n            [\n              -77.04377174,\n              38.89988401\n            ],\n            [\n              -77.04372883,\n              38.89988401\n            ],\n            [\n              -77.04372883,\n              38.89985062\n            ],\n            [\n              -77.04377174,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89988401\n            ],\n            [\n              -77.04377174,\n              38.89991741\n            ],\n            [\n              -77.04372883,\n              38.89991741\n            ],\n            [\n              -77.04372883,\n              38.89988401\n            ],\n            [\n              -77.04377174,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89991741\n            ],\n            [\n              -77.04377174,\n              38.89995081\n            ],\n            [\n              -77.04372883,\n              38.89995081\n            ],\n            [\n              -77.04372883,\n              38.89991741\n            ],\n            [\n              -77.04377174,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89995081\n            ],\n            [\n              -77.04377174,\n              38.89998421\n            ],\n            [\n              -77.04372883,\n              38.89998421\n            ],\n            [\n              -77.04372883,\n              38.89995081\n            ],\n            [\n              -77.04377174,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.89998421\n            ],\n            [\n              -77.04377174,\n              38.90001761\n            ],\n            [\n              -77.04372883,\n              38.90001761\n            ],\n            [\n              -77.04372883,\n              38.89998421\n            ],\n            [\n              -77.04377174,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.90001761\n            ],\n            [\n              -77.04377174,\n              38.90005101\n            ],\n            [\n              -77.04372883,\n              38.90005101\n            ],\n            [\n              -77.04372883,\n              38.90001761\n            ],\n            [\n              -77.04377174,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.90005101\n            ],\n            [\n              -77.04377174,\n              38.90008441\n            ],\n            [\n              -77.04372883,\n              38.90008441\n            ],\n            [\n              -77.04372883,\n              38.90005101\n            ],\n            [\n              -77.04377174,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04377174,\n              38.90008441\n            ],\n            [\n              -77.04377174,\n              38.9001178\n            ],\n            [\n              -77.04372883,\n              38.9001178\n            ],\n            [\n              -77.04372883,\n              38.90008441\n            ],\n            [\n              -77.04377174,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89968362\n            ],\n            [\n              -77.04381466,\n              38.89971702\n            ],\n            [\n              -77.04377174,\n              38.89971702\n            ],\n            [\n              -77.04377174,\n              38.89968362\n            ],\n            [\n              -77.04381466,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89971702\n            ],\n            [\n              -77.04381466,\n              38.89975042\n            ],\n            [\n              -77.04377174,\n              38.89975042\n            ],\n            [\n              -77.04377174,\n              38.89971702\n            ],\n            [\n              -77.04381466,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89975042\n            ],\n            [\n              -77.04381466,\n              38.89978382\n            ],\n            [\n              -77.04377174,\n              38.89978382\n            ],\n            [\n              -77.04377174,\n              38.89975042\n            ],\n            [\n              -77.04381466,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89978382\n            ],\n            [\n              -77.04381466,\n              38.89981722\n            ],\n            [\n              -77.04377174,\n              38.89981722\n            ],\n            [\n              -77.04377174,\n              38.89978382\n            ],\n            [\n              -77.04381466,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89981722\n            ],\n            [\n              -77.04381466,\n              38.89985062\n            ],\n            [\n              -77.04377174,\n              38.89985062\n            ],\n            [\n              -77.04377174,\n              38.89981722\n            ],\n            [\n              -77.04381466,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89985062\n            ],\n            [\n              -77.04381466,\n              38.89988401\n            ],\n            [\n              -77.04377174,\n              38.89988401\n            ],\n            [\n              -77.04377174,\n              38.89985062\n            ],\n            [\n              -77.04381466,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89988401\n            ],\n            [\n              -77.04381466,\n              38.89991741\n            ],\n            [\n              -77.04377174,\n              38.89991741\n            ],\n            [\n              -77.04377174,\n              38.89988401\n            ],\n            [\n              -77.04381466,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89991741\n            ],\n            [\n              -77.04381466,\n              38.89995081\n            ],\n            [\n              -77.04377174,\n              38.89995081\n            ],\n            [\n              -77.04377174,\n              38.89991741\n            ],\n            [\n              -77.04381466,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89995081\n            ],\n            [\n              -77.04381466,\n              38.89998421\n            ],\n            [\n              -77.04377174,\n              38.89998421\n            ],\n            [\n              -77.04377174,\n              38.89995081\n            ],\n            [\n              -77.04381466,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.89998421\n            ],\n            [\n              -77.04381466,\n              38.90001761\n            ],\n            [\n              -77.04377174,\n              38.90001761\n            ],\n            [\n              -77.04377174,\n              38.89998421\n            ],\n            [\n              -77.04381466,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.90001761\n            ],\n            [\n              -77.04381466,\n              38.90005101\n            ],\n            [\n              -77.04377174,\n              38.90005101\n            ],\n            [\n              -77.04377174,\n              38.90001761\n            ],\n            [\n              -77.04381466,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.90005101\n            ],\n            [\n              -77.04381466,\n              38.90008441\n            ],\n            [\n              -77.04377174,\n              38.90008441\n            ],\n            [\n              -77.04377174,\n              38.90005101\n            ],\n            [\n              -77.04381466,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.90008441\n            ],\n            [\n              -77.04381466,\n              38.9001178\n            ],\n            [\n              -77.04377174,\n              38.9001178\n            ],\n            [\n              -77.04377174,\n              38.90008441\n            ],\n            [\n              -77.04381466,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04381466,\n              38.9001178\n            ],\n            [\n              -77.04381466,\n              38.9001512\n            ],\n            [\n              -77.04377174,\n              38.9001512\n            ],\n            [\n              -77.04377174,\n              38.9001178\n            ],\n            [\n              -77.04381466,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89968362\n            ],\n            [\n              -77.04385757,\n              38.89971702\n            ],\n            [\n              -77.04381466,\n              38.89971702\n            ],\n            [\n              -77.04381466,\n              38.89968362\n            ],\n            [\n              -77.04385757,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89971702\n            ],\n            [\n              -77.04385757,\n              38.89975042\n            ],\n            [\n              -77.04381466,\n              38.89975042\n            ],\n            [\n              -77.04381466,\n              38.89971702\n            ],\n            [\n              -77.04385757,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89975042\n            ],\n            [\n              -77.04385757,\n              38.89978382\n            ],\n            [\n              -77.04381466,\n              38.89978382\n            ],\n            [\n              -77.04381466,\n              38.89975042\n            ],\n            [\n              -77.04385757,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89978382\n            ],\n            [\n              -77.04385757,\n              38.89981722\n            ],\n            [\n              -77.04381466,\n              38.89981722\n            ],\n            [\n              -77.04381466,\n              38.89978382\n            ],\n            [\n              -77.04385757,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89981722\n            ],\n            [\n              -77.04385757,\n              38.89985062\n            ],\n            [\n              -77.04381466,\n              38.89985062\n            ],\n            [\n              -77.04381466,\n              38.89981722\n            ],\n            [\n              -77.04385757,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89985062\n            ],\n            [\n              -77.04385757,\n              38.89988401\n            ],\n            [\n              -77.04381466,\n              38.89988401\n            ],\n            [\n              -77.04381466,\n              38.89985062\n            ],\n            [\n              -77.04385757,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89988401\n            ],\n            [\n              -77.04385757,\n              38.89991741\n            ],\n            [\n              -77.04381466,\n              38.89991741\n            ],\n            [\n              -77.04381466,\n              38.89988401\n            ],\n            [\n              -77.04385757,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89991741\n            ],\n            [\n              -77.04385757,\n              38.89995081\n            ],\n            [\n              -77.04381466,\n              38.89995081\n            ],\n            [\n              -77.04381466,\n              38.89991741\n            ],\n            [\n              -77.04385757,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89995081\n            ],\n            [\n              -77.04385757,\n              38.89998421\n            ],\n            [\n              -77.04381466,\n              38.89998421\n            ],\n            [\n              -77.04381466,\n              38.89995081\n            ],\n            [\n              -77.04385757,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.89998421\n            ],\n            [\n              -77.04385757,\n              38.90001761\n            ],\n            [\n              -77.04381466,\n              38.90001761\n            ],\n            [\n              -77.04381466,\n              38.89998421\n            ],\n            [\n              -77.04385757,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.90001761\n            ],\n            [\n              -77.04385757,\n              38.90005101\n            ],\n            [\n              -77.04381466,\n              38.90005101\n            ],\n            [\n              -77.04381466,\n              38.90001761\n            ],\n            [\n              -77.04385757,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.90005101\n            ],\n            [\n              -77.04385757,\n              38.90008441\n            ],\n            [\n              -77.04381466,\n              38.90008441\n            ],\n            [\n              -77.04381466,\n              38.90005101\n            ],\n            [\n              -77.04385757,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.90008441\n            ],\n            [\n              -77.04385757,\n              38.9001178\n            ],\n            [\n              -77.04381466,\n              38.9001178\n            ],\n            [\n              -77.04381466,\n              38.90008441\n            ],\n            [\n              -77.04385757,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.9001178\n            ],\n            [\n              -77.04385757,\n              38.9001512\n            ],\n            [\n              -77.04381466,\n              38.9001512\n            ],\n            [\n              -77.04381466,\n              38.9001178\n            ],\n            [\n              -77.04385757,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04385757,\n              38.9001512\n            ],\n            [\n              -77.04385757,\n              38.9001846\n            ],\n            [\n              -77.04381466,\n              38.9001846\n            ],\n            [\n              -77.04381466,\n              38.9001512\n            ],\n            [\n              -77.04385757,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89968362\n            ],\n            [\n              -77.04390049,\n              38.89971702\n            ],\n            [\n              -77.04385757,\n              38.89971702\n            ],\n            [\n              -77.04385757,\n              38.89968362\n            ],\n            [\n              -77.04390049,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89971702\n            ],\n            [\n              -77.04390049,\n              38.89975042\n            ],\n            [\n              -77.04385757,\n              38.89975042\n            ],\n            [\n              -77.04385757,\n              38.89971702\n            ],\n            [\n              -77.04390049,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89975042\n            ],\n            [\n              -77.04390049,\n              38.89978382\n            ],\n            [\n              -77.04385757,\n              38.89978382\n            ],\n            [\n              -77.04385757,\n              38.89975042\n            ],\n            [\n              -77.04390049,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89978382\n            ],\n            [\n              -77.04390049,\n              38.89981722\n            ],\n            [\n              -77.04385757,\n              38.89981722\n            ],\n            [\n              -77.04385757,\n              38.89978382\n            ],\n            [\n              -77.04390049,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89981722\n            ],\n            [\n              -77.04390049,\n              38.89985062\n            ],\n            [\n              -77.04385757,\n              38.89985062\n            ],\n            [\n              -77.04385757,\n              38.89981722\n            ],\n            [\n              -77.04390049,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89985062\n            ],\n            [\n              -77.04390049,\n              38.89988401\n            ],\n            [\n              -77.04385757,\n              38.89988401\n            ],\n            [\n              -77.04385757,\n              38.89985062\n            ],\n            [\n              -77.04390049,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89988401\n            ],\n            [\n              -77.04390049,\n              38.89991741\n            ],\n            [\n              -77.04385757,\n              38.89991741\n            ],\n            [\n              -77.04385757,\n              38.89988401\n            ],\n            [\n              -77.04390049,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89991741\n            ],\n            [\n              -77.04390049,\n              38.89995081\n            ],\n            [\n              -77.04385757,\n              38.89995081\n            ],\n            [\n              -77.04385757,\n              38.89991741\n            ],\n            [\n              -77.04390049,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89995081\n            ],\n            [\n              -77.04390049,\n              38.89998421\n            ],\n            [\n              -77.04385757,\n              38.89998421\n            ],\n            [\n              -77.04385757,\n              38.89995081\n            ],\n            [\n              -77.04390049,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.89998421\n            ],\n            [\n              -77.04390049,\n              38.90001761\n            ],\n            [\n              -77.04385757,\n              38.90001761\n            ],\n            [\n              -77.04385757,\n              38.89998421\n            ],\n            [\n              -77.04390049,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.90001761\n            ],\n            [\n              -77.04390049,\n              38.90005101\n            ],\n            [\n              -77.04385757,\n              38.90005101\n            ],\n            [\n              -77.04385757,\n              38.90001761\n            ],\n            [\n              -77.04390049,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.90005101\n            ],\n            [\n              -77.04390049,\n              38.90008441\n            ],\n            [\n              -77.04385757,\n              38.90008441\n            ],\n            [\n              -77.04385757,\n              38.90005101\n            ],\n            [\n              -77.04390049,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.90008441\n            ],\n            [\n              -77.04390049,\n              38.9001178\n            ],\n            [\n              -77.04385757,\n              38.9001178\n            ],\n            [\n              -77.04385757,\n              38.90008441\n            ],\n            [\n              -77.04390049,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.9001178\n            ],\n            [\n              -77.04390049,\n              38.9001512\n            ],\n            [\n              -77.04385757,\n              38.9001512\n            ],\n            [\n              -77.04385757,\n              38.9001178\n            ],\n            [\n              -77.04390049,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04390049,\n              38.9001512\n            ],\n            [\n              -77.04390049,\n              38.9001846\n            ],\n            [\n              -77.04385757,\n              38.9001846\n            ],\n            [\n              -77.04385757,\n              38.9001512\n            ],\n            [\n              -77.04390049,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89968362\n            ],\n            [\n              -77.04394341,\n              38.89971702\n            ],\n            [\n              -77.04390049,\n              38.89971702\n            ],\n            [\n              -77.04390049,\n              38.89968362\n            ],\n            [\n              -77.04394341,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89971702\n            ],\n            [\n              -77.04394341,\n              38.89975042\n            ],\n            [\n              -77.04390049,\n              38.89975042\n            ],\n            [\n              -77.04390049,\n              38.89971702\n            ],\n            [\n              -77.04394341,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89975042\n            ],\n            [\n              -77.04394341,\n              38.89978382\n            ],\n            [\n              -77.04390049,\n              38.89978382\n            ],\n            [\n              -77.04390049,\n              38.89975042\n            ],\n            [\n              -77.04394341,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89978382\n            ],\n            [\n              -77.04394341,\n              38.89981722\n            ],\n            [\n              -77.04390049,\n              38.89981722\n            ],\n            [\n              -77.04390049,\n              38.89978382\n            ],\n            [\n              -77.04394341,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89981722\n            ],\n            [\n              -77.04394341,\n              38.89985062\n            ],\n            [\n              -77.04390049,\n              38.89985062\n            ],\n            [\n              -77.04390049,\n              38.89981722\n            ],\n            [\n              -77.04394341,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89985062\n            ],\n            [\n              -77.04394341,\n              38.89988401\n            ],\n            [\n              -77.04390049,\n              38.89988401\n            ],\n            [\n              -77.04390049,\n              38.89985062\n            ],\n            [\n              -77.04394341,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89988401\n            ],\n            [\n              -77.04394341,\n              38.89991741\n            ],\n            [\n              -77.04390049,\n              38.89991741\n            ],\n            [\n              -77.04390049,\n              38.89988401\n            ],\n            [\n              -77.04394341,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89991741\n            ],\n            [\n              -77.04394341,\n              38.89995081\n            ],\n            [\n              -77.04390049,\n              38.89995081\n            ],\n            [\n              -77.04390049,\n              38.89991741\n            ],\n            [\n              -77.04394341,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89995081\n            ],\n            [\n              -77.04394341,\n              38.89998421\n            ],\n            [\n              -77.04390049,\n              38.89998421\n            ],\n            [\n              -77.04390049,\n              38.89995081\n            ],\n            [\n              -77.04394341,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.89998421\n            ],\n            [\n              -77.04394341,\n              38.90001761\n            ],\n            [\n              -77.04390049,\n              38.90001761\n            ],\n            [\n              -77.04390049,\n              38.89998421\n            ],\n            [\n              -77.04394341,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.90001761\n            ],\n            [\n              -77.04394341,\n              38.90005101\n            ],\n            [\n              -77.04390049,\n              38.90005101\n            ],\n            [\n              -77.04390049,\n              38.90001761\n            ],\n            [\n              -77.04394341,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.90005101\n            ],\n            [\n              -77.04394341,\n              38.90008441\n            ],\n            [\n              -77.04390049,\n              38.90008441\n            ],\n            [\n              -77.04390049,\n              38.90005101\n            ],\n            [\n              -77.04394341,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.90008441\n            ],\n            [\n              -77.04394341,\n              38.9001178\n            ],\n            [\n              -77.04390049,\n              38.9001178\n            ],\n            [\n              -77.04390049,\n              38.90008441\n            ],\n            [\n              -77.04394341,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.9001178\n            ],\n            [\n              -77.04394341,\n              38.9001512\n            ],\n            [\n              -77.04390049,\n              38.9001512\n            ],\n            [\n              -77.04390049,\n              38.9001178\n            ],\n            [\n              -77.04394341,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04394341,\n              38.9001512\n            ],\n            [\n              -77.04394341,\n              38.9001846\n            ],\n            [\n              -77.04390049,\n              38.9001846\n            ],\n            [\n              -77.04390049,\n              38.9001512\n            ],\n            [\n              -77.04394341,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89968362\n            ],\n            [\n              -77.04398632,\n              38.89971702\n            ],\n            [\n              -77.04394341,\n              38.89971702\n            ],\n            [\n              -77.04394341,\n              38.89968362\n            ],\n            [\n              -77.04398632,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89971702\n            ],\n            [\n              -77.04398632,\n              38.89975042\n            ],\n            [\n              -77.04394341,\n              38.89975042\n            ],\n            [\n              -77.04394341,\n              38.89971702\n            ],\n            [\n              -77.04398632,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89975042\n            ],\n            [\n              -77.04398632,\n              38.89978382\n            ],\n            [\n              -77.04394341,\n              38.89978382\n            ],\n            [\n              -77.04394341,\n              38.89975042\n            ],\n            [\n              -77.04398632,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89978382\n            ],\n            [\n              -77.04398632,\n              38.89981722\n            ],\n            [\n              -77.04394341,\n              38.89981722\n            ],\n            [\n              -77.04394341,\n              38.89978382\n            ],\n            [\n              -77.04398632,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89981722\n            ],\n            [\n              -77.04398632,\n              38.89985062\n            ],\n            [\n              -77.04394341,\n              38.89985062\n            ],\n            [\n              -77.04394341,\n              38.89981722\n            ],\n            [\n              -77.04398632,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89985062\n            ],\n            [\n              -77.04398632,\n              38.89988401\n            ],\n            [\n              -77.04394341,\n              38.89988401\n            ],\n            [\n              -77.04394341,\n              38.89985062\n            ],\n            [\n              -77.04398632,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89988401\n            ],\n            [\n              -77.04398632,\n              38.89991741\n            ],\n            [\n              -77.04394341,\n              38.89991741\n            ],\n            [\n              -77.04394341,\n              38.89988401\n            ],\n            [\n              -77.04398632,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89991741\n            ],\n            [\n              -77.04398632,\n              38.89995081\n            ],\n            [\n              -77.04394341,\n              38.89995081\n            ],\n            [\n              -77.04394341,\n              38.89991741\n            ],\n            [\n              -77.04398632,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89995081\n            ],\n            [\n              -77.04398632,\n              38.89998421\n            ],\n            [\n              -77.04394341,\n              38.89998421\n            ],\n            [\n              -77.04394341,\n              38.89995081\n            ],\n            [\n              -77.04398632,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.89998421\n            ],\n            [\n              -77.04398632,\n              38.90001761\n            ],\n            [\n              -77.04394341,\n              38.90001761\n            ],\n            [\n              -77.04394341,\n              38.89998421\n            ],\n            [\n              -77.04398632,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.90001761\n            ],\n            [\n              -77.04398632,\n              38.90005101\n            ],\n            [\n              -77.04394341,\n              38.90005101\n            ],\n            [\n              -77.04394341,\n              38.90001761\n            ],\n            [\n              -77.04398632,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.90005101\n            ],\n            [\n              -77.04398632,\n              38.90008441\n            ],\n            [\n              -77.04394341,\n              38.90008441\n            ],\n            [\n              -77.04394341,\n              38.90005101\n            ],\n            [\n              -77.04398632,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.90008441\n            ],\n            [\n              -77.04398632,\n              38.9001178\n            ],\n            [\n              -77.04394341,\n              38.9001178\n            ],\n            [\n              -77.04394341,\n              38.90008441\n            ],\n            [\n              -77.04398632,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.9001178\n            ],\n            [\n              -77.04398632,\n              38.9001512\n            ],\n            [\n              -77.04394341,\n              38.9001512\n            ],\n            [\n              -77.04394341,\n              38.9001178\n            ],\n            [\n              -77.04398632,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.9001512\n            ],\n            [\n              -77.04398632,\n              38.9001846\n            ],\n            [\n              -77.04394341,\n              38.9001846\n            ],\n            [\n              -77.04394341,\n              38.9001512\n            ],\n            [\n              -77.04398632,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04398632,\n              38.9001846\n            ],\n            [\n              -77.04398632,\n              38.900218\n            ],\n            [\n              -77.04394341,\n              38.900218\n            ],\n            [\n              -77.04394341,\n              38.9001846\n            ],\n            [\n              -77.04398632,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89968362\n            ],\n            [\n              -77.04402924,\n              38.89971702\n            ],\n            [\n              -77.04398632,\n              38.89971702\n            ],\n            [\n              -77.04398632,\n              38.89968362\n            ],\n            [\n              -77.04402924,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89971702\n            ],\n            [\n              -77.04402924,\n              38.89975042\n            ],\n            [\n              -77.04398632,\n              38.89975042\n            ],\n            [\n              -77.04398632,\n              38.89971702\n            ],\n            [\n              -77.04402924,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89975042\n            ],\n            [\n              -77.04402924,\n              38.89978382\n            ],\n            [\n              -77.04398632,\n              38.89978382\n            ],\n            [\n              -77.04398632,\n              38.89975042\n            ],\n            [\n              -77.04402924,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89978382\n            ],\n            [\n              -77.04402924,\n              38.89981722\n            ],\n            [\n              -77.04398632,\n              38.89981722\n            ],\n            [\n              -77.04398632,\n              38.89978382\n            ],\n            [\n              -77.04402924,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89981722\n            ],\n            [\n              -77.04402924,\n              38.89985062\n            ],\n            [\n              -77.04398632,\n              38.89985062\n            ],\n            [\n              -77.04398632,\n              38.89981722\n            ],\n            [\n              -77.04402924,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89985062\n            ],\n            [\n              -77.04402924,\n              38.89988401\n            ],\n            [\n              -77.04398632,\n              38.89988401\n            ],\n            [\n              -77.04398632,\n              38.89985062\n            ],\n            [\n              -77.04402924,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89988401\n            ],\n            [\n              -77.04402924,\n              38.89991741\n            ],\n            [\n              -77.04398632,\n              38.89991741\n            ],\n            [\n              -77.04398632,\n              38.89988401\n            ],\n            [\n              -77.04402924,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89991741\n            ],\n            [\n              -77.04402924,\n              38.89995081\n            ],\n            [\n              -77.04398632,\n              38.89995081\n            ],\n            [\n              -77.04398632,\n              38.89991741\n            ],\n            [\n              -77.04402924,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89995081\n            ],\n            [\n              -77.04402924,\n              38.89998421\n            ],\n            [\n              -77.04398632,\n              38.89998421\n            ],\n            [\n              -77.04398632,\n              38.89995081\n            ],\n            [\n              -77.04402924,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.89998421\n            ],\n            [\n              -77.04402924,\n              38.90001761\n            ],\n            [\n              -77.04398632,\n              38.90001761\n            ],\n            [\n              -77.04398632,\n              38.89998421\n            ],\n            [\n              -77.04402924,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.90001761\n            ],\n            [\n              -77.04402924,\n              38.90005101\n            ],\n            [\n              -77.04398632,\n              38.90005101\n            ],\n            [\n              -77.04398632,\n              38.90001761\n            ],\n            [\n              -77.04402924,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.90005101\n            ],\n            [\n              -77.04402924,\n              38.90008441\n            ],\n            [\n              -77.04398632,\n              38.90008441\n            ],\n            [\n              -77.04398632,\n              38.90005101\n            ],\n            [\n              -77.04402924,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.90008441\n            ],\n            [\n              -77.04402924,\n              38.9001178\n            ],\n            [\n              -77.04398632,\n              38.9001178\n            ],\n            [\n              -77.04398632,\n              38.90008441\n            ],\n            [\n              -77.04402924,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.9001178\n            ],\n            [\n              -77.04402924,\n              38.9001512\n            ],\n            [\n              -77.04398632,\n              38.9001512\n            ],\n            [\n              -77.04398632,\n              38.9001178\n            ],\n            [\n              -77.04402924,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.9001512\n            ],\n            [\n              -77.04402924,\n              38.9001846\n            ],\n            [\n              -77.04398632,\n              38.9001846\n            ],\n            [\n              -77.04398632,\n              38.9001512\n            ],\n            [\n              -77.04402924,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04402924,\n              38.9001846\n            ],\n            [\n              -77.04402924,\n              38.900218\n            ],\n            [\n              -77.04398632,\n              38.900218\n            ],\n            [\n              -77.04398632,\n              38.9001846\n            ],\n            [\n              -77.04402924,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89968362\n            ],\n            [\n              -77.04407215,\n              38.89971702\n            ],\n            [\n              -77.04402924,\n              38.89971702\n            ],\n            [\n              -77.04402924,\n              38.89968362\n            ],\n            [\n              -77.04407215,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89971702\n            ],\n            [\n              -77.04407215,\n              38.89975042\n            ],\n            [\n              -77.04402924,\n              38.89975042\n            ],\n            [\n              -77.04402924,\n              38.89971702\n            ],\n            [\n              -77.04407215,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89975042\n            ],\n            [\n              -77.04407215,\n              38.89978382\n            ],\n            [\n              -77.04402924,\n              38.89978382\n            ],\n            [\n              -77.04402924,\n              38.89975042\n            ],\n            [\n              -77.04407215,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89978382\n            ],\n            [\n              -77.04407215,\n              38.89981722\n            ],\n            [\n              -77.04402924,\n              38.89981722\n            ],\n            [\n              -77.04402924,\n              38.89978382\n            ],\n            [\n              -77.04407215,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89981722\n            ],\n            [\n              -77.04407215,\n              38.89985062\n            ],\n            [\n              -77.04402924,\n              38.89985062\n            ],\n            [\n              -77.04402924,\n              38.89981722\n            ],\n            [\n              -77.04407215,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89985062\n            ],\n            [\n              -77.04407215,\n              38.89988401\n            ],\n            [\n              -77.04402924,\n              38.89988401\n            ],\n            [\n              -77.04402924,\n              38.89985062\n            ],\n            [\n              -77.04407215,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89988401\n            ],\n            [\n              -77.04407215,\n              38.89991741\n            ],\n            [\n              -77.04402924,\n              38.89991741\n            ],\n            [\n              -77.04402924,\n              38.89988401\n            ],\n            [\n              -77.04407215,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89991741\n            ],\n            [\n              -77.04407215,\n              38.89995081\n            ],\n            [\n              -77.04402924,\n              38.89995081\n            ],\n            [\n              -77.04402924,\n              38.89991741\n            ],\n            [\n              -77.04407215,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89995081\n            ],\n            [\n              -77.04407215,\n              38.89998421\n            ],\n            [\n              -77.04402924,\n              38.89998421\n            ],\n            [\n              -77.04402924,\n              38.89995081\n            ],\n            [\n              -77.04407215,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.89998421\n            ],\n            [\n              -77.04407215,\n              38.90001761\n            ],\n            [\n              -77.04402924,\n              38.90001761\n            ],\n            [\n              -77.04402924,\n              38.89998421\n            ],\n            [\n              -77.04407215,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.90001761\n            ],\n            [\n              -77.04407215,\n              38.90005101\n            ],\n            [\n              -77.04402924,\n              38.90005101\n            ],\n            [\n              -77.04402924,\n              38.90001761\n            ],\n            [\n              -77.04407215,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.90005101\n            ],\n            [\n              -77.04407215,\n              38.90008441\n            ],\n            [\n              -77.04402924,\n              38.90008441\n            ],\n            [\n              -77.04402924,\n              38.90005101\n            ],\n            [\n              -77.04407215,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.90008441\n            ],\n            [\n              -77.04407215,\n              38.9001178\n            ],\n            [\n              -77.04402924,\n              38.9001178\n            ],\n            [\n              -77.04402924,\n              38.90008441\n            ],\n            [\n              -77.04407215,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.9001178\n            ],\n            [\n              -77.04407215,\n              38.9001512\n            ],\n            [\n              -77.04402924,\n              38.9001512\n            ],\n            [\n              -77.04402924,\n              38.9001178\n            ],\n            [\n              -77.04407215,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.9001512\n            ],\n            [\n              -77.04407215,\n              38.9001846\n            ],\n            [\n              -77.04402924,\n              38.9001846\n            ],\n            [\n              -77.04402924,\n              38.9001512\n            ],\n            [\n              -77.04407215,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.9001846\n            ],\n            [\n              -77.04407215,\n              38.900218\n            ],\n            [\n              -77.04402924,\n              38.900218\n            ],\n            [\n              -77.04402924,\n              38.9001846\n            ],\n            [\n              -77.04407215,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04407215,\n              38.900218\n            ],\n            [\n              -77.04407215,\n              38.9002514\n            ],\n            [\n              -77.04402924,\n              38.9002514\n            ],\n            [\n              -77.04402924,\n              38.900218\n            ],\n            [\n              -77.04407215,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89968362\n            ],\n            [\n              -77.04411507,\n              38.89971702\n            ],\n            [\n              -77.04407215,\n              38.89971702\n            ],\n            [\n              -77.04407215,\n              38.89968362\n            ],\n            [\n              -77.04411507,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89971702\n            ],\n            [\n              -77.04411507,\n              38.89975042\n            ],\n            [\n              -77.04407215,\n              38.89975042\n            ],\n            [\n              -77.04407215,\n              38.89971702\n            ],\n            [\n              -77.04411507,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89975042\n            ],\n            [\n              -77.04411507,\n              38.89978382\n            ],\n            [\n              -77.04407215,\n              38.89978382\n            ],\n            [\n              -77.04407215,\n              38.89975042\n            ],\n            [\n              -77.04411507,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89978382\n            ],\n            [\n              -77.04411507,\n              38.89981722\n            ],\n            [\n              -77.04407215,\n              38.89981722\n            ],\n            [\n              -77.04407215,\n              38.89978382\n            ],\n            [\n              -77.04411507,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89981722\n            ],\n            [\n              -77.04411507,\n              38.89985062\n            ],\n            [\n              -77.04407215,\n              38.89985062\n            ],\n            [\n              -77.04407215,\n              38.89981722\n            ],\n            [\n              -77.04411507,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89985062\n            ],\n            [\n              -77.04411507,\n              38.89988401\n            ],\n            [\n              -77.04407215,\n              38.89988401\n            ],\n            [\n              -77.04407215,\n              38.89985062\n            ],\n            [\n              -77.04411507,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89988401\n            ],\n            [\n              -77.04411507,\n              38.89991741\n            ],\n            [\n              -77.04407215,\n              38.89991741\n            ],\n            [\n              -77.04407215,\n              38.89988401\n            ],\n            [\n              -77.04411507,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89991741\n            ],\n            [\n              -77.04411507,\n              38.89995081\n            ],\n            [\n              -77.04407215,\n              38.89995081\n            ],\n            [\n              -77.04407215,\n              38.89991741\n            ],\n            [\n              -77.04411507,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89995081\n            ],\n            [\n              -77.04411507,\n              38.89998421\n            ],\n            [\n              -77.04407215,\n              38.89998421\n            ],\n            [\n              -77.04407215,\n              38.89995081\n            ],\n            [\n              -77.04411507,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.89998421\n            ],\n            [\n              -77.04411507,\n              38.90001761\n            ],\n            [\n              -77.04407215,\n              38.90001761\n            ],\n            [\n              -77.04407215,\n              38.89998421\n            ],\n            [\n              -77.04411507,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.90001761\n            ],\n            [\n              -77.04411507,\n              38.90005101\n            ],\n            [\n              -77.04407215,\n              38.90005101\n            ],\n            [\n              -77.04407215,\n              38.90001761\n            ],\n            [\n              -77.04411507,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.90005101\n            ],\n            [\n              -77.04411507,\n              38.90008441\n            ],\n            [\n              -77.04407215,\n              38.90008441\n            ],\n            [\n              -77.04407215,\n              38.90005101\n            ],\n            [\n              -77.04411507,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.90008441\n            ],\n            [\n              -77.04411507,\n              38.9001178\n            ],\n            [\n              -77.04407215,\n              38.9001178\n            ],\n            [\n              -77.04407215,\n              38.90008441\n            ],\n            [\n              -77.04411507,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.9001178\n            ],\n            [\n              -77.04411507,\n              38.9001512\n            ],\n            [\n              -77.04407215,\n              38.9001512\n            ],\n            [\n              -77.04407215,\n              38.9001178\n            ],\n            [\n              -77.04411507,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.9001512\n            ],\n            [\n              -77.04411507,\n              38.9001846\n            ],\n            [\n              -77.04407215,\n              38.9001846\n            ],\n            [\n              -77.04407215,\n              38.9001512\n            ],\n            [\n              -77.04411507,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.9001846\n            ],\n            [\n              -77.04411507,\n              38.900218\n            ],\n            [\n              -77.04407215,\n              38.900218\n            ],\n            [\n              -77.04407215,\n              38.9001846\n            ],\n            [\n              -77.04411507,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04411507,\n              38.900218\n            ],\n            [\n              -77.04411507,\n              38.9002514\n            ],\n            [\n              -77.04407215,\n              38.9002514\n            ],\n            [\n              -77.04407215,\n              38.900218\n            ],\n            [\n              -77.04411507,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89968362\n            ],\n            [\n              -77.04415798,\n              38.89971702\n            ],\n            [\n              -77.04411507,\n              38.89971702\n            ],\n            [\n              -77.04411507,\n              38.89968362\n            ],\n            [\n              -77.04415798,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89971702\n            ],\n            [\n              -77.04415798,\n              38.89975042\n            ],\n            [\n              -77.04411507,\n              38.89975042\n            ],\n            [\n              -77.04411507,\n              38.89971702\n            ],\n            [\n              -77.04415798,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89975042\n            ],\n            [\n              -77.04415798,\n              38.89978382\n            ],\n            [\n              -77.04411507,\n              38.89978382\n            ],\n            [\n              -77.04411507,\n              38.89975042\n            ],\n            [\n              -77.04415798,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89978382\n            ],\n            [\n              -77.04415798,\n              38.89981722\n            ],\n            [\n              -77.04411507,\n              38.89981722\n            ],\n            [\n              -77.04411507,\n              38.89978382\n            ],\n            [\n              -77.04415798,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89981722\n            ],\n            [\n              -77.04415798,\n              38.89985062\n            ],\n            [\n              -77.04411507,\n              38.89985062\n            ],\n            [\n              -77.04411507,\n              38.89981722\n            ],\n            [\n              -77.04415798,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89985062\n            ],\n            [\n              -77.04415798,\n              38.89988401\n            ],\n            [\n              -77.04411507,\n              38.89988401\n            ],\n            [\n              -77.04411507,\n              38.89985062\n            ],\n            [\n              -77.04415798,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89988401\n            ],\n            [\n              -77.04415798,\n              38.89991741\n            ],\n            [\n              -77.04411507,\n              38.89991741\n            ],\n            [\n              -77.04411507,\n              38.89988401\n            ],\n            [\n              -77.04415798,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89991741\n            ],\n            [\n              -77.04415798,\n              38.89995081\n            ],\n            [\n              -77.04411507,\n              38.89995081\n            ],\n            [\n              -77.04411507,\n              38.89991741\n            ],\n            [\n              -77.04415798,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89995081\n            ],\n            [\n              -77.04415798,\n              38.89998421\n            ],\n            [\n              -77.04411507,\n              38.89998421\n            ],\n            [\n              -77.04411507,\n              38.89995081\n            ],\n            [\n              -77.04415798,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.89998421\n            ],\n            [\n              -77.04415798,\n              38.90001761\n            ],\n            [\n              -77.04411507,\n              38.90001761\n            ],\n            [\n              -77.04411507,\n              38.89998421\n            ],\n            [\n              -77.04415798,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.90001761\n            ],\n            [\n              -77.04415798,\n              38.90005101\n            ],\n            [\n              -77.04411507,\n              38.90005101\n            ],\n            [\n              -77.04411507,\n              38.90001761\n            ],\n            [\n              -77.04415798,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.90005101\n            ],\n            [\n              -77.04415798,\n              38.90008441\n            ],\n            [\n              -77.04411507,\n              38.90008441\n            ],\n            [\n              -77.04411507,\n              38.90005101\n            ],\n            [\n              -77.04415798,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.90008441\n            ],\n            [\n              -77.04415798,\n              38.9001178\n            ],\n            [\n              -77.04411507,\n              38.9001178\n            ],\n            [\n              -77.04411507,\n              38.90008441\n            ],\n            [\n              -77.04415798,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.9001178\n            ],\n            [\n              -77.04415798,\n              38.9001512\n            ],\n            [\n              -77.04411507,\n              38.9001512\n            ],\n            [\n              -77.04411507,\n              38.9001178\n            ],\n            [\n              -77.04415798,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.9001512\n            ],\n            [\n              -77.04415798,\n              38.9001846\n            ],\n            [\n              -77.04411507,\n              38.9001846\n            ],\n            [\n              -77.04411507,\n              38.9001512\n            ],\n            [\n              -77.04415798,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.9001846\n            ],\n            [\n              -77.04415798,\n              38.900218\n            ],\n            [\n              -77.04411507,\n              38.900218\n            ],\n            [\n              -77.04411507,\n              38.9001846\n            ],\n            [\n              -77.04415798,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04415798,\n              38.900218\n            ],\n            [\n              -77.04415798,\n              38.9002514\n            ],\n            [\n              -77.04411507,\n              38.9002514\n            ],\n            [\n              -77.04411507,\n              38.900218\n            ],\n            [\n              -77.04415798,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89968362\n            ],\n            [\n              -77.0442009,\n              38.89971702\n            ],\n            [\n              -77.04415798,\n              38.89971702\n            ],\n            [\n              -77.04415798,\n              38.89968362\n            ],\n            [\n              -77.0442009,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89971702\n            ],\n            [\n              -77.0442009,\n              38.89975042\n            ],\n            [\n              -77.04415798,\n              38.89975042\n            ],\n            [\n              -77.04415798,\n              38.89971702\n            ],\n            [\n              -77.0442009,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89975042\n            ],\n            [\n              -77.0442009,\n              38.89978382\n            ],\n            [\n              -77.04415798,\n              38.89978382\n            ],\n            [\n              -77.04415798,\n              38.89975042\n            ],\n            [\n              -77.0442009,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89978382\n            ],\n            [\n              -77.0442009,\n              38.89981722\n            ],\n            [\n              -77.04415798,\n              38.89981722\n            ],\n            [\n              -77.04415798,\n              38.89978382\n            ],\n            [\n              -77.0442009,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89981722\n            ],\n            [\n              -77.0442009,\n              38.89985062\n            ],\n            [\n              -77.04415798,\n              38.89985062\n            ],\n            [\n              -77.04415798,\n              38.89981722\n            ],\n            [\n              -77.0442009,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89985062\n            ],\n            [\n              -77.0442009,\n              38.89988401\n            ],\n            [\n              -77.04415798,\n              38.89988401\n            ],\n            [\n              -77.04415798,\n              38.89985062\n            ],\n            [\n              -77.0442009,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89988401\n            ],\n            [\n              -77.0442009,\n              38.89991741\n            ],\n            [\n              -77.04415798,\n              38.89991741\n            ],\n            [\n              -77.04415798,\n              38.89988401\n            ],\n            [\n              -77.0442009,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89991741\n            ],\n            [\n              -77.0442009,\n              38.89995081\n            ],\n            [\n              -77.04415798,\n              38.89995081\n            ],\n            [\n              -77.04415798,\n              38.89991741\n            ],\n            [\n              -77.0442009,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89995081\n            ],\n            [\n              -77.0442009,\n              38.89998421\n            ],\n            [\n              -77.04415798,\n              38.89998421\n            ],\n            [\n              -77.04415798,\n              38.89995081\n            ],\n            [\n              -77.0442009,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.89998421\n            ],\n            [\n              -77.0442009,\n              38.90001761\n            ],\n            [\n              -77.04415798,\n              38.90001761\n            ],\n            [\n              -77.04415798,\n              38.89998421\n            ],\n            [\n              -77.0442009,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.90001761\n            ],\n            [\n              -77.0442009,\n              38.90005101\n            ],\n            [\n              -77.04415798,\n              38.90005101\n            ],\n            [\n              -77.04415798,\n              38.90001761\n            ],\n            [\n              -77.0442009,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.90005101\n            ],\n            [\n              -77.0442009,\n              38.90008441\n            ],\n            [\n              -77.04415798,\n              38.90008441\n            ],\n            [\n              -77.04415798,\n              38.90005101\n            ],\n            [\n              -77.0442009,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.90008441\n            ],\n            [\n              -77.0442009,\n              38.9001178\n            ],\n            [\n              -77.04415798,\n              38.9001178\n            ],\n            [\n              -77.04415798,\n              38.90008441\n            ],\n            [\n              -77.0442009,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.9001178\n            ],\n            [\n              -77.0442009,\n              38.9001512\n            ],\n            [\n              -77.04415798,\n              38.9001512\n            ],\n            [\n              -77.04415798,\n              38.9001178\n            ],\n            [\n              -77.0442009,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.9001512\n            ],\n            [\n              -77.0442009,\n              38.9001846\n            ],\n            [\n              -77.04415798,\n              38.9001846\n            ],\n            [\n              -77.04415798,\n              38.9001512\n            ],\n            [\n              -77.0442009,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.9001846\n            ],\n            [\n              -77.0442009,\n              38.900218\n            ],\n            [\n              -77.04415798,\n              38.900218\n            ],\n            [\n              -77.04415798,\n              38.9001846\n            ],\n            [\n              -77.0442009,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.900218\n            ],\n            [\n              -77.0442009,\n              38.9002514\n            ],\n            [\n              -77.04415798,\n              38.9002514\n            ],\n            [\n              -77.04415798,\n              38.900218\n            ],\n            [\n              -77.0442009,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0442009,\n              38.9002514\n            ],\n            [\n              -77.0442009,\n              38.9002848\n            ],\n            [\n              -77.04415798,\n              38.9002848\n            ],\n            [\n              -77.04415798,\n              38.9002514\n            ],\n            [\n              -77.0442009,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89968362\n            ],\n            [\n              -77.04424381,\n              38.89971702\n            ],\n            [\n              -77.0442009,\n              38.89971702\n            ],\n            [\n              -77.0442009,\n              38.89968362\n            ],\n            [\n              -77.04424381,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89971702\n            ],\n            [\n              -77.04424381,\n              38.89975042\n            ],\n            [\n              -77.0442009,\n              38.89975042\n            ],\n            [\n              -77.0442009,\n              38.89971702\n            ],\n            [\n              -77.04424381,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89975042\n            ],\n            [\n              -77.04424381,\n              38.89978382\n            ],\n            [\n              -77.0442009,\n              38.89978382\n            ],\n            [\n              -77.0442009,\n              38.89975042\n            ],\n            [\n              -77.04424381,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89978382\n            ],\n            [\n              -77.04424381,\n              38.89981722\n            ],\n            [\n              -77.0442009,\n              38.89981722\n            ],\n            [\n              -77.0442009,\n              38.89978382\n            ],\n            [\n              -77.04424381,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89981722\n            ],\n            [\n              -77.04424381,\n              38.89985062\n            ],\n            [\n              -77.0442009,\n              38.89985062\n            ],\n            [\n              -77.0442009,\n              38.89981722\n            ],\n            [\n              -77.04424381,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89985062\n            ],\n            [\n              -77.04424381,\n              38.89988401\n            ],\n            [\n              -77.0442009,\n              38.89988401\n            ],\n            [\n              -77.0442009,\n              38.89985062\n            ],\n            [\n              -77.04424381,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89988401\n            ],\n            [\n              -77.04424381,\n              38.89991741\n            ],\n            [\n              -77.0442009,\n              38.89991741\n            ],\n            [\n              -77.0442009,\n              38.89988401\n            ],\n            [\n              -77.04424381,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89991741\n            ],\n            [\n              -77.04424381,\n              38.89995081\n            ],\n            [\n              -77.0442009,\n              38.89995081\n            ],\n            [\n              -77.0442009,\n              38.89991741\n            ],\n            [\n              -77.04424381,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89995081\n            ],\n            [\n              -77.04424381,\n              38.89998421\n            ],\n            [\n              -77.0442009,\n              38.89998421\n            ],\n            [\n              -77.0442009,\n              38.89995081\n            ],\n            [\n              -77.04424381,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.89998421\n            ],\n            [\n              -77.04424381,\n              38.90001761\n            ],\n            [\n              -77.0442009,\n              38.90001761\n            ],\n            [\n              -77.0442009,\n              38.89998421\n            ],\n            [\n              -77.04424381,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.90001761\n            ],\n            [\n              -77.04424381,\n              38.90005101\n            ],\n            [\n              -77.0442009,\n              38.90005101\n            ],\n            [\n              -77.0442009,\n              38.90001761\n            ],\n            [\n              -77.04424381,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.90005101\n            ],\n            [\n              -77.04424381,\n              38.90008441\n            ],\n            [\n              -77.0442009,\n              38.90008441\n            ],\n            [\n              -77.0442009,\n              38.90005101\n            ],\n            [\n              -77.04424381,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.90008441\n            ],\n            [\n              -77.04424381,\n              38.9001178\n            ],\n            [\n              -77.0442009,\n              38.9001178\n            ],\n            [\n              -77.0442009,\n              38.90008441\n            ],\n            [\n              -77.04424381,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.9001178\n            ],\n            [\n              -77.04424381,\n              38.9001512\n            ],\n            [\n              -77.0442009,\n              38.9001512\n            ],\n            [\n              -77.0442009,\n              38.9001178\n            ],\n            [\n              -77.04424381,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.9001512\n            ],\n            [\n              -77.04424381,\n              38.9001846\n            ],\n            [\n              -77.0442009,\n              38.9001846\n            ],\n            [\n              -77.0442009,\n              38.9001512\n            ],\n            [\n              -77.04424381,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.9001846\n            ],\n            [\n              -77.04424381,\n              38.900218\n            ],\n            [\n              -77.0442009,\n              38.900218\n            ],\n            [\n              -77.0442009,\n              38.9001846\n            ],\n            [\n              -77.04424381,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.900218\n            ],\n            [\n              -77.04424381,\n              38.9002514\n            ],\n            [\n              -77.0442009,\n              38.9002514\n            ],\n            [\n              -77.0442009,\n              38.900218\n            ],\n            [\n              -77.04424381,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04424381,\n              38.9002514\n            ],\n            [\n              -77.04424381,\n              38.9002848\n            ],\n            [\n              -77.0442009,\n              38.9002848\n            ],\n            [\n              -77.0442009,\n              38.9002514\n            ],\n            [\n              -77.04424381,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89968362\n            ],\n            [\n              -77.04428673,\n              38.89971702\n            ],\n            [\n              -77.04424381,\n              38.89971702\n            ],\n            [\n              -77.04424381,\n              38.89968362\n            ],\n            [\n              -77.04428673,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89971702\n            ],\n            [\n              -77.04428673,\n              38.89975042\n            ],\n            [\n              -77.04424381,\n              38.89975042\n            ],\n            [\n              -77.04424381,\n              38.89971702\n            ],\n            [\n              -77.04428673,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89975042\n            ],\n            [\n              -77.04428673,\n              38.89978382\n            ],\n            [\n              -77.04424381,\n              38.89978382\n            ],\n            [\n              -77.04424381,\n              38.89975042\n            ],\n            [\n              -77.04428673,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89978382\n            ],\n            [\n              -77.04428673,\n              38.89981722\n            ],\n            [\n              -77.04424381,\n              38.89981722\n            ],\n            [\n              -77.04424381,\n              38.89978382\n            ],\n            [\n              -77.04428673,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89981722\n            ],\n            [\n              -77.04428673,\n              38.89985062\n            ],\n            [\n              -77.04424381,\n              38.89985062\n            ],\n            [\n              -77.04424381,\n              38.89981722\n            ],\n            [\n              -77.04428673,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89985062\n            ],\n            [\n              -77.04428673,\n              38.89988401\n            ],\n            [\n              -77.04424381,\n              38.89988401\n            ],\n            [\n              -77.04424381,\n              38.89985062\n            ],\n            [\n              -77.04428673,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89988401\n            ],\n            [\n              -77.04428673,\n              38.89991741\n            ],\n            [\n              -77.04424381,\n              38.89991741\n            ],\n            [\n              -77.04424381,\n              38.89988401\n            ],\n            [\n              -77.04428673,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89991741\n            ],\n            [\n              -77.04428673,\n              38.89995081\n            ],\n            [\n              -77.04424381,\n              38.89995081\n            ],\n            [\n              -77.04424381,\n              38.89991741\n            ],\n            [\n              -77.04428673,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89995081\n            ],\n            [\n              -77.04428673,\n              38.89998421\n            ],\n            [\n              -77.04424381,\n              38.89998421\n            ],\n            [\n              -77.04424381,\n              38.89995081\n            ],\n            [\n              -77.04428673,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.89998421\n            ],\n            [\n              -77.04428673,\n              38.90001761\n            ],\n            [\n              -77.04424381,\n              38.90001761\n            ],\n            [\n              -77.04424381,\n              38.89998421\n            ],\n            [\n              -77.04428673,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.90001761\n            ],\n            [\n              -77.04428673,\n              38.90005101\n            ],\n            [\n              -77.04424381,\n              38.90005101\n            ],\n            [\n              -77.04424381,\n              38.90001761\n            ],\n            [\n              -77.04428673,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.90005101\n            ],\n            [\n              -77.04428673,\n              38.90008441\n            ],\n            [\n              -77.04424381,\n              38.90008441\n            ],\n            [\n              -77.04424381,\n              38.90005101\n            ],\n            [\n              -77.04428673,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.90008441\n            ],\n            [\n              -77.04428673,\n              38.9001178\n            ],\n            [\n              -77.04424381,\n              38.9001178\n            ],\n            [\n              -77.04424381,\n              38.90008441\n            ],\n            [\n              -77.04428673,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.9001178\n            ],\n            [\n              -77.04428673,\n              38.9001512\n            ],\n            [\n              -77.04424381,\n              38.9001512\n            ],\n            [\n              -77.04424381,\n              38.9001178\n            ],\n            [\n              -77.04428673,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.9001512\n            ],\n            [\n              -77.04428673,\n              38.9001846\n            ],\n            [\n              -77.04424381,\n              38.9001846\n            ],\n            [\n              -77.04424381,\n              38.9001512\n            ],\n            [\n              -77.04428673,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.9001846\n            ],\n            [\n              -77.04428673,\n              38.900218\n            ],\n            [\n              -77.04424381,\n              38.900218\n            ],\n            [\n              -77.04424381,\n              38.9001846\n            ],\n            [\n              -77.04428673,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.900218\n            ],\n            [\n              -77.04428673,\n              38.9002514\n            ],\n            [\n              -77.04424381,\n              38.9002514\n            ],\n            [\n              -77.04424381,\n              38.900218\n            ],\n            [\n              -77.04428673,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.9002514\n            ],\n            [\n              -77.04428673,\n              38.9002848\n            ],\n            [\n              -77.04424381,\n              38.9002848\n            ],\n            [\n              -77.04424381,\n              38.9002514\n            ],\n            [\n              -77.04428673,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04428673,\n              38.9002848\n            ],\n            [\n              -77.04428673,\n              38.9003182\n            ],\n            [\n              -77.04424381,\n              38.9003182\n            ],\n            [\n              -77.04424381,\n              38.9002848\n            ],\n            [\n              -77.04428673,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89968362\n            ],\n            [\n              -77.04432964,\n              38.89971702\n            ],\n            [\n              -77.04428673,\n              38.89971702\n            ],\n            [\n              -77.04428673,\n              38.89968362\n            ],\n            [\n              -77.04432964,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89971702\n            ],\n            [\n              -77.04432964,\n              38.89975042\n            ],\n            [\n              -77.04428673,\n              38.89975042\n            ],\n            [\n              -77.04428673,\n              38.89971702\n            ],\n            [\n              -77.04432964,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89975042\n            ],\n            [\n              -77.04432964,\n              38.89978382\n            ],\n            [\n              -77.04428673,\n              38.89978382\n            ],\n            [\n              -77.04428673,\n              38.89975042\n            ],\n            [\n              -77.04432964,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89978382\n            ],\n            [\n              -77.04432964,\n              38.89981722\n            ],\n            [\n              -77.04428673,\n              38.89981722\n            ],\n            [\n              -77.04428673,\n              38.89978382\n            ],\n            [\n              -77.04432964,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89981722\n            ],\n            [\n              -77.04432964,\n              38.89985062\n            ],\n            [\n              -77.04428673,\n              38.89985062\n            ],\n            [\n              -77.04428673,\n              38.89981722\n            ],\n            [\n              -77.04432964,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89985062\n            ],\n            [\n              -77.04432964,\n              38.89988401\n            ],\n            [\n              -77.04428673,\n              38.89988401\n            ],\n            [\n              -77.04428673,\n              38.89985062\n            ],\n            [\n              -77.04432964,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89988401\n            ],\n            [\n              -77.04432964,\n              38.89991741\n            ],\n            [\n              -77.04428673,\n              38.89991741\n            ],\n            [\n              -77.04428673,\n              38.89988401\n            ],\n            [\n              -77.04432964,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89991741\n            ],\n            [\n              -77.04432964,\n              38.89995081\n            ],\n            [\n              -77.04428673,\n              38.89995081\n            ],\n            [\n              -77.04428673,\n              38.89991741\n            ],\n            [\n              -77.04432964,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89995081\n            ],\n            [\n              -77.04432964,\n              38.89998421\n            ],\n            [\n              -77.04428673,\n              38.89998421\n            ],\n            [\n              -77.04428673,\n              38.89995081\n            ],\n            [\n              -77.04432964,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.89998421\n            ],\n            [\n              -77.04432964,\n              38.90001761\n            ],\n            [\n              -77.04428673,\n              38.90001761\n            ],\n            [\n              -77.04428673,\n              38.89998421\n            ],\n            [\n              -77.04432964,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.90001761\n            ],\n            [\n              -77.04432964,\n              38.90005101\n            ],\n            [\n              -77.04428673,\n              38.90005101\n            ],\n            [\n              -77.04428673,\n              38.90001761\n            ],\n            [\n              -77.04432964,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.90005101\n            ],\n            [\n              -77.04432964,\n              38.90008441\n            ],\n            [\n              -77.04428673,\n              38.90008441\n            ],\n            [\n              -77.04428673,\n              38.90005101\n            ],\n            [\n              -77.04432964,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.90008441\n            ],\n            [\n              -77.04432964,\n              38.9001178\n            ],\n            [\n              -77.04428673,\n              38.9001178\n            ],\n            [\n              -77.04428673,\n              38.90008441\n            ],\n            [\n              -77.04432964,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.9001178\n            ],\n            [\n              -77.04432964,\n              38.9001512\n            ],\n            [\n              -77.04428673,\n              38.9001512\n            ],\n            [\n              -77.04428673,\n              38.9001178\n            ],\n            [\n              -77.04432964,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.9001512\n            ],\n            [\n              -77.04432964,\n              38.9001846\n            ],\n            [\n              -77.04428673,\n              38.9001846\n            ],\n            [\n              -77.04428673,\n              38.9001512\n            ],\n            [\n              -77.04432964,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.9001846\n            ],\n            [\n              -77.04432964,\n              38.900218\n            ],\n            [\n              -77.04428673,\n              38.900218\n            ],\n            [\n              -77.04428673,\n              38.9001846\n            ],\n            [\n              -77.04432964,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.900218\n            ],\n            [\n              -77.04432964,\n              38.9002514\n            ],\n            [\n              -77.04428673,\n              38.9002514\n            ],\n            [\n              -77.04428673,\n              38.900218\n            ],\n            [\n              -77.04432964,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.9002514\n            ],\n            [\n              -77.04432964,\n              38.9002848\n            ],\n            [\n              -77.04428673,\n              38.9002848\n            ],\n            [\n              -77.04428673,\n              38.9002514\n            ],\n            [\n              -77.04432964,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04432964,\n              38.9002848\n            ],\n            [\n              -77.04432964,\n              38.9003182\n            ],\n            [\n              -77.04428673,\n              38.9003182\n            ],\n            [\n              -77.04428673,\n              38.9002848\n            ],\n            [\n              -77.04432964,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89968362\n            ],\n            [\n              -77.04437256,\n              38.89971702\n            ],\n            [\n              -77.04432964,\n              38.89971702\n            ],\n            [\n              -77.04432964,\n              38.89968362\n            ],\n            [\n              -77.04437256,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89971702\n            ],\n            [\n              -77.04437256,\n              38.89975042\n            ],\n            [\n              -77.04432964,\n              38.89975042\n            ],\n            [\n              -77.04432964,\n              38.89971702\n            ],\n            [\n              -77.04437256,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89975042\n            ],\n            [\n              -77.04437256,\n              38.89978382\n            ],\n            [\n              -77.04432964,\n              38.89978382\n            ],\n            [\n              -77.04432964,\n              38.89975042\n            ],\n            [\n              -77.04437256,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89978382\n            ],\n            [\n              -77.04437256,\n              38.89981722\n            ],\n            [\n              -77.04432964,\n              38.89981722\n            ],\n            [\n              -77.04432964,\n              38.89978382\n            ],\n            [\n              -77.04437256,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89981722\n            ],\n            [\n              -77.04437256,\n              38.89985062\n            ],\n            [\n              -77.04432964,\n              38.89985062\n            ],\n            [\n              -77.04432964,\n              38.89981722\n            ],\n            [\n              -77.04437256,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89985062\n            ],\n            [\n              -77.04437256,\n              38.89988401\n            ],\n            [\n              -77.04432964,\n              38.89988401\n            ],\n            [\n              -77.04432964,\n              38.89985062\n            ],\n            [\n              -77.04437256,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89988401\n            ],\n            [\n              -77.04437256,\n              38.89991741\n            ],\n            [\n              -77.04432964,\n              38.89991741\n            ],\n            [\n              -77.04432964,\n              38.89988401\n            ],\n            [\n              -77.04437256,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89991741\n            ],\n            [\n              -77.04437256,\n              38.89995081\n            ],\n            [\n              -77.04432964,\n              38.89995081\n            ],\n            [\n              -77.04432964,\n              38.89991741\n            ],\n            [\n              -77.04437256,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89995081\n            ],\n            [\n              -77.04437256,\n              38.89998421\n            ],\n            [\n              -77.04432964,\n              38.89998421\n            ],\n            [\n              -77.04432964,\n              38.89995081\n            ],\n            [\n              -77.04437256,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.89998421\n            ],\n            [\n              -77.04437256,\n              38.90001761\n            ],\n            [\n              -77.04432964,\n              38.90001761\n            ],\n            [\n              -77.04432964,\n              38.89998421\n            ],\n            [\n              -77.04437256,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.90001761\n            ],\n            [\n              -77.04437256,\n              38.90005101\n            ],\n            [\n              -77.04432964,\n              38.90005101\n            ],\n            [\n              -77.04432964,\n              38.90001761\n            ],\n            [\n              -77.04437256,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.90005101\n            ],\n            [\n              -77.04437256,\n              38.90008441\n            ],\n            [\n              -77.04432964,\n              38.90008441\n            ],\n            [\n              -77.04432964,\n              38.90005101\n            ],\n            [\n              -77.04437256,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.90008441\n            ],\n            [\n              -77.04437256,\n              38.9001178\n            ],\n            [\n              -77.04432964,\n              38.9001178\n            ],\n            [\n              -77.04432964,\n              38.90008441\n            ],\n            [\n              -77.04437256,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.9001178\n            ],\n            [\n              -77.04437256,\n              38.9001512\n            ],\n            [\n              -77.04432964,\n              38.9001512\n            ],\n            [\n              -77.04432964,\n              38.9001178\n            ],\n            [\n              -77.04437256,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.9001512\n            ],\n            [\n              -77.04437256,\n              38.9001846\n            ],\n            [\n              -77.04432964,\n              38.9001846\n            ],\n            [\n              -77.04432964,\n              38.9001512\n            ],\n            [\n              -77.04437256,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.9001846\n            ],\n            [\n              -77.04437256,\n              38.900218\n            ],\n            [\n              -77.04432964,\n              38.900218\n            ],\n            [\n              -77.04432964,\n              38.9001846\n            ],\n            [\n              -77.04437256,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.900218\n            ],\n            [\n              -77.04437256,\n              38.9002514\n            ],\n            [\n              -77.04432964,\n              38.9002514\n            ],\n            [\n              -77.04432964,\n              38.900218\n            ],\n            [\n              -77.04437256,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.9002514\n            ],\n            [\n              -77.04437256,\n              38.9002848\n            ],\n            [\n              -77.04432964,\n              38.9002848\n            ],\n            [\n              -77.04432964,\n              38.9002514\n            ],\n            [\n              -77.04437256,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.9002848\n            ],\n            [\n              -77.04437256,\n              38.9003182\n            ],\n            [\n              -77.04432964,\n              38.9003182\n            ],\n            [\n              -77.04432964,\n              38.9002848\n            ],\n            [\n              -77.04437256,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04437256,\n              38.9003182\n            ],\n            [\n              -77.04437256,\n              38.90035159\n            ],\n            [\n              -77.04432964,\n              38.90035159\n            ],\n            [\n              -77.04432964,\n              38.9003182\n            ],\n            [\n              -77.04437256,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89968362\n            ],\n            [\n              -77.04441547,\n              38.89971702\n            ],\n            [\n              -77.04437256,\n              38.89971702\n            ],\n            [\n              -77.04437256,\n              38.89968362\n            ],\n            [\n              -77.04441547,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89971702\n            ],\n            [\n              -77.04441547,\n              38.89975042\n            ],\n            [\n              -77.04437256,\n              38.89975042\n            ],\n            [\n              -77.04437256,\n              38.89971702\n            ],\n            [\n              -77.04441547,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89975042\n            ],\n            [\n              -77.04441547,\n              38.89978382\n            ],\n            [\n              -77.04437256,\n              38.89978382\n            ],\n            [\n              -77.04437256,\n              38.89975042\n            ],\n            [\n              -77.04441547,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89978382\n            ],\n            [\n              -77.04441547,\n              38.89981722\n            ],\n            [\n              -77.04437256,\n              38.89981722\n            ],\n            [\n              -77.04437256,\n              38.89978382\n            ],\n            [\n              -77.04441547,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89981722\n            ],\n            [\n              -77.04441547,\n              38.89985062\n            ],\n            [\n              -77.04437256,\n              38.89985062\n            ],\n            [\n              -77.04437256,\n              38.89981722\n            ],\n            [\n              -77.04441547,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89985062\n            ],\n            [\n              -77.04441547,\n              38.89988401\n            ],\n            [\n              -77.04437256,\n              38.89988401\n            ],\n            [\n              -77.04437256,\n              38.89985062\n            ],\n            [\n              -77.04441547,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89988401\n            ],\n            [\n              -77.04441547,\n              38.89991741\n            ],\n            [\n              -77.04437256,\n              38.89991741\n            ],\n            [\n              -77.04437256,\n              38.89988401\n            ],\n            [\n              -77.04441547,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89991741\n            ],\n            [\n              -77.04441547,\n              38.89995081\n            ],\n            [\n              -77.04437256,\n              38.89995081\n            ],\n            [\n              -77.04437256,\n              38.89991741\n            ],\n            [\n              -77.04441547,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89995081\n            ],\n            [\n              -77.04441547,\n              38.89998421\n            ],\n            [\n              -77.04437256,\n              38.89998421\n            ],\n            [\n              -77.04437256,\n              38.89995081\n            ],\n            [\n              -77.04441547,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.89998421\n            ],\n            [\n              -77.04441547,\n              38.90001761\n            ],\n            [\n              -77.04437256,\n              38.90001761\n            ],\n            [\n              -77.04437256,\n              38.89998421\n            ],\n            [\n              -77.04441547,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.90001761\n            ],\n            [\n              -77.04441547,\n              38.90005101\n            ],\n            [\n              -77.04437256,\n              38.90005101\n            ],\n            [\n              -77.04437256,\n              38.90001761\n            ],\n            [\n              -77.04441547,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.90005101\n            ],\n            [\n              -77.04441547,\n              38.90008441\n            ],\n            [\n              -77.04437256,\n              38.90008441\n            ],\n            [\n              -77.04437256,\n              38.90005101\n            ],\n            [\n              -77.04441547,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.90008441\n            ],\n            [\n              -77.04441547,\n              38.9001178\n            ],\n            [\n              -77.04437256,\n              38.9001178\n            ],\n            [\n              -77.04437256,\n              38.90008441\n            ],\n            [\n              -77.04441547,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.9001178\n            ],\n            [\n              -77.04441547,\n              38.9001512\n            ],\n            [\n              -77.04437256,\n              38.9001512\n            ],\n            [\n              -77.04437256,\n              38.9001178\n            ],\n            [\n              -77.04441547,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.9001512\n            ],\n            [\n              -77.04441547,\n              38.9001846\n            ],\n            [\n              -77.04437256,\n              38.9001846\n            ],\n            [\n              -77.04437256,\n              38.9001512\n            ],\n            [\n              -77.04441547,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.9001846\n            ],\n            [\n              -77.04441547,\n              38.900218\n            ],\n            [\n              -77.04437256,\n              38.900218\n            ],\n            [\n              -77.04437256,\n              38.9001846\n            ],\n            [\n              -77.04441547,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.900218\n            ],\n            [\n              -77.04441547,\n              38.9002514\n            ],\n            [\n              -77.04437256,\n              38.9002514\n            ],\n            [\n              -77.04437256,\n              38.900218\n            ],\n            [\n              -77.04441547,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.9002514\n            ],\n            [\n              -77.04441547,\n              38.9002848\n            ],\n            [\n              -77.04437256,\n              38.9002848\n            ],\n            [\n              -77.04437256,\n              38.9002514\n            ],\n            [\n              -77.04441547,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.9002848\n            ],\n            [\n              -77.04441547,\n              38.9003182\n            ],\n            [\n              -77.04437256,\n              38.9003182\n            ],\n            [\n              -77.04437256,\n              38.9002848\n            ],\n            [\n              -77.04441547,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04441547,\n              38.9003182\n            ],\n            [\n              -77.04441547,\n              38.90035159\n            ],\n            [\n              -77.04437256,\n              38.90035159\n            ],\n            [\n              -77.04437256,\n              38.9003182\n            ],\n            [\n              -77.04441547,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89968362\n            ],\n            [\n              -77.04445839,\n              38.89971702\n            ],\n            [\n              -77.04441547,\n              38.89971702\n            ],\n            [\n              -77.04441547,\n              38.89968362\n            ],\n            [\n              -77.04445839,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89971702\n            ],\n            [\n              -77.04445839,\n              38.89975042\n            ],\n            [\n              -77.04441547,\n              38.89975042\n            ],\n            [\n              -77.04441547,\n              38.89971702\n            ],\n            [\n              -77.04445839,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89975042\n            ],\n            [\n              -77.04445839,\n              38.89978382\n            ],\n            [\n              -77.04441547,\n              38.89978382\n            ],\n            [\n              -77.04441547,\n              38.89975042\n            ],\n            [\n              -77.04445839,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89978382\n            ],\n            [\n              -77.04445839,\n              38.89981722\n            ],\n            [\n              -77.04441547,\n              38.89981722\n            ],\n            [\n              -77.04441547,\n              38.89978382\n            ],\n            [\n              -77.04445839,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89981722\n            ],\n            [\n              -77.04445839,\n              38.89985062\n            ],\n            [\n              -77.04441547,\n              38.89985062\n            ],\n            [\n              -77.04441547,\n              38.89981722\n            ],\n            [\n              -77.04445839,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89985062\n            ],\n            [\n              -77.04445839,\n              38.89988401\n            ],\n            [\n              -77.04441547,\n              38.89988401\n            ],\n            [\n              -77.04441547,\n              38.89985062\n            ],\n            [\n              -77.04445839,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89988401\n            ],\n            [\n              -77.04445839,\n              38.89991741\n            ],\n            [\n              -77.04441547,\n              38.89991741\n            ],\n            [\n              -77.04441547,\n              38.89988401\n            ],\n            [\n              -77.04445839,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89991741\n            ],\n            [\n              -77.04445839,\n              38.89995081\n            ],\n            [\n              -77.04441547,\n              38.89995081\n            ],\n            [\n              -77.04441547,\n              38.89991741\n            ],\n            [\n              -77.04445839,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89995081\n            ],\n            [\n              -77.04445839,\n              38.89998421\n            ],\n            [\n              -77.04441547,\n              38.89998421\n            ],\n            [\n              -77.04441547,\n              38.89995081\n            ],\n            [\n              -77.04445839,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.89998421\n            ],\n            [\n              -77.04445839,\n              38.90001761\n            ],\n            [\n              -77.04441547,\n              38.90001761\n            ],\n            [\n              -77.04441547,\n              38.89998421\n            ],\n            [\n              -77.04445839,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.90001761\n            ],\n            [\n              -77.04445839,\n              38.90005101\n            ],\n            [\n              -77.04441547,\n              38.90005101\n            ],\n            [\n              -77.04441547,\n              38.90001761\n            ],\n            [\n              -77.04445839,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.90005101\n            ],\n            [\n              -77.04445839,\n              38.90008441\n            ],\n            [\n              -77.04441547,\n              38.90008441\n            ],\n            [\n              -77.04441547,\n              38.90005101\n            ],\n            [\n              -77.04445839,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.90008441\n            ],\n            [\n              -77.04445839,\n              38.9001178\n            ],\n            [\n              -77.04441547,\n              38.9001178\n            ],\n            [\n              -77.04441547,\n              38.90008441\n            ],\n            [\n              -77.04445839,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.9001178\n            ],\n            [\n              -77.04445839,\n              38.9001512\n            ],\n            [\n              -77.04441547,\n              38.9001512\n            ],\n            [\n              -77.04441547,\n              38.9001178\n            ],\n            [\n              -77.04445839,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.9001512\n            ],\n            [\n              -77.04445839,\n              38.9001846\n            ],\n            [\n              -77.04441547,\n              38.9001846\n            ],\n            [\n              -77.04441547,\n              38.9001512\n            ],\n            [\n              -77.04445839,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.9001846\n            ],\n            [\n              -77.04445839,\n              38.900218\n            ],\n            [\n              -77.04441547,\n              38.900218\n            ],\n            [\n              -77.04441547,\n              38.9001846\n            ],\n            [\n              -77.04445839,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.900218\n            ],\n            [\n              -77.04445839,\n              38.9002514\n            ],\n            [\n              -77.04441547,\n              38.9002514\n            ],\n            [\n              -77.04441547,\n              38.900218\n            ],\n            [\n              -77.04445839,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.9002514\n            ],\n            [\n              -77.04445839,\n              38.9002848\n            ],\n            [\n              -77.04441547,\n              38.9002848\n            ],\n            [\n              -77.04441547,\n              38.9002514\n            ],\n            [\n              -77.04445839,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.9002848\n            ],\n            [\n              -77.04445839,\n              38.9003182\n            ],\n            [\n              -77.04441547,\n              38.9003182\n            ],\n            [\n              -77.04441547,\n              38.9002848\n            ],\n            [\n              -77.04445839,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.9003182\n            ],\n            [\n              -77.04445839,\n              38.90035159\n            ],\n            [\n              -77.04441547,\n              38.90035159\n            ],\n            [\n              -77.04441547,\n              38.9003182\n            ],\n            [\n              -77.04445839,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04445839,\n              38.90035159\n            ],\n            [\n              -77.04445839,\n              38.90038499\n            ],\n            [\n              -77.04441547,\n              38.90038499\n            ],\n            [\n              -77.04441547,\n              38.90035159\n            ],\n            [\n              -77.04445839,\n              38.90035159\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89968362\n            ],\n            [\n              -77.0445013,\n              38.89971702\n            ],\n            [\n              -77.04445839,\n              38.89971702\n            ],\n            [\n              -77.04445839,\n              38.89968362\n            ],\n            [\n              -77.0445013,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89971702\n            ],\n            [\n              -77.0445013,\n              38.89975042\n            ],\n            [\n              -77.04445839,\n              38.89975042\n            ],\n            [\n              -77.04445839,\n              38.89971702\n            ],\n            [\n              -77.0445013,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89975042\n            ],\n            [\n              -77.0445013,\n              38.89978382\n            ],\n            [\n              -77.04445839,\n              38.89978382\n            ],\n            [\n              -77.04445839,\n              38.89975042\n            ],\n            [\n              -77.0445013,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89978382\n            ],\n            [\n              -77.0445013,\n              38.89981722\n            ],\n            [\n              -77.04445839,\n              38.89981722\n            ],\n            [\n              -77.04445839,\n              38.89978382\n            ],\n            [\n              -77.0445013,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89981722\n            ],\n            [\n              -77.0445013,\n              38.89985062\n            ],\n            [\n              -77.04445839,\n              38.89985062\n            ],\n            [\n              -77.04445839,\n              38.89981722\n            ],\n            [\n              -77.0445013,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89985062\n            ],\n            [\n              -77.0445013,\n              38.89988401\n            ],\n            [\n              -77.04445839,\n              38.89988401\n            ],\n            [\n              -77.04445839,\n              38.89985062\n            ],\n            [\n              -77.0445013,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89988401\n            ],\n            [\n              -77.0445013,\n              38.89991741\n            ],\n            [\n              -77.04445839,\n              38.89991741\n            ],\n            [\n              -77.04445839,\n              38.89988401\n            ],\n            [\n              -77.0445013,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89991741\n            ],\n            [\n              -77.0445013,\n              38.89995081\n            ],\n            [\n              -77.04445839,\n              38.89995081\n            ],\n            [\n              -77.04445839,\n              38.89991741\n            ],\n            [\n              -77.0445013,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89995081\n            ],\n            [\n              -77.0445013,\n              38.89998421\n            ],\n            [\n              -77.04445839,\n              38.89998421\n            ],\n            [\n              -77.04445839,\n              38.89995081\n            ],\n            [\n              -77.0445013,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.89998421\n            ],\n            [\n              -77.0445013,\n              38.90001761\n            ],\n            [\n              -77.04445839,\n              38.90001761\n            ],\n            [\n              -77.04445839,\n              38.89998421\n            ],\n            [\n              -77.0445013,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.90001761\n            ],\n            [\n              -77.0445013,\n              38.90005101\n            ],\n            [\n              -77.04445839,\n              38.90005101\n            ],\n            [\n              -77.04445839,\n              38.90001761\n            ],\n            [\n              -77.0445013,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.90005101\n            ],\n            [\n              -77.0445013,\n              38.90008441\n            ],\n            [\n              -77.04445839,\n              38.90008441\n            ],\n            [\n              -77.04445839,\n              38.90005101\n            ],\n            [\n              -77.0445013,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.90008441\n            ],\n            [\n              -77.0445013,\n              38.9001178\n            ],\n            [\n              -77.04445839,\n              38.9001178\n            ],\n            [\n              -77.04445839,\n              38.90008441\n            ],\n            [\n              -77.0445013,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.9001178\n            ],\n            [\n              -77.0445013,\n              38.9001512\n            ],\n            [\n              -77.04445839,\n              38.9001512\n            ],\n            [\n              -77.04445839,\n              38.9001178\n            ],\n            [\n              -77.0445013,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.9001512\n            ],\n            [\n              -77.0445013,\n              38.9001846\n            ],\n            [\n              -77.04445839,\n              38.9001846\n            ],\n            [\n              -77.04445839,\n              38.9001512\n            ],\n            [\n              -77.0445013,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.9001846\n            ],\n            [\n              -77.0445013,\n              38.900218\n            ],\n            [\n              -77.04445839,\n              38.900218\n            ],\n            [\n              -77.04445839,\n              38.9001846\n            ],\n            [\n              -77.0445013,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.900218\n            ],\n            [\n              -77.0445013,\n              38.9002514\n            ],\n            [\n              -77.04445839,\n              38.9002514\n            ],\n            [\n              -77.04445839,\n              38.900218\n            ],\n            [\n              -77.0445013,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.9002514\n            ],\n            [\n              -77.0445013,\n              38.9002848\n            ],\n            [\n              -77.04445839,\n              38.9002848\n            ],\n            [\n              -77.04445839,\n              38.9002514\n            ],\n            [\n              -77.0445013,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.9002848\n            ],\n            [\n              -77.0445013,\n              38.9003182\n            ],\n            [\n              -77.04445839,\n              38.9003182\n            ],\n            [\n              -77.04445839,\n              38.9002848\n            ],\n            [\n              -77.0445013,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.9003182\n            ],\n            [\n              -77.0445013,\n              38.90035159\n            ],\n            [\n              -77.04445839,\n              38.90035159\n            ],\n            [\n              -77.04445839,\n              38.9003182\n            ],\n            [\n              -77.0445013,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0445013,\n              38.90035159\n            ],\n            [\n              -77.0445013,\n              38.90038499\n            ],\n            [\n              -77.04445839,\n              38.90038499\n            ],\n            [\n              -77.04445839,\n              38.90035159\n            ],\n            [\n              -77.0445013,\n              38.90035159\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89968362\n            ],\n            [\n              -77.04454422,\n              38.89971702\n            ],\n            [\n              -77.0445013,\n              38.89971702\n            ],\n            [\n              -77.0445013,\n              38.89968362\n            ],\n            [\n              -77.04454422,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89971702\n            ],\n            [\n              -77.04454422,\n              38.89975042\n            ],\n            [\n              -77.0445013,\n              38.89975042\n            ],\n            [\n              -77.0445013,\n              38.89971702\n            ],\n            [\n              -77.04454422,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89975042\n            ],\n            [\n              -77.04454422,\n              38.89978382\n            ],\n            [\n              -77.0445013,\n              38.89978382\n            ],\n            [\n              -77.0445013,\n              38.89975042\n            ],\n            [\n              -77.04454422,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89978382\n            ],\n            [\n              -77.04454422,\n              38.89981722\n            ],\n            [\n              -77.0445013,\n              38.89981722\n            ],\n            [\n              -77.0445013,\n              38.89978382\n            ],\n            [\n              -77.04454422,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89981722\n            ],\n            [\n              -77.04454422,\n              38.89985062\n            ],\n            [\n              -77.0445013,\n              38.89985062\n            ],\n            [\n              -77.0445013,\n              38.89981722\n            ],\n            [\n              -77.04454422,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89985062\n            ],\n            [\n              -77.04454422,\n              38.89988401\n            ],\n            [\n              -77.0445013,\n              38.89988401\n            ],\n            [\n              -77.0445013,\n              38.89985062\n            ],\n            [\n              -77.04454422,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89988401\n            ],\n            [\n              -77.04454422,\n              38.89991741\n            ],\n            [\n              -77.0445013,\n              38.89991741\n            ],\n            [\n              -77.0445013,\n              38.89988401\n            ],\n            [\n              -77.04454422,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89991741\n            ],\n            [\n              -77.04454422,\n              38.89995081\n            ],\n            [\n              -77.0445013,\n              38.89995081\n            ],\n            [\n              -77.0445013,\n              38.89991741\n            ],\n            [\n              -77.04454422,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89995081\n            ],\n            [\n              -77.04454422,\n              38.89998421\n            ],\n            [\n              -77.0445013,\n              38.89998421\n            ],\n            [\n              -77.0445013,\n              38.89995081\n            ],\n            [\n              -77.04454422,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.89998421\n            ],\n            [\n              -77.04454422,\n              38.90001761\n            ],\n            [\n              -77.0445013,\n              38.90001761\n            ],\n            [\n              -77.0445013,\n              38.89998421\n            ],\n            [\n              -77.04454422,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.90001761\n            ],\n            [\n              -77.04454422,\n              38.90005101\n            ],\n            [\n              -77.0445013,\n              38.90005101\n            ],\n            [\n              -77.0445013,\n              38.90001761\n            ],\n            [\n              -77.04454422,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.90005101\n            ],\n            [\n              -77.04454422,\n              38.90008441\n            ],\n            [\n              -77.0445013,\n              38.90008441\n            ],\n            [\n              -77.0445013,\n              38.90005101\n            ],\n            [\n              -77.04454422,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.90008441\n            ],\n            [\n              -77.04454422,\n              38.9001178\n            ],\n            [\n              -77.0445013,\n              38.9001178\n            ],\n            [\n              -77.0445013,\n              38.90008441\n            ],\n            [\n              -77.04454422,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.9001178\n            ],\n            [\n              -77.04454422,\n              38.9001512\n            ],\n            [\n              -77.0445013,\n              38.9001512\n            ],\n            [\n              -77.0445013,\n              38.9001178\n            ],\n            [\n              -77.04454422,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.9001512\n            ],\n            [\n              -77.04454422,\n              38.9001846\n            ],\n            [\n              -77.0445013,\n              38.9001846\n            ],\n            [\n              -77.0445013,\n              38.9001512\n            ],\n            [\n              -77.04454422,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.9001846\n            ],\n            [\n              -77.04454422,\n              38.900218\n            ],\n            [\n              -77.0445013,\n              38.900218\n            ],\n            [\n              -77.0445013,\n              38.9001846\n            ],\n            [\n              -77.04454422,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.900218\n            ],\n            [\n              -77.04454422,\n              38.9002514\n            ],\n            [\n              -77.0445013,\n              38.9002514\n            ],\n            [\n              -77.0445013,\n              38.900218\n            ],\n            [\n              -77.04454422,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.9002514\n            ],\n            [\n              -77.04454422,\n              38.9002848\n            ],\n            [\n              -77.0445013,\n              38.9002848\n            ],\n            [\n              -77.0445013,\n              38.9002514\n            ],\n            [\n              -77.04454422,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.9002848\n            ],\n            [\n              -77.04454422,\n              38.9003182\n            ],\n            [\n              -77.0445013,\n              38.9003182\n            ],\n            [\n              -77.0445013,\n              38.9002848\n            ],\n            [\n              -77.04454422,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.9003182\n            ],\n            [\n              -77.04454422,\n              38.90035159\n            ],\n            [\n              -77.0445013,\n              38.90035159\n            ],\n            [\n              -77.0445013,\n              38.9003182\n            ],\n            [\n              -77.04454422,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.90035159\n            ],\n            [\n              -77.04454422,\n              38.90038499\n            ],\n            [\n              -77.0445013,\n              38.90038499\n            ],\n            [\n              -77.0445013,\n              38.90035159\n            ],\n            [\n              -77.04454422,\n              38.90035159\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04454422,\n              38.90038499\n            ],\n            [\n              -77.04454422,\n              38.90041839\n            ],\n            [\n              -77.0445013,\n              38.90041839\n            ],\n            [\n              -77.0445013,\n              38.90038499\n            ],\n            [\n              -77.04454422,\n              38.90038499\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89965022\n            ],\n            [\n              -77.04458714,\n              38.89968362\n            ],\n            [\n              -77.04454422,\n              38.89968362\n            ],\n            [\n              -77.04454422,\n              38.89965022\n            ],\n            [\n              -77.04458714,\n              38.89965022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89968362\n            ],\n            [\n              -77.04458714,\n              38.89971702\n            ],\n            [\n              -77.04454422,\n              38.89971702\n            ],\n            [\n              -77.04454422,\n              38.89968362\n            ],\n            [\n              -77.04458714,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89971702\n            ],\n            [\n              -77.04458714,\n              38.89975042\n            ],\n            [\n              -77.04454422,\n              38.89975042\n            ],\n            [\n              -77.04454422,\n              38.89971702\n            ],\n            [\n              -77.04458714,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89975042\n            ],\n            [\n              -77.04458714,\n              38.89978382\n            ],\n            [\n              -77.04454422,\n              38.89978382\n            ],\n            [\n              -77.04454422,\n              38.89975042\n            ],\n            [\n              -77.04458714,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89978382\n            ],\n            [\n              -77.04458714,\n              38.89981722\n            ],\n            [\n              -77.04454422,\n              38.89981722\n            ],\n            [\n              -77.04454422,\n              38.89978382\n            ],\n            [\n              -77.04458714,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89981722\n            ],\n            [\n              -77.04458714,\n              38.89985062\n            ],\n            [\n              -77.04454422,\n              38.89985062\n            ],\n            [\n              -77.04454422,\n              38.89981722\n            ],\n            [\n              -77.04458714,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89985062\n            ],\n            [\n              -77.04458714,\n              38.89988401\n            ],\n            [\n              -77.04454422,\n              38.89988401\n            ],\n            [\n              -77.04454422,\n              38.89985062\n            ],\n            [\n              -77.04458714,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89988401\n            ],\n            [\n              -77.04458714,\n              38.89991741\n            ],\n            [\n              -77.04454422,\n              38.89991741\n            ],\n            [\n              -77.04454422,\n              38.89988401\n            ],\n            [\n              -77.04458714,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89991741\n            ],\n            [\n              -77.04458714,\n              38.89995081\n            ],\n            [\n              -77.04454422,\n              38.89995081\n            ],\n            [\n              -77.04454422,\n              38.89991741\n            ],\n            [\n              -77.04458714,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89995081\n            ],\n            [\n              -77.04458714,\n              38.89998421\n            ],\n            [\n              -77.04454422,\n              38.89998421\n            ],\n            [\n              -77.04454422,\n              38.89995081\n            ],\n            [\n              -77.04458714,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.89998421\n            ],\n            [\n              -77.04458714,\n              38.90001761\n            ],\n            [\n              -77.04454422,\n              38.90001761\n            ],\n            [\n              -77.04454422,\n              38.89998421\n            ],\n            [\n              -77.04458714,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.90001761\n            ],\n            [\n              -77.04458714,\n              38.90005101\n            ],\n            [\n              -77.04454422,\n              38.90005101\n            ],\n            [\n              -77.04454422,\n              38.90001761\n            ],\n            [\n              -77.04458714,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.90005101\n            ],\n            [\n              -77.04458714,\n              38.90008441\n            ],\n            [\n              -77.04454422,\n              38.90008441\n            ],\n            [\n              -77.04454422,\n              38.90005101\n            ],\n            [\n              -77.04458714,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.90008441\n            ],\n            [\n              -77.04458714,\n              38.9001178\n            ],\n            [\n              -77.04454422,\n              38.9001178\n            ],\n            [\n              -77.04454422,\n              38.90008441\n            ],\n            [\n              -77.04458714,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.9001178\n            ],\n            [\n              -77.04458714,\n              38.9001512\n            ],\n            [\n              -77.04454422,\n              38.9001512\n            ],\n            [\n              -77.04454422,\n              38.9001178\n            ],\n            [\n              -77.04458714,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.9001512\n            ],\n            [\n              -77.04458714,\n              38.9001846\n            ],\n            [\n              -77.04454422,\n              38.9001846\n            ],\n            [\n              -77.04454422,\n              38.9001512\n            ],\n            [\n              -77.04458714,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.9001846\n            ],\n            [\n              -77.04458714,\n              38.900218\n            ],\n            [\n              -77.04454422,\n              38.900218\n            ],\n            [\n              -77.04454422,\n              38.9001846\n            ],\n            [\n              -77.04458714,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.900218\n            ],\n            [\n              -77.04458714,\n              38.9002514\n            ],\n            [\n              -77.04454422,\n              38.9002514\n            ],\n            [\n              -77.04454422,\n              38.900218\n            ],\n            [\n              -77.04458714,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.9002514\n            ],\n            [\n              -77.04458714,\n              38.9002848\n            ],\n            [\n              -77.04454422,\n              38.9002848\n            ],\n            [\n              -77.04454422,\n              38.9002514\n            ],\n            [\n              -77.04458714,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.9002848\n            ],\n            [\n              -77.04458714,\n              38.9003182\n            ],\n            [\n              -77.04454422,\n              38.9003182\n            ],\n            [\n              -77.04454422,\n              38.9002848\n            ],\n            [\n              -77.04458714,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.9003182\n            ],\n            [\n              -77.04458714,\n              38.90035159\n            ],\n            [\n              -77.04454422,\n              38.90035159\n            ],\n            [\n              -77.04454422,\n              38.9003182\n            ],\n            [\n              -77.04458714,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.90035159\n            ],\n            [\n              -77.04458714,\n              38.90038499\n            ],\n            [\n              -77.04454422,\n              38.90038499\n            ],\n            [\n              -77.04454422,\n              38.90035159\n            ],\n            [\n              -77.04458714,\n              38.90035159\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04458714,\n              38.90038499\n            ],\n            [\n              -77.04458714,\n              38.90041839\n            ],\n            [\n              -77.04454422,\n              38.90041839\n            ],\n            [\n              -77.04454422,\n              38.90038499\n            ],\n            [\n              -77.04458714,\n              38.90038499\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89965022\n            ],\n            [\n              -77.04463005,\n              38.89968362\n            ],\n            [\n              -77.04458714,\n              38.89968362\n            ],\n            [\n              -77.04458714,\n              38.89965022\n            ],\n            [\n              -77.04463005,\n              38.89965022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89968362\n            ],\n            [\n              -77.04463005,\n              38.89971702\n            ],\n            [\n              -77.04458714,\n              38.89971702\n            ],\n            [\n              -77.04458714,\n              38.89968362\n            ],\n            [\n              -77.04463005,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89971702\n            ],\n            [\n              -77.04463005,\n              38.89975042\n            ],\n            [\n              -77.04458714,\n              38.89975042\n            ],\n            [\n              -77.04458714,\n              38.89971702\n            ],\n            [\n              -77.04463005,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89975042\n            ],\n            [\n              -77.04463005,\n              38.89978382\n            ],\n            [\n              -77.04458714,\n              38.89978382\n            ],\n            [\n              -77.04458714,\n              38.89975042\n            ],\n            [\n              -77.04463005,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89978382\n            ],\n            [\n              -77.04463005,\n              38.89981722\n            ],\n            [\n              -77.04458714,\n              38.89981722\n            ],\n            [\n              -77.04458714,\n              38.89978382\n            ],\n            [\n              -77.04463005,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89981722\n            ],\n            [\n              -77.04463005,\n              38.89985062\n            ],\n            [\n              -77.04458714,\n              38.89985062\n            ],\n            [\n              -77.04458714,\n              38.89981722\n            ],\n            [\n              -77.04463005,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89985062\n            ],\n            [\n              -77.04463005,\n              38.89988401\n            ],\n            [\n              -77.04458714,\n              38.89988401\n            ],\n            [\n              -77.04458714,\n              38.89985062\n            ],\n            [\n              -77.04463005,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89988401\n            ],\n            [\n              -77.04463005,\n              38.89991741\n            ],\n            [\n              -77.04458714,\n              38.89991741\n            ],\n            [\n              -77.04458714,\n              38.89988401\n            ],\n            [\n              -77.04463005,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89991741\n            ],\n            [\n              -77.04463005,\n              38.89995081\n            ],\n            [\n              -77.04458714,\n              38.89995081\n            ],\n            [\n              -77.04458714,\n              38.89991741\n            ],\n            [\n              -77.04463005,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89995081\n            ],\n            [\n              -77.04463005,\n              38.89998421\n            ],\n            [\n              -77.04458714,\n              38.89998421\n            ],\n            [\n              -77.04458714,\n              38.89995081\n            ],\n            [\n              -77.04463005,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.89998421\n            ],\n            [\n              -77.04463005,\n              38.90001761\n            ],\n            [\n              -77.04458714,\n              38.90001761\n            ],\n            [\n              -77.04458714,\n              38.89998421\n            ],\n            [\n              -77.04463005,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.90001761\n            ],\n            [\n              -77.04463005,\n              38.90005101\n            ],\n            [\n              -77.04458714,\n              38.90005101\n            ],\n            [\n              -77.04458714,\n              38.90001761\n            ],\n            [\n              -77.04463005,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.90005101\n            ],\n            [\n              -77.04463005,\n              38.90008441\n            ],\n            [\n              -77.04458714,\n              38.90008441\n            ],\n            [\n              -77.04458714,\n              38.90005101\n            ],\n            [\n              -77.04463005,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.90008441\n            ],\n            [\n              -77.04463005,\n              38.9001178\n            ],\n            [\n              -77.04458714,\n              38.9001178\n            ],\n            [\n              -77.04458714,\n              38.90008441\n            ],\n            [\n              -77.04463005,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.9001178\n            ],\n            [\n              -77.04463005,\n              38.9001512\n            ],\n            [\n              -77.04458714,\n              38.9001512\n            ],\n            [\n              -77.04458714,\n              38.9001178\n            ],\n            [\n              -77.04463005,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.9001512\n            ],\n            [\n              -77.04463005,\n              38.9001846\n            ],\n            [\n              -77.04458714,\n              38.9001846\n            ],\n            [\n              -77.04458714,\n              38.9001512\n            ],\n            [\n              -77.04463005,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.9001846\n            ],\n            [\n              -77.04463005,\n              38.900218\n            ],\n            [\n              -77.04458714,\n              38.900218\n            ],\n            [\n              -77.04458714,\n              38.9001846\n            ],\n            [\n              -77.04463005,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.900218\n            ],\n            [\n              -77.04463005,\n              38.9002514\n            ],\n            [\n              -77.04458714,\n              38.9002514\n            ],\n            [\n              -77.04458714,\n              38.900218\n            ],\n            [\n              -77.04463005,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.9002514\n            ],\n            [\n              -77.04463005,\n              38.9002848\n            ],\n            [\n              -77.04458714,\n              38.9002848\n            ],\n            [\n              -77.04458714,\n              38.9002514\n            ],\n            [\n              -77.04463005,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.9002848\n            ],\n            [\n              -77.04463005,\n              38.9003182\n            ],\n            [\n              -77.04458714,\n              38.9003182\n            ],\n            [\n              -77.04458714,\n              38.9002848\n            ],\n            [\n              -77.04463005,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.9003182\n            ],\n            [\n              -77.04463005,\n              38.90035159\n            ],\n            [\n              -77.04458714,\n              38.90035159\n            ],\n            [\n              -77.04458714,\n              38.9003182\n            ],\n            [\n              -77.04463005,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.90035159\n            ],\n            [\n              -77.04463005,\n              38.90038499\n            ],\n            [\n              -77.04458714,\n              38.90038499\n            ],\n            [\n              -77.04458714,\n              38.90035159\n            ],\n            [\n              -77.04463005,\n              38.90035159\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04463005,\n              38.90038499\n            ],\n            [\n              -77.04463005,\n              38.90041839\n            ],\n            [\n              -77.04458714,\n              38.90041839\n            ],\n            [\n              -77.04458714,\n              38.90038499\n            ],\n            [\n              -77.04463005,\n              38.90038499\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89968362\n            ],\n            [\n              -77.04467297,\n              38.89971702\n            ],\n            [\n              -77.04463005,\n              38.89971702\n            ],\n            [\n              -77.04463005,\n              38.89968362\n            ],\n            [\n              -77.04467297,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89971702\n            ],\n            [\n              -77.04467297,\n              38.89975042\n            ],\n            [\n              -77.04463005,\n              38.89975042\n            ],\n            [\n              -77.04463005,\n              38.89971702\n            ],\n            [\n              -77.04467297,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89975042\n            ],\n            [\n              -77.04467297,\n              38.89978382\n            ],\n            [\n              -77.04463005,\n              38.89978382\n            ],\n            [\n              -77.04463005,\n              38.89975042\n            ],\n            [\n              -77.04467297,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89978382\n            ],\n            [\n              -77.04467297,\n              38.89981722\n            ],\n            [\n              -77.04463005,\n              38.89981722\n            ],\n            [\n              -77.04463005,\n              38.89978382\n            ],\n            [\n              -77.04467297,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89981722\n            ],\n            [\n              -77.04467297,\n              38.89985062\n            ],\n            [\n              -77.04463005,\n              38.89985062\n            ],\n            [\n              -77.04463005,\n              38.89981722\n            ],\n            [\n              -77.04467297,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89985062\n            ],\n            [\n              -77.04467297,\n              38.89988401\n            ],\n            [\n              -77.04463005,\n              38.89988401\n            ],\n            [\n              -77.04463005,\n              38.89985062\n            ],\n            [\n              -77.04467297,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89988401\n            ],\n            [\n              -77.04467297,\n              38.89991741\n            ],\n            [\n              -77.04463005,\n              38.89991741\n            ],\n            [\n              -77.04463005,\n              38.89988401\n            ],\n            [\n              -77.04467297,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89991741\n            ],\n            [\n              -77.04467297,\n              38.89995081\n            ],\n            [\n              -77.04463005,\n              38.89995081\n            ],\n            [\n              -77.04463005,\n              38.89991741\n            ],\n            [\n              -77.04467297,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89995081\n            ],\n            [\n              -77.04467297,\n              38.89998421\n            ],\n            [\n              -77.04463005,\n              38.89998421\n            ],\n            [\n              -77.04463005,\n              38.89995081\n            ],\n            [\n              -77.04467297,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.89998421\n            ],\n            [\n              -77.04467297,\n              38.90001761\n            ],\n            [\n              -77.04463005,\n              38.90001761\n            ],\n            [\n              -77.04463005,\n              38.89998421\n            ],\n            [\n              -77.04467297,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.90001761\n            ],\n            [\n              -77.04467297,\n              38.90005101\n            ],\n            [\n              -77.04463005,\n              38.90005101\n            ],\n            [\n              -77.04463005,\n              38.90001761\n            ],\n            [\n              -77.04467297,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.90005101\n            ],\n            [\n              -77.04467297,\n              38.90008441\n            ],\n            [\n              -77.04463005,\n              38.90008441\n            ],\n            [\n              -77.04463005,\n              38.90005101\n            ],\n            [\n              -77.04467297,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.90008441\n            ],\n            [\n              -77.04467297,\n              38.9001178\n            ],\n            [\n              -77.04463005,\n              38.9001178\n            ],\n            [\n              -77.04463005,\n              38.90008441\n            ],\n            [\n              -77.04467297,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.9001178\n            ],\n            [\n              -77.04467297,\n              38.9001512\n            ],\n            [\n              -77.04463005,\n              38.9001512\n            ],\n            [\n              -77.04463005,\n              38.9001178\n            ],\n            [\n              -77.04467297,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.9001512\n            ],\n            [\n              -77.04467297,\n              38.9001846\n            ],\n            [\n              -77.04463005,\n              38.9001846\n            ],\n            [\n              -77.04463005,\n              38.9001512\n            ],\n            [\n              -77.04467297,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.9001846\n            ],\n            [\n              -77.04467297,\n              38.900218\n            ],\n            [\n              -77.04463005,\n              38.900218\n            ],\n            [\n              -77.04463005,\n              38.9001846\n            ],\n            [\n              -77.04467297,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.900218\n            ],\n            [\n              -77.04467297,\n              38.9002514\n            ],\n            [\n              -77.04463005,\n              38.9002514\n            ],\n            [\n              -77.04463005,\n              38.900218\n            ],\n            [\n              -77.04467297,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.9002514\n            ],\n            [\n              -77.04467297,\n              38.9002848\n            ],\n            [\n              -77.04463005,\n              38.9002848\n            ],\n            [\n              -77.04463005,\n              38.9002514\n            ],\n            [\n              -77.04467297,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.9002848\n            ],\n            [\n              -77.04467297,\n              38.9003182\n            ],\n            [\n              -77.04463005,\n              38.9003182\n            ],\n            [\n              -77.04463005,\n              38.9002848\n            ],\n            [\n              -77.04467297,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.9003182\n            ],\n            [\n              -77.04467297,\n              38.90035159\n            ],\n            [\n              -77.04463005,\n              38.90035159\n            ],\n            [\n              -77.04463005,\n              38.9003182\n            ],\n            [\n              -77.04467297,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.90035159\n            ],\n            [\n              -77.04467297,\n              38.90038499\n            ],\n            [\n              -77.04463005,\n              38.90038499\n            ],\n            [\n              -77.04463005,\n              38.90035159\n            ],\n            [\n              -77.04467297,\n              38.90035159\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.90038499\n            ],\n            [\n              -77.04467297,\n              38.90041839\n            ],\n            [\n              -77.04463005,\n              38.90041839\n            ],\n            [\n              -77.04463005,\n              38.90038499\n            ],\n            [\n              -77.04467297,\n              38.90038499\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04467297,\n              38.90041839\n            ],\n            [\n              -77.04467297,\n              38.90045179\n            ],\n            [\n              -77.04463005,\n              38.90045179\n            ],\n            [\n              -77.04463005,\n              38.90041839\n            ],\n            [\n              -77.04467297,\n              38.90041839\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89968362\n            ],\n            [\n              -77.04471588,\n              38.89971702\n            ],\n            [\n              -77.04467297,\n              38.89971702\n            ],\n            [\n              -77.04467297,\n              38.89968362\n            ],\n            [\n              -77.04471588,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89971702\n            ],\n            [\n              -77.04471588,\n              38.89975042\n            ],\n            [\n              -77.04467297,\n              38.89975042\n            ],\n            [\n              -77.04467297,\n              38.89971702\n            ],\n            [\n              -77.04471588,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89975042\n            ],\n            [\n              -77.04471588,\n              38.89978382\n            ],\n            [\n              -77.04467297,\n              38.89978382\n            ],\n            [\n              -77.04467297,\n              38.89975042\n            ],\n            [\n              -77.04471588,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89978382\n            ],\n            [\n              -77.04471588,\n              38.89981722\n            ],\n            [\n              -77.04467297,\n              38.89981722\n            ],\n            [\n              -77.04467297,\n              38.89978382\n            ],\n            [\n              -77.04471588,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89981722\n            ],\n            [\n              -77.04471588,\n              38.89985062\n            ],\n            [\n              -77.04467297,\n              38.89985062\n            ],\n            [\n              -77.04467297,\n              38.89981722\n            ],\n            [\n              -77.04471588,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89985062\n            ],\n            [\n              -77.04471588,\n              38.89988401\n            ],\n            [\n              -77.04467297,\n              38.89988401\n            ],\n            [\n              -77.04467297,\n              38.89985062\n            ],\n            [\n              -77.04471588,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89988401\n            ],\n            [\n              -77.04471588,\n              38.89991741\n            ],\n            [\n              -77.04467297,\n              38.89991741\n            ],\n            [\n              -77.04467297,\n              38.89988401\n            ],\n            [\n              -77.04471588,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89991741\n            ],\n            [\n              -77.04471588,\n              38.89995081\n            ],\n            [\n              -77.04467297,\n              38.89995081\n            ],\n            [\n              -77.04467297,\n              38.89991741\n            ],\n            [\n              -77.04471588,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89995081\n            ],\n            [\n              -77.04471588,\n              38.89998421\n            ],\n            [\n              -77.04467297,\n              38.89998421\n            ],\n            [\n              -77.04467297,\n              38.89995081\n            ],\n            [\n              -77.04471588,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.89998421\n            ],\n            [\n              -77.04471588,\n              38.90001761\n            ],\n            [\n              -77.04467297,\n              38.90001761\n            ],\n            [\n              -77.04467297,\n              38.89998421\n            ],\n            [\n              -77.04471588,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.90001761\n            ],\n            [\n              -77.04471588,\n              38.90005101\n            ],\n            [\n              -77.04467297,\n              38.90005101\n            ],\n            [\n              -77.04467297,\n              38.90001761\n            ],\n            [\n              -77.04471588,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.90005101\n            ],\n            [\n              -77.04471588,\n              38.90008441\n            ],\n            [\n              -77.04467297,\n              38.90008441\n            ],\n            [\n              -77.04467297,\n              38.90005101\n            ],\n            [\n              -77.04471588,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.90008441\n            ],\n            [\n              -77.04471588,\n              38.9001178\n            ],\n            [\n              -77.04467297,\n              38.9001178\n            ],\n            [\n              -77.04467297,\n              38.90008441\n            ],\n            [\n              -77.04471588,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.9001178\n            ],\n            [\n              -77.04471588,\n              38.9001512\n            ],\n            [\n              -77.04467297,\n              38.9001512\n            ],\n            [\n              -77.04467297,\n              38.9001178\n            ],\n            [\n              -77.04471588,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.9001512\n            ],\n            [\n              -77.04471588,\n              38.9001846\n            ],\n            [\n              -77.04467297,\n              38.9001846\n            ],\n            [\n              -77.04467297,\n              38.9001512\n            ],\n            [\n              -77.04471588,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.9001846\n            ],\n            [\n              -77.04471588,\n              38.900218\n            ],\n            [\n              -77.04467297,\n              38.900218\n            ],\n            [\n              -77.04467297,\n              38.9001846\n            ],\n            [\n              -77.04471588,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.900218\n            ],\n            [\n              -77.04471588,\n              38.9002514\n            ],\n            [\n              -77.04467297,\n              38.9002514\n            ],\n            [\n              -77.04467297,\n              38.900218\n            ],\n            [\n              -77.04471588,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.9002514\n            ],\n            [\n              -77.04471588,\n              38.9002848\n            ],\n            [\n              -77.04467297,\n              38.9002848\n            ],\n            [\n              -77.04467297,\n              38.9002514\n            ],\n            [\n              -77.04471588,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.9002848\n            ],\n            [\n              -77.04471588,\n              38.9003182\n            ],\n            [\n              -77.04467297,\n              38.9003182\n            ],\n            [\n              -77.04467297,\n              38.9002848\n            ],\n            [\n              -77.04471588,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.9003182\n            ],\n            [\n              -77.04471588,\n              38.90035159\n            ],\n            [\n              -77.04467297,\n              38.90035159\n            ],\n            [\n              -77.04467297,\n              38.9003182\n            ],\n            [\n              -77.04471588,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.90035159\n            ],\n            [\n              -77.04471588,\n              38.90038499\n            ],\n            [\n              -77.04467297,\n              38.90038499\n            ],\n            [\n              -77.04467297,\n              38.90035159\n            ],\n            [\n              -77.04471588,\n              38.90035159\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.90038499\n            ],\n            [\n              -77.04471588,\n              38.90041839\n            ],\n            [\n              -77.04467297,\n              38.90041839\n            ],\n            [\n              -77.04467297,\n              38.90038499\n            ],\n            [\n              -77.04471588,\n              38.90038499\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04471588,\n              38.90041839\n            ],\n            [\n              -77.04471588,\n              38.90045179\n            ],\n            [\n              -77.04467297,\n              38.90045179\n            ],\n            [\n              -77.04467297,\n              38.90041839\n            ],\n            [\n              -77.04471588,\n              38.90041839\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89968362\n            ],\n            [\n              -77.0447588,\n              38.89971702\n            ],\n            [\n              -77.04471588,\n              38.89971702\n            ],\n            [\n              -77.04471588,\n              38.89968362\n            ],\n            [\n              -77.0447588,\n              38.89968362\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89971702\n            ],\n            [\n              -77.0447588,\n              38.89975042\n            ],\n            [\n              -77.04471588,\n              38.89975042\n            ],\n            [\n              -77.04471588,\n              38.89971702\n            ],\n            [\n              -77.0447588,\n              38.89971702\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89975042\n            ],\n            [\n              -77.0447588,\n              38.89978382\n            ],\n            [\n              -77.04471588,\n              38.89978382\n            ],\n            [\n              -77.04471588,\n              38.89975042\n            ],\n            [\n              -77.0447588,\n              38.89975042\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89978382\n            ],\n            [\n              -77.0447588,\n              38.89981722\n            ],\n            [\n              -77.04471588,\n              38.89981722\n            ],\n            [\n              -77.04471588,\n              38.89978382\n            ],\n            [\n              -77.0447588,\n              38.89978382\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89981722\n            ],\n            [\n              -77.0447588,\n              38.89985062\n            ],\n            [\n              -77.04471588,\n              38.89985062\n            ],\n            [\n              -77.04471588,\n              38.89981722\n            ],\n            [\n              -77.0447588,\n              38.89981722\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89985062\n            ],\n            [\n              -77.0447588,\n              38.89988401\n            ],\n            [\n              -77.04471588,\n              38.89988401\n            ],\n            [\n              -77.04471588,\n              38.89985062\n            ],\n            [\n              -77.0447588,\n              38.89985062\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89988401\n            ],\n            [\n              -77.0447588,\n              38.89991741\n            ],\n            [\n              -77.04471588,\n              38.89991741\n            ],\n            [\n              -77.04471588,\n              38.89988401\n            ],\n            [\n              -77.0447588,\n              38.89988401\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89991741\n            ],\n            [\n              -77.0447588,\n              38.89995081\n            ],\n            [\n              -77.04471588,\n              38.89995081\n            ],\n            [\n              -77.04471588,\n              38.89991741\n            ],\n            [\n              -77.0447588,\n              38.89991741\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89995081\n            ],\n            [\n              -77.0447588,\n              38.89998421\n            ],\n            [\n              -77.04471588,\n              38.89998421\n            ],\n            [\n              -77.04471588,\n              38.89995081\n            ],\n            [\n              -77.0447588,\n              38.89995081\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.89998421\n            ],\n            [\n              -77.0447588,\n              38.90001761\n            ],\n            [\n              -77.04471588,\n              38.90001761\n            ],\n            [\n              -77.04471588,\n              38.89998421\n            ],\n            [\n              -77.0447588,\n              38.89998421\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.90001761\n            ],\n            [\n              -77.0447588,\n              38.90005101\n            ],\n            [\n              -77.04471588,\n              38.90005101\n            ],\n            [\n              -77.04471588,\n              38.90001761\n            ],\n            [\n              -77.0447588,\n              38.90001761\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.90005101\n            ],\n            [\n              -77.0447588,\n              38.90008441\n            ],\n            [\n              -77.04471588,\n              38.90008441\n            ],\n            [\n              -77.04471588,\n              38.90005101\n            ],\n            [\n              -77.0447588,\n              38.90005101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.90008441\n            ],\n            [\n              -77.0447588,\n              38.9001178\n            ],\n            [\n              -77.04471588,\n              38.9001178\n            ],\n            [\n              -77.04471588,\n              38.90008441\n            ],\n            [\n              -77.0447588,\n              38.90008441\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.9001178\n            ],\n            [\n              -77.0447588,\n              38.9001512\n            ],\n            [\n              -77.04471588,\n              38.9001512\n            ],\n            [\n              -77.04471588,\n              38.9001178\n            ],\n            [\n              -77.0447588,\n              38.9001178\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.9001512\n            ],\n            [\n              -77.0447588,\n              38.9001846\n            ],\n            [\n              -77.04471588,\n              38.9001846\n            ],\n            [\n              -77.04471588,\n              38.9001512\n            ],\n            [\n              -77.0447588,\n              38.9001512\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.9001846\n            ],\n            [\n              -77.0447588,\n              38.900218\n            ],\n            [\n              -77.04471588,\n              38.900218\n            ],\n            [\n              -77.04471588,\n              38.9001846\n            ],\n            [\n              -77.0447588,\n              38.9001846\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.900218\n            ],\n            [\n              -77.0447588,\n              38.9002514\n            ],\n            [\n              -77.04471588,\n              38.9002514\n            ],\n            [\n              -77.04471588,\n              38.900218\n            ],\n            [\n              -77.0447588,\n              38.900218\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.9002514\n            ],\n            [\n              -77.0447588,\n              38.9002848\n            ],\n            [\n              -77.04471588,\n              38.9002848\n            ],\n            [\n              -77.04471588,\n              38.9002514\n            ],\n            [\n              -77.0447588,\n              38.9002514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.9002848\n            ],\n            [\n              -77.0447588,\n              38.9003182\n            ],\n            [\n              -77.04471588,\n              38.9003182\n            ],\n            [\n              -77.04471588,\n              38.9002848\n            ],\n            [\n              -77.0447588,\n              38.9002848\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.9003182\n            ],\n            [\n              -77.0447588,\n              38.90035159\n            ],\n            [\n              -77.04471588,\n              38.90035159\n            ],\n            [\n              -77.04471588,\n              38.9003182\n            ],\n            [\n              -77.0447588,\n              38.9003182\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.90035159\n            ],\n            [\n              -77.0447588,\n              38.90038499\n            ],\n            [\n              -77.04471588,\n              38.90038499\n            ],\n            [\n              -77.04471588,\n              38.90035159\n            ],\n            [\n              -77.0447588,\n              38.90035159\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.90038499\n            ],\n            [\n              -77.0447588,\n              38.90041839\n            ],\n            [\n              -77.04471588,\n              38.90041839\n            ],\n            [\n              -77.04471588,\n              38.90038499\n            ],\n            [\n              -77.0447588,\n              38.90038499\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.90041839\n            ],\n            [\n              -77.0447588,\n              38.90045179\n            ],\n            [\n              -77.04471588,\n              38.90045179\n            ],\n            [\n              -77.04471588,\n              38.90041839\n            ],\n            [\n              -77.0447588,\n              38.90041839\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.0447588,\n              38.90045179\n            ],\n            [\n              -77.0447588,\n              38.90048519\n            ],\n            [\n              -77.04471588,\n              38.90048519\n            ],\n            [\n              -77.04471588,\n              38.90045179\n            ],\n            [\n              -77.0447588,\n              38.90045179\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.04474941,\n              38.90019399\n            ],\n            [\n              -77.04473063,\n              38.90019399\n            ],\n            [\n              -77.04473063,\n              38.90027123\n            ],\n            [\n              -77.04474673,\n              38.90027332\n            ],\n            [\n              -77.04474673,\n              38.90045701\n            ],\n            [\n              -77.04394475,\n              38.90017521\n            ],\n            [\n              -77.04394206,\n              38.90017312\n            ],\n            [\n              -77.0438455,\n              38.90017103\n            ],\n            [\n              -77.0438455,\n              38.90014181\n            ],\n            [\n              -77.04365239,\n              38.90007501\n            ],\n            [\n              -77.04365239,\n              38.89989341\n            ],\n            [\n              -77.04371139,\n              38.89991637\n            ],\n            [\n              -77.04371139,\n              38.8998621\n            ],\n            [\n              -77.04369262,\n              38.8998621\n            ],\n            [\n              -77.04369262,\n              38.89969928\n            ],\n            [\n              -77.04452947,\n              38.89969719\n            ],\n            [\n              -77.04460457,\n              38.89967214\n            ],\n            [\n              -77.04460725,\n              38.8996951\n            ],\n            [\n              -77.04474673,\n              38.89969719\n            ],\n            [\n              -77.04474941,\n              38.90019399\n            ],\n            [\n              -77.04474941,\n              38.90019399\n            ],\n            [\n              -77.04474941,\n              38.90019399\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/line.geojson",
    "content": "{\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [\n            -106.21719360351562,\n            28.592359801121567\n          ],\n          [\n            -106.1004638671875,\n            28.791130513231813\n          ],\n          [\n            -105.87661743164062,\n            28.864519767126602\n          ],\n          [\n            -105.82374572753905,\n            28.60743139267596\n          ]\n        ]\n      }\n    }"
  },
  {
    "path": "test/fixtures/line_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -105.90820313,\n              28.53627451\n            ],\n            [\n              -105.90820313,\n              28.61345942\n            ],\n            [\n              -105.8203125,\n              28.61345942\n            ],\n            [\n              -105.8203125,\n              28.53627451\n            ],\n            [\n              -105.90820313,\n              28.53627451\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -105.90820313,\n              28.61345942\n            ],\n            [\n              -105.90820313,\n              28.69058765\n            ],\n            [\n              -105.8203125,\n              28.69058765\n            ],\n            [\n              -105.8203125,\n              28.61345942\n            ],\n            [\n              -105.90820313,\n              28.61345942\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -105.90820313,\n              28.69058765\n            ],\n            [\n              -105.90820313,\n              28.76765911\n            ],\n            [\n              -105.8203125,\n              28.76765911\n            ],\n            [\n              -105.8203125,\n              28.69058765\n            ],\n            [\n              -105.90820313,\n              28.69058765\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -105.99609375,\n              28.76765911\n            ],\n            [\n              -105.99609375,\n              28.92163128\n            ],\n            [\n              -105.8203125,\n              28.92163128\n            ],\n            [\n              -105.8203125,\n              28.76765911\n            ],\n            [\n              -105.99609375,\n              28.76765911\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.08398438,\n              28.76765911\n            ],\n            [\n              -106.08398438,\n              28.84467368\n            ],\n            [\n              -105.99609375,\n              28.84467368\n            ],\n            [\n              -105.99609375,\n              28.76765911\n            ],\n            [\n              -106.08398438,\n              28.76765911\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.171875,\n              28.61345942\n            ],\n            [\n              -106.171875,\n              28.69058765\n            ],\n            [\n              -106.08398438,\n              28.69058765\n            ],\n            [\n              -106.08398438,\n              28.61345942\n            ],\n            [\n              -106.171875,\n              28.61345942\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.171875,\n              28.69058765\n            ],\n            [\n              -106.171875,\n              28.76765911\n            ],\n            [\n              -106.08398438,\n              28.76765911\n            ],\n            [\n              -106.08398438,\n              28.69058765\n            ],\n            [\n              -106.171875,\n              28.69058765\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.171875,\n              28.76765911\n            ],\n            [\n              -106.171875,\n              28.84467368\n            ],\n            [\n              -106.08398438,\n              28.84467368\n            ],\n            [\n              -106.08398438,\n              28.76765911\n            ],\n            [\n              -106.171875,\n              28.76765911\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.25976563,\n              28.53627451\n            ],\n            [\n              -106.25976563,\n              28.61345942\n            ],\n            [\n              -106.171875,\n              28.61345942\n            ],\n            [\n              -106.171875,\n              28.53627451\n            ],\n            [\n              -106.25976563,\n              28.53627451\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.25976563,\n              28.61345942\n            ],\n            [\n              -106.25976563,\n              28.69058765\n            ],\n            [\n              -106.171875,\n              28.69058765\n            ],\n            [\n              -106.171875,\n              28.61345942\n            ],\n            [\n              -106.25976563,\n              28.61345942\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [\n            -106.2171936,\n            28.5923598\n          ],\n          [\n            -106.10046387,\n            28.79113051\n          ],\n          [\n            -105.87661743,\n            28.86451977\n          ],\n          [\n            -105.82374573,\n            28.60743139\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/multiline.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [\n          11.3818359375,\n          51.15178610143037\n        ],\n        [\n          7.998046875,\n          50.0077390146369\n        ],\n        [\n          10.458984375,\n          49.18170338770663\n        ],\n        [\n          5.2734375,\n          46.6795944656402\n        ]\n      ],\n      [\n        [\n          0.263671875,\n          49.15296965617042\n        ],\n        [\n          3.076171875,\n          50.0077390146369\n        ],\n        [\n          3.6474609374999996,\n          48.60385760823255\n        ],\n        [\n          4.7900390625,\n          49.095452162534826\n        ],\n        [\n          6.328125,\n          48.48748647988415\n        ],\n        [\n          10.1513671875,\n          48.07807894349862\n        ],\n        [\n          12.392578125,\n          46.46813299215554\n        ]\n      ]\n    ]\n  }\n}"
  },
  {
    "path": "test/fixtures/multiline_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              48.92249926\n            ],\n            [\n              0,\n              49.83798245\n            ],\n            [\n              1.40625,\n              49.83798245\n            ],\n            [\n              1.40625,\n              48.92249926\n            ],\n            [\n              0,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              1.40625,\n              48.92249926\n            ],\n            [\n              1.40625,\n              49.83798245\n            ],\n            [\n              2.8125,\n              49.83798245\n            ],\n            [\n              2.8125,\n              48.92249926\n            ],\n            [\n              1.40625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              1.40625,\n              49.83798245\n            ],\n            [\n              1.40625,\n              50.73645514\n            ],\n            [\n              2.8125,\n              50.73645514\n            ],\n            [\n              2.8125,\n              49.83798245\n            ],\n            [\n              1.40625,\n              49.83798245\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              46.07323063\n            ],\n            [\n              11.25,\n              47.04018214\n            ],\n            [\n              12.65625,\n              47.04018214\n            ],\n            [\n              12.65625,\n              46.07323063\n            ],\n            [\n              11.25,\n              46.07323063\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              47.04018214\n            ],\n            [\n              11.25,\n              47.98992167\n            ],\n            [\n              12.65625,\n              47.98992167\n            ],\n            [\n              12.65625,\n              47.04018214\n            ],\n            [\n              11.25,\n              47.04018214\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              50.73645514\n            ],\n            [\n              11.25,\n              51.61801655\n            ],\n            [\n              12.65625,\n              51.61801655\n            ],\n            [\n              12.65625,\n              50.73645514\n            ],\n            [\n              11.25,\n              50.73645514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              2.8125,\n              47.98992167\n            ],\n            [\n              2.8125,\n              48.92249926\n            ],\n            [\n              4.21875,\n              48.92249926\n            ],\n            [\n              4.21875,\n              47.98992167\n            ],\n            [\n              2.8125,\n              47.98992167\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              2.8125,\n              48.92249926\n            ],\n            [\n              2.8125,\n              49.83798245\n            ],\n            [\n              4.21875,\n              49.83798245\n            ],\n            [\n              4.21875,\n              48.92249926\n            ],\n            [\n              2.8125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              2.8125,\n              49.83798245\n            ],\n            [\n              2.8125,\n              50.73645514\n            ],\n            [\n              4.21875,\n              50.73645514\n            ],\n            [\n              4.21875,\n              49.83798245\n            ],\n            [\n              2.8125,\n              49.83798245\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              4.21875,\n              46.07323063\n            ],\n            [\n              4.21875,\n              47.04018214\n            ],\n            [\n              5.625,\n              47.04018214\n            ],\n            [\n              5.625,\n              46.07323063\n            ],\n            [\n              4.21875,\n              46.07323063\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              4.21875,\n              47.98992167\n            ],\n            [\n              4.21875,\n              48.92249926\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              5.625,\n              47.98992167\n            ],\n            [\n              4.21875,\n              47.98992167\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              4.21875,\n              48.92249926\n            ],\n            [\n              4.21875,\n              49.83798245\n            ],\n            [\n              5.625,\n              49.83798245\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              4.21875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              46.07323063\n            ],\n            [\n              5.625,\n              47.04018214\n            ],\n            [\n              7.03125,\n              47.04018214\n            ],\n            [\n              7.03125,\n              46.07323063\n            ],\n            [\n              5.625,\n              46.07323063\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              47.04018214\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              8.4375,\n              48.92249926\n            ],\n            [\n              8.4375,\n              47.04018214\n            ],\n            [\n              5.625,\n              47.04018214\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              7.03125,\n              49.83798245\n            ],\n            [\n              7.03125,\n              50.73645514\n            ],\n            [\n              8.4375,\n              50.73645514\n            ],\n            [\n              8.4375,\n              49.83798245\n            ],\n            [\n              7.03125,\n              49.83798245\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              8.4375,\n              47.98992167\n            ],\n            [\n              8.4375,\n              48.92249926\n            ],\n            [\n              9.84375,\n              48.92249926\n            ],\n            [\n              9.84375,\n              47.98992167\n            ],\n            [\n              8.4375,\n              47.98992167\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              8.4375,\n              48.92249926\n            ],\n            [\n              8.4375,\n              50.73645514\n            ],\n            [\n              11.25,\n              50.73645514\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              8.4375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              9.84375,\n              47.04018214\n            ],\n            [\n              9.84375,\n              47.98992167\n            ],\n            [\n              11.25,\n              47.98992167\n            ],\n            [\n              11.25,\n              47.04018214\n            ],\n            [\n              9.84375,\n              47.04018214\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              9.84375,\n              47.98992167\n            ],\n            [\n              9.84375,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              47.98992167\n            ],\n            [\n              9.84375,\n              47.98992167\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              9.84375,\n              50.73645514\n            ],\n            [\n              9.84375,\n              51.61801655\n            ],\n            [\n              11.25,\n              51.61801655\n            ],\n            [\n              11.25,\n              50.73645514\n            ],\n            [\n              9.84375,\n              50.73645514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [\n              11.38183594,\n              51.1517861\n            ],\n            [\n              7.99804688,\n              50.00773901\n            ],\n            [\n              10.45898438,\n              49.18170339\n            ],\n            [\n              5.2734375,\n              46.67959447\n            ]\n          ],\n          [\n            [\n              0.26367188,\n              49.15296966\n            ],\n            [\n              3.07617188,\n              50.00773901\n            ],\n            [\n              3.64746094,\n              48.60385761\n            ],\n            [\n              4.79003906,\n              49.09545216\n            ],\n            [\n              6.328125,\n              48.48748648\n            ],\n            [\n              10.15136719,\n              48.07807894\n            ],\n            [\n              12.39257813,\n              46.46813299\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/multipoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [\n        -84.48486328124999,\n        43.40504748787035\n      ],\n      [\n        -90.87890625,\n        39.90973623453719\n      ],\n      [\n        -84.55078125,\n        43.45291889355468\n      ],\n      [\n        -90.8349609375,\n        39.93711893299021\n      ]\n    ]\n  }\n}"
  },
  {
    "path": "test/fixtures/multipoint_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.55078125,\n              43.38908194\n            ],\n            [\n              -84.55078125,\n              43.45291889\n            ],\n            [\n              -84.46289063,\n              43.45291889\n            ],\n            [\n              -84.46289063,\n              43.38908194\n            ],\n            [\n              -84.55078125,\n              43.38908194\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.55078125,\n              43.45291889\n            ],\n            [\n              -84.55078125,\n              43.51668854\n            ],\n            [\n              -84.46289063,\n              43.51668854\n            ],\n            [\n              -84.46289063,\n              43.45291889\n            ],\n            [\n              -84.55078125,\n              43.45291889\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90.87890625,\n              39.84228602\n            ],\n            [\n              -90.87890625,\n              39.90973623\n            ],\n            [\n              -90.79101563,\n              39.90973623\n            ],\n            [\n              -90.79101563,\n              39.84228602\n            ],\n            [\n              -90.87890625,\n              39.84228602\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90.87890625,\n              39.90973623\n            ],\n            [\n              -90.87890625,\n              39.9771201\n            ],\n            [\n              -90.79101563,\n              39.9771201\n            ],\n            [\n              -90.79101563,\n              39.90973623\n            ],\n            [\n              -90.87890625,\n              39.90973623\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [\n            -84.48486328,\n            43.40504749\n          ],\n          [\n            -90.87890625,\n            39.90973623\n          ],\n          [\n            -84.55078125,\n            43.45291889\n          ],\n          [\n            -90.83496094,\n            39.93711893\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/point.geojson",
    "content": "{\n  \"type\": \"Point\",\n  \"coordinates\": [\n    -77.15664982795715,\n    38.87419791355846\n  ]\n}"
  },
  {
    "path": "test/fixtures/point_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              79.07958984,\n              21.12549764\n            ],\n            [\n              79.07958984,\n              21.13574526\n            ],\n            [\n              79.09057617,\n              21.13574526\n            ],\n            [\n              79.09057617,\n              21.12549764\n            ],\n            [\n              79.07958984,\n              21.12549764\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n          79.08096313,\n          21.13518486\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/polygon.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        5.11962890625,\n        20.46818922264095\n      ],\n      [\n        5.11962890625,\n        20.7663868125152\n      ],\n      [\n        5.504150390625,\n        20.7663868125152\n      ],\n      [\n        5.504150390625,\n        20.46818922264095\n      ],\n      [\n        5.11962890625,\n        20.46818922264095\n      ]\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/polygon_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.45789616\n            ],\n            [\n              5.11962891,\n              20.46818922\n            ],\n            [\n              5.13061523,\n              20.46818922\n            ],\n            [\n              5.13061523,\n              20.45789616\n            ],\n            [\n              5.11962891,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.46818922\n            ],\n            [\n              5.11962891,\n              20.48877329\n            ],\n            [\n              5.14160156,\n              20.48877329\n            ],\n            [\n              5.14160156,\n              20.46818922\n            ],\n            [\n              5.11962891,\n              20.46818922\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.48877329\n            ],\n            [\n              5.11962891,\n              20.50935459\n            ],\n            [\n              5.14160156,\n              20.50935459\n            ],\n            [\n              5.14160156,\n              20.48877329\n            ],\n            [\n              5.11962891,\n              20.48877329\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.50935459\n            ],\n            [\n              5.11962891,\n              20.52993313\n            ],\n            [\n              5.14160156,\n              20.52993313\n            ],\n            [\n              5.14160156,\n              20.50935459\n            ],\n            [\n              5.11962891,\n              20.50935459\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.52993313\n            ],\n            [\n              5.11962891,\n              20.55050889\n            ],\n            [\n              5.14160156,\n              20.55050889\n            ],\n            [\n              5.14160156,\n              20.52993313\n            ],\n            [\n              5.11962891,\n              20.52993313\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.55050889\n            ],\n            [\n              5.11962891,\n              20.57108189\n            ],\n            [\n              5.14160156,\n              20.57108189\n            ],\n            [\n              5.14160156,\n              20.55050889\n            ],\n            [\n              5.11962891,\n              20.55050889\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.57108189\n            ],\n            [\n              5.11962891,\n              20.59165212\n            ],\n            [\n              5.14160156,\n              20.59165212\n            ],\n            [\n              5.14160156,\n              20.57108189\n            ],\n            [\n              5.11962891,\n              20.57108189\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.59165212\n            ],\n            [\n              5.11962891,\n              20.61221957\n            ],\n            [\n              5.14160156,\n              20.61221957\n            ],\n            [\n              5.14160156,\n              20.59165212\n            ],\n            [\n              5.11962891,\n              20.59165212\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.61221957\n            ],\n            [\n              5.11962891,\n              20.63278425\n            ],\n            [\n              5.14160156,\n              20.63278425\n            ],\n            [\n              5.14160156,\n              20.61221957\n            ],\n            [\n              5.11962891,\n              20.61221957\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.63278425\n            ],\n            [\n              5.11962891,\n              20.65334615\n            ],\n            [\n              5.14160156,\n              20.65334615\n            ],\n            [\n              5.14160156,\n              20.63278425\n            ],\n            [\n              5.11962891,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.65334615\n            ],\n            [\n              5.11962891,\n              20.67390526\n            ],\n            [\n              5.14160156,\n              20.67390526\n            ],\n            [\n              5.14160156,\n              20.65334615\n            ],\n            [\n              5.11962891,\n              20.65334615\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.67390526\n            ],\n            [\n              5.11962891,\n              20.6944616\n            ],\n            [\n              5.14160156,\n              20.6944616\n            ],\n            [\n              5.14160156,\n              20.67390526\n            ],\n            [\n              5.11962891,\n              20.67390526\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.6944616\n            ],\n            [\n              5.11962891,\n              20.71501515\n            ],\n            [\n              5.14160156,\n              20.71501515\n            ],\n            [\n              5.14160156,\n              20.6944616\n            ],\n            [\n              5.11962891,\n              20.6944616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.71501515\n            ],\n            [\n              5.11962891,\n              20.73556591\n            ],\n            [\n              5.14160156,\n              20.73556591\n            ],\n            [\n              5.14160156,\n              20.71501515\n            ],\n            [\n              5.11962891,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.73556591\n            ],\n            [\n              5.11962891,\n              20.75611387\n            ],\n            [\n              5.14160156,\n              20.75611387\n            ],\n            [\n              5.14160156,\n              20.73556591\n            ],\n            [\n              5.11962891,\n              20.73556591\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.75611387\n            ],\n            [\n              5.11962891,\n              20.76638681\n            ],\n            [\n              5.13061523,\n              20.76638681\n            ],\n            [\n              5.13061523,\n              20.75611387\n            ],\n            [\n              5.11962891,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.76638681\n            ],\n            [\n              5.11962891,\n              20.77665905\n            ],\n            [\n              5.13061523,\n              20.77665905\n            ],\n            [\n              5.13061523,\n              20.76638681\n            ],\n            [\n              5.11962891,\n              20.76638681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.13061523,\n              20.45789616\n            ],\n            [\n              5.13061523,\n              20.46818922\n            ],\n            [\n              5.14160156,\n              20.46818922\n            ],\n            [\n              5.14160156,\n              20.45789616\n            ],\n            [\n              5.13061523,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.13061523,\n              20.75611387\n            ],\n            [\n              5.13061523,\n              20.76638681\n            ],\n            [\n              5.14160156,\n              20.76638681\n            ],\n            [\n              5.14160156,\n              20.75611387\n            ],\n            [\n              5.13061523,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.45789616\n            ],\n            [\n              5.14160156,\n              20.46818922\n            ],\n            [\n              5.15258789,\n              20.46818922\n            ],\n            [\n              5.15258789,\n              20.45789616\n            ],\n            [\n              5.14160156,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.46818922\n            ],\n            [\n              5.14160156,\n              20.50935459\n            ],\n            [\n              5.18554688,\n              20.50935459\n            ],\n            [\n              5.18554688,\n              20.46818922\n            ],\n            [\n              5.14160156,\n              20.46818922\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.50935459\n            ],\n            [\n              5.14160156,\n              20.55050889\n            ],\n            [\n              5.18554688,\n              20.55050889\n            ],\n            [\n              5.18554688,\n              20.50935459\n            ],\n            [\n              5.14160156,\n              20.50935459\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.55050889\n            ],\n            [\n              5.14160156,\n              20.59165212\n            ],\n            [\n              5.18554688,\n              20.59165212\n            ],\n            [\n              5.18554688,\n              20.55050889\n            ],\n            [\n              5.14160156,\n              20.55050889\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.59165212\n            ],\n            [\n              5.14160156,\n              20.63278425\n            ],\n            [\n              5.18554688,\n              20.63278425\n            ],\n            [\n              5.18554688,\n              20.59165212\n            ],\n            [\n              5.14160156,\n              20.59165212\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.63278425\n            ],\n            [\n              5.14160156,\n              20.67390526\n            ],\n            [\n              5.18554688,\n              20.67390526\n            ],\n            [\n              5.18554688,\n              20.63278425\n            ],\n            [\n              5.14160156,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.67390526\n            ],\n            [\n              5.14160156,\n              20.71501515\n            ],\n            [\n              5.18554688,\n              20.71501515\n            ],\n            [\n              5.18554688,\n              20.67390526\n            ],\n            [\n              5.14160156,\n              20.67390526\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.71501515\n            ],\n            [\n              5.14160156,\n              20.75611387\n            ],\n            [\n              5.18554688,\n              20.75611387\n            ],\n            [\n              5.18554688,\n              20.71501515\n            ],\n            [\n              5.14160156,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.14160156,\n              20.75611387\n            ],\n            [\n              5.14160156,\n              20.76638681\n            ],\n            [\n              5.15258789,\n              20.76638681\n            ],\n            [\n              5.15258789,\n              20.75611387\n            ],\n            [\n              5.14160156,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.15258789,\n              20.45789616\n            ],\n            [\n              5.15258789,\n              20.46818922\n            ],\n            [\n              5.16357422,\n              20.46818922\n            ],\n            [\n              5.16357422,\n              20.45789616\n            ],\n            [\n              5.15258789,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.15258789,\n              20.75611387\n            ],\n            [\n              5.15258789,\n              20.76638681\n            ],\n            [\n              5.16357422,\n              20.76638681\n            ],\n            [\n              5.16357422,\n              20.75611387\n            ],\n            [\n              5.15258789,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.16357422,\n              20.45789616\n            ],\n            [\n              5.16357422,\n              20.46818922\n            ],\n            [\n              5.17456055,\n              20.46818922\n            ],\n            [\n              5.17456055,\n              20.45789616\n            ],\n            [\n              5.16357422,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.16357422,\n              20.75611387\n            ],\n            [\n              5.16357422,\n              20.76638681\n            ],\n            [\n              5.17456055,\n              20.76638681\n            ],\n            [\n              5.17456055,\n              20.75611387\n            ],\n            [\n              5.16357422,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.17456055,\n              20.45789616\n            ],\n            [\n              5.17456055,\n              20.46818922\n            ],\n            [\n              5.18554688,\n              20.46818922\n            ],\n            [\n              5.18554688,\n              20.45789616\n            ],\n            [\n              5.17456055,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.17456055,\n              20.75611387\n            ],\n            [\n              5.17456055,\n              20.76638681\n            ],\n            [\n              5.18554688,\n              20.76638681\n            ],\n            [\n              5.18554688,\n              20.75611387\n            ],\n            [\n              5.17456055,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.18554688,\n              20.45789616\n            ],\n            [\n              5.18554688,\n              20.46818922\n            ],\n            [\n              5.1965332,\n              20.46818922\n            ],\n            [\n              5.1965332,\n              20.45789616\n            ],\n            [\n              5.18554688,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.18554688,\n              20.46818922\n            ],\n            [\n              5.18554688,\n              20.55050889\n            ],\n            [\n              5.2734375,\n              20.55050889\n            ],\n            [\n              5.2734375,\n              20.46818922\n            ],\n            [\n              5.18554688,\n              20.46818922\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.18554688,\n              20.55050889\n            ],\n            [\n              5.18554688,\n              20.63278425\n            ],\n            [\n              5.2734375,\n              20.63278425\n            ],\n            [\n              5.2734375,\n              20.55050889\n            ],\n            [\n              5.18554688,\n              20.55050889\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.18554688,\n              20.63278425\n            ],\n            [\n              5.18554688,\n              20.71501515\n            ],\n            [\n              5.2734375,\n              20.71501515\n            ],\n            [\n              5.2734375,\n              20.63278425\n            ],\n            [\n              5.18554688,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.18554688,\n              20.71501515\n            ],\n            [\n              5.18554688,\n              20.75611387\n            ],\n            [\n              5.22949219,\n              20.75611387\n            ],\n            [\n              5.22949219,\n              20.71501515\n            ],\n            [\n              5.18554688,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.18554688,\n              20.75611387\n            ],\n            [\n              5.18554688,\n              20.76638681\n            ],\n            [\n              5.1965332,\n              20.76638681\n            ],\n            [\n              5.1965332,\n              20.75611387\n            ],\n            [\n              5.18554688,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.1965332,\n              20.45789616\n            ],\n            [\n              5.1965332,\n              20.46818922\n            ],\n            [\n              5.20751953,\n              20.46818922\n            ],\n            [\n              5.20751953,\n              20.45789616\n            ],\n            [\n              5.1965332,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.1965332,\n              20.75611387\n            ],\n            [\n              5.1965332,\n              20.76638681\n            ],\n            [\n              5.20751953,\n              20.76638681\n            ],\n            [\n              5.20751953,\n              20.75611387\n            ],\n            [\n              5.1965332,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.20751953,\n              20.45789616\n            ],\n            [\n              5.20751953,\n              20.46818922\n            ],\n            [\n              5.21850586,\n              20.46818922\n            ],\n            [\n              5.21850586,\n              20.45789616\n            ],\n            [\n              5.20751953,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.20751953,\n              20.75611387\n            ],\n            [\n              5.20751953,\n              20.76638681\n            ],\n            [\n              5.21850586,\n              20.76638681\n            ],\n            [\n              5.21850586,\n              20.75611387\n            ],\n            [\n              5.20751953,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.21850586,\n              20.45789616\n            ],\n            [\n              5.21850586,\n              20.46818922\n            ],\n            [\n              5.22949219,\n              20.46818922\n            ],\n            [\n              5.22949219,\n              20.45789616\n            ],\n            [\n              5.21850586,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.21850586,\n              20.75611387\n            ],\n            [\n              5.21850586,\n              20.76638681\n            ],\n            [\n              5.22949219,\n              20.76638681\n            ],\n            [\n              5.22949219,\n              20.75611387\n            ],\n            [\n              5.21850586,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.22949219,\n              20.45789616\n            ],\n            [\n              5.22949219,\n              20.46818922\n            ],\n            [\n              5.24047852,\n              20.46818922\n            ],\n            [\n              5.24047852,\n              20.45789616\n            ],\n            [\n              5.22949219,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.22949219,\n              20.71501515\n            ],\n            [\n              5.22949219,\n              20.75611387\n            ],\n            [\n              5.2734375,\n              20.75611387\n            ],\n            [\n              5.2734375,\n              20.71501515\n            ],\n            [\n              5.22949219,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.22949219,\n              20.75611387\n            ],\n            [\n              5.22949219,\n              20.76638681\n            ],\n            [\n              5.24047852,\n              20.76638681\n            ],\n            [\n              5.24047852,\n              20.75611387\n            ],\n            [\n              5.22949219,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.24047852,\n              20.45789616\n            ],\n            [\n              5.24047852,\n              20.46818922\n            ],\n            [\n              5.25146484,\n              20.46818922\n            ],\n            [\n              5.25146484,\n              20.45789616\n            ],\n            [\n              5.24047852,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.24047852,\n              20.75611387\n            ],\n            [\n              5.24047852,\n              20.76638681\n            ],\n            [\n              5.25146484,\n              20.76638681\n            ],\n            [\n              5.25146484,\n              20.75611387\n            ],\n            [\n              5.24047852,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.25146484,\n              20.45789616\n            ],\n            [\n              5.25146484,\n              20.46818922\n            ],\n            [\n              5.26245117,\n              20.46818922\n            ],\n            [\n              5.26245117,\n              20.45789616\n            ],\n            [\n              5.25146484,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.25146484,\n              20.75611387\n            ],\n            [\n              5.25146484,\n              20.76638681\n            ],\n            [\n              5.26245117,\n              20.76638681\n            ],\n            [\n              5.26245117,\n              20.75611387\n            ],\n            [\n              5.25146484,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.26245117,\n              20.45789616\n            ],\n            [\n              5.26245117,\n              20.46818922\n            ],\n            [\n              5.2734375,\n              20.46818922\n            ],\n            [\n              5.2734375,\n              20.45789616\n            ],\n            [\n              5.26245117,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.26245117,\n              20.75611387\n            ],\n            [\n              5.26245117,\n              20.76638681\n            ],\n            [\n              5.2734375,\n              20.76638681\n            ],\n            [\n              5.2734375,\n              20.75611387\n            ],\n            [\n              5.26245117,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.2734375,\n              20.45789616\n            ],\n            [\n              5.2734375,\n              20.46818922\n            ],\n            [\n              5.28442383,\n              20.46818922\n            ],\n            [\n              5.28442383,\n              20.45789616\n            ],\n            [\n              5.2734375,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.2734375,\n              20.46818922\n            ],\n            [\n              5.2734375,\n              20.63278425\n            ],\n            [\n              5.44921875,\n              20.63278425\n            ],\n            [\n              5.44921875,\n              20.46818922\n            ],\n            [\n              5.2734375,\n              20.46818922\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.2734375,\n              20.63278425\n            ],\n            [\n              5.2734375,\n              20.71501515\n            ],\n            [\n              5.36132813,\n              20.71501515\n            ],\n            [\n              5.36132813,\n              20.63278425\n            ],\n            [\n              5.2734375,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.2734375,\n              20.71501515\n            ],\n            [\n              5.2734375,\n              20.75611387\n            ],\n            [\n              5.31738281,\n              20.75611387\n            ],\n            [\n              5.31738281,\n              20.71501515\n            ],\n            [\n              5.2734375,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.2734375,\n              20.75611387\n            ],\n            [\n              5.2734375,\n              20.76638681\n            ],\n            [\n              5.28442383,\n              20.76638681\n            ],\n            [\n              5.28442383,\n              20.75611387\n            ],\n            [\n              5.2734375,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.28442383,\n              20.45789616\n            ],\n            [\n              5.28442383,\n              20.46818922\n            ],\n            [\n              5.29541016,\n              20.46818922\n            ],\n            [\n              5.29541016,\n              20.45789616\n            ],\n            [\n              5.28442383,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.28442383,\n              20.75611387\n            ],\n            [\n              5.28442383,\n              20.76638681\n            ],\n            [\n              5.29541016,\n              20.76638681\n            ],\n            [\n              5.29541016,\n              20.75611387\n            ],\n            [\n              5.28442383,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.29541016,\n              20.45789616\n            ],\n            [\n              5.29541016,\n              20.46818922\n            ],\n            [\n              5.30639648,\n              20.46818922\n            ],\n            [\n              5.30639648,\n              20.45789616\n            ],\n            [\n              5.29541016,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.29541016,\n              20.75611387\n            ],\n            [\n              5.29541016,\n              20.76638681\n            ],\n            [\n              5.30639648,\n              20.76638681\n            ],\n            [\n              5.30639648,\n              20.75611387\n            ],\n            [\n              5.29541016,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.30639648,\n              20.45789616\n            ],\n            [\n              5.30639648,\n              20.46818922\n            ],\n            [\n              5.31738281,\n              20.46818922\n            ],\n            [\n              5.31738281,\n              20.45789616\n            ],\n            [\n              5.30639648,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.30639648,\n              20.75611387\n            ],\n            [\n              5.30639648,\n              20.76638681\n            ],\n            [\n              5.31738281,\n              20.76638681\n            ],\n            [\n              5.31738281,\n              20.75611387\n            ],\n            [\n              5.30639648,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.31738281,\n              20.45789616\n            ],\n            [\n              5.31738281,\n              20.46818922\n            ],\n            [\n              5.32836914,\n              20.46818922\n            ],\n            [\n              5.32836914,\n              20.45789616\n            ],\n            [\n              5.31738281,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.31738281,\n              20.71501515\n            ],\n            [\n              5.31738281,\n              20.75611387\n            ],\n            [\n              5.36132813,\n              20.75611387\n            ],\n            [\n              5.36132813,\n              20.71501515\n            ],\n            [\n              5.31738281,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.31738281,\n              20.75611387\n            ],\n            [\n              5.31738281,\n              20.76638681\n            ],\n            [\n              5.32836914,\n              20.76638681\n            ],\n            [\n              5.32836914,\n              20.75611387\n            ],\n            [\n              5.31738281,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.32836914,\n              20.45789616\n            ],\n            [\n              5.32836914,\n              20.46818922\n            ],\n            [\n              5.33935547,\n              20.46818922\n            ],\n            [\n              5.33935547,\n              20.45789616\n            ],\n            [\n              5.32836914,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.32836914,\n              20.75611387\n            ],\n            [\n              5.32836914,\n              20.76638681\n            ],\n            [\n              5.33935547,\n              20.76638681\n            ],\n            [\n              5.33935547,\n              20.75611387\n            ],\n            [\n              5.32836914,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.33935547,\n              20.45789616\n            ],\n            [\n              5.33935547,\n              20.46818922\n            ],\n            [\n              5.3503418,\n              20.46818922\n            ],\n            [\n              5.3503418,\n              20.45789616\n            ],\n            [\n              5.33935547,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.33935547,\n              20.75611387\n            ],\n            [\n              5.33935547,\n              20.76638681\n            ],\n            [\n              5.3503418,\n              20.76638681\n            ],\n            [\n              5.3503418,\n              20.75611387\n            ],\n            [\n              5.33935547,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.3503418,\n              20.45789616\n            ],\n            [\n              5.3503418,\n              20.46818922\n            ],\n            [\n              5.36132813,\n              20.46818922\n            ],\n            [\n              5.36132813,\n              20.45789616\n            ],\n            [\n              5.3503418,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.3503418,\n              20.75611387\n            ],\n            [\n              5.3503418,\n              20.76638681\n            ],\n            [\n              5.36132813,\n              20.76638681\n            ],\n            [\n              5.36132813,\n              20.75611387\n            ],\n            [\n              5.3503418,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.36132813,\n              20.45789616\n            ],\n            [\n              5.36132813,\n              20.46818922\n            ],\n            [\n              5.37231445,\n              20.46818922\n            ],\n            [\n              5.37231445,\n              20.45789616\n            ],\n            [\n              5.36132813,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.36132813,\n              20.63278425\n            ],\n            [\n              5.36132813,\n              20.71501515\n            ],\n            [\n              5.44921875,\n              20.71501515\n            ],\n            [\n              5.44921875,\n              20.63278425\n            ],\n            [\n              5.36132813,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.36132813,\n              20.71501515\n            ],\n            [\n              5.36132813,\n              20.75611387\n            ],\n            [\n              5.40527344,\n              20.75611387\n            ],\n            [\n              5.40527344,\n              20.71501515\n            ],\n            [\n              5.36132813,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.36132813,\n              20.75611387\n            ],\n            [\n              5.36132813,\n              20.76638681\n            ],\n            [\n              5.37231445,\n              20.76638681\n            ],\n            [\n              5.37231445,\n              20.75611387\n            ],\n            [\n              5.36132813,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.37231445,\n              20.45789616\n            ],\n            [\n              5.37231445,\n              20.46818922\n            ],\n            [\n              5.38330078,\n              20.46818922\n            ],\n            [\n              5.38330078,\n              20.45789616\n            ],\n            [\n              5.37231445,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.37231445,\n              20.75611387\n            ],\n            [\n              5.37231445,\n              20.76638681\n            ],\n            [\n              5.38330078,\n              20.76638681\n            ],\n            [\n              5.38330078,\n              20.75611387\n            ],\n            [\n              5.37231445,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.38330078,\n              20.45789616\n            ],\n            [\n              5.38330078,\n              20.46818922\n            ],\n            [\n              5.39428711,\n              20.46818922\n            ],\n            [\n              5.39428711,\n              20.45789616\n            ],\n            [\n              5.38330078,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.38330078,\n              20.75611387\n            ],\n            [\n              5.38330078,\n              20.76638681\n            ],\n            [\n              5.39428711,\n              20.76638681\n            ],\n            [\n              5.39428711,\n              20.75611387\n            ],\n            [\n              5.38330078,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.39428711,\n              20.45789616\n            ],\n            [\n              5.39428711,\n              20.46818922\n            ],\n            [\n              5.40527344,\n              20.46818922\n            ],\n            [\n              5.40527344,\n              20.45789616\n            ],\n            [\n              5.39428711,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.39428711,\n              20.75611387\n            ],\n            [\n              5.39428711,\n              20.76638681\n            ],\n            [\n              5.40527344,\n              20.76638681\n            ],\n            [\n              5.40527344,\n              20.75611387\n            ],\n            [\n              5.39428711,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.40527344,\n              20.45789616\n            ],\n            [\n              5.40527344,\n              20.46818922\n            ],\n            [\n              5.41625977,\n              20.46818922\n            ],\n            [\n              5.41625977,\n              20.45789616\n            ],\n            [\n              5.40527344,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.40527344,\n              20.71501515\n            ],\n            [\n              5.40527344,\n              20.75611387\n            ],\n            [\n              5.44921875,\n              20.75611387\n            ],\n            [\n              5.44921875,\n              20.71501515\n            ],\n            [\n              5.40527344,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.40527344,\n              20.75611387\n            ],\n            [\n              5.40527344,\n              20.76638681\n            ],\n            [\n              5.41625977,\n              20.76638681\n            ],\n            [\n              5.41625977,\n              20.75611387\n            ],\n            [\n              5.40527344,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.41625977,\n              20.45789616\n            ],\n            [\n              5.41625977,\n              20.46818922\n            ],\n            [\n              5.42724609,\n              20.46818922\n            ],\n            [\n              5.42724609,\n              20.45789616\n            ],\n            [\n              5.41625977,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.41625977,\n              20.75611387\n            ],\n            [\n              5.41625977,\n              20.76638681\n            ],\n            [\n              5.42724609,\n              20.76638681\n            ],\n            [\n              5.42724609,\n              20.75611387\n            ],\n            [\n              5.41625977,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.42724609,\n              20.45789616\n            ],\n            [\n              5.42724609,\n              20.46818922\n            ],\n            [\n              5.43823242,\n              20.46818922\n            ],\n            [\n              5.43823242,\n              20.45789616\n            ],\n            [\n              5.42724609,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.42724609,\n              20.75611387\n            ],\n            [\n              5.42724609,\n              20.76638681\n            ],\n            [\n              5.43823242,\n              20.76638681\n            ],\n            [\n              5.43823242,\n              20.75611387\n            ],\n            [\n              5.42724609,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.43823242,\n              20.45789616\n            ],\n            [\n              5.43823242,\n              20.46818922\n            ],\n            [\n              5.44921875,\n              20.46818922\n            ],\n            [\n              5.44921875,\n              20.45789616\n            ],\n            [\n              5.43823242,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.43823242,\n              20.75611387\n            ],\n            [\n              5.43823242,\n              20.76638681\n            ],\n            [\n              5.44921875,\n              20.76638681\n            ],\n            [\n              5.44921875,\n              20.75611387\n            ],\n            [\n              5.43823242,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.45789616\n            ],\n            [\n              5.44921875,\n              20.46818922\n            ],\n            [\n              5.46020508,\n              20.46818922\n            ],\n            [\n              5.46020508,\n              20.45789616\n            ],\n            [\n              5.44921875,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.46818922\n            ],\n            [\n              5.44921875,\n              20.50935459\n            ],\n            [\n              5.49316406,\n              20.50935459\n            ],\n            [\n              5.49316406,\n              20.46818922\n            ],\n            [\n              5.44921875,\n              20.46818922\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.50935459\n            ],\n            [\n              5.44921875,\n              20.55050889\n            ],\n            [\n              5.49316406,\n              20.55050889\n            ],\n            [\n              5.49316406,\n              20.50935459\n            ],\n            [\n              5.44921875,\n              20.50935459\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.55050889\n            ],\n            [\n              5.44921875,\n              20.59165212\n            ],\n            [\n              5.49316406,\n              20.59165212\n            ],\n            [\n              5.49316406,\n              20.55050889\n            ],\n            [\n              5.44921875,\n              20.55050889\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.59165212\n            ],\n            [\n              5.44921875,\n              20.63278425\n            ],\n            [\n              5.49316406,\n              20.63278425\n            ],\n            [\n              5.49316406,\n              20.59165212\n            ],\n            [\n              5.44921875,\n              20.59165212\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.63278425\n            ],\n            [\n              5.44921875,\n              20.67390526\n            ],\n            [\n              5.49316406,\n              20.67390526\n            ],\n            [\n              5.49316406,\n              20.63278425\n            ],\n            [\n              5.44921875,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.67390526\n            ],\n            [\n              5.44921875,\n              20.71501515\n            ],\n            [\n              5.49316406,\n              20.71501515\n            ],\n            [\n              5.49316406,\n              20.67390526\n            ],\n            [\n              5.44921875,\n              20.67390526\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.71501515\n            ],\n            [\n              5.44921875,\n              20.75611387\n            ],\n            [\n              5.49316406,\n              20.75611387\n            ],\n            [\n              5.49316406,\n              20.71501515\n            ],\n            [\n              5.44921875,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.44921875,\n              20.75611387\n            ],\n            [\n              5.44921875,\n              20.76638681\n            ],\n            [\n              5.46020508,\n              20.76638681\n            ],\n            [\n              5.46020508,\n              20.75611387\n            ],\n            [\n              5.44921875,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.46020508,\n              20.45789616\n            ],\n            [\n              5.46020508,\n              20.46818922\n            ],\n            [\n              5.47119141,\n              20.46818922\n            ],\n            [\n              5.47119141,\n              20.45789616\n            ],\n            [\n              5.46020508,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.46020508,\n              20.75611387\n            ],\n            [\n              5.46020508,\n              20.76638681\n            ],\n            [\n              5.47119141,\n              20.76638681\n            ],\n            [\n              5.47119141,\n              20.75611387\n            ],\n            [\n              5.46020508,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.47119141,\n              20.45789616\n            ],\n            [\n              5.47119141,\n              20.46818922\n            ],\n            [\n              5.48217773,\n              20.46818922\n            ],\n            [\n              5.48217773,\n              20.45789616\n            ],\n            [\n              5.47119141,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.47119141,\n              20.75611387\n            ],\n            [\n              5.47119141,\n              20.76638681\n            ],\n            [\n              5.48217773,\n              20.76638681\n            ],\n            [\n              5.48217773,\n              20.75611387\n            ],\n            [\n              5.47119141,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.48217773,\n              20.45789616\n            ],\n            [\n              5.48217773,\n              20.46818922\n            ],\n            [\n              5.49316406,\n              20.46818922\n            ],\n            [\n              5.49316406,\n              20.45789616\n            ],\n            [\n              5.48217773,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.48217773,\n              20.75611387\n            ],\n            [\n              5.48217773,\n              20.76638681\n            ],\n            [\n              5.49316406,\n              20.76638681\n            ],\n            [\n              5.49316406,\n              20.75611387\n            ],\n            [\n              5.48217773,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.45789616\n            ],\n            [\n              5.49316406,\n              20.46818922\n            ],\n            [\n              5.50415039,\n              20.46818922\n            ],\n            [\n              5.50415039,\n              20.45789616\n            ],\n            [\n              5.49316406,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.46818922\n            ],\n            [\n              5.49316406,\n              20.48877329\n            ],\n            [\n              5.51513672,\n              20.48877329\n            ],\n            [\n              5.51513672,\n              20.46818922\n            ],\n            [\n              5.49316406,\n              20.46818922\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.48877329\n            ],\n            [\n              5.49316406,\n              20.50935459\n            ],\n            [\n              5.51513672,\n              20.50935459\n            ],\n            [\n              5.51513672,\n              20.48877329\n            ],\n            [\n              5.49316406,\n              20.48877329\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.50935459\n            ],\n            [\n              5.49316406,\n              20.52993313\n            ],\n            [\n              5.51513672,\n              20.52993313\n            ],\n            [\n              5.51513672,\n              20.50935459\n            ],\n            [\n              5.49316406,\n              20.50935459\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.52993313\n            ],\n            [\n              5.49316406,\n              20.55050889\n            ],\n            [\n              5.51513672,\n              20.55050889\n            ],\n            [\n              5.51513672,\n              20.52993313\n            ],\n            [\n              5.49316406,\n              20.52993313\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.55050889\n            ],\n            [\n              5.49316406,\n              20.57108189\n            ],\n            [\n              5.51513672,\n              20.57108189\n            ],\n            [\n              5.51513672,\n              20.55050889\n            ],\n            [\n              5.49316406,\n              20.55050889\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.57108189\n            ],\n            [\n              5.49316406,\n              20.59165212\n            ],\n            [\n              5.51513672,\n              20.59165212\n            ],\n            [\n              5.51513672,\n              20.57108189\n            ],\n            [\n              5.49316406,\n              20.57108189\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.59165212\n            ],\n            [\n              5.49316406,\n              20.61221957\n            ],\n            [\n              5.51513672,\n              20.61221957\n            ],\n            [\n              5.51513672,\n              20.59165212\n            ],\n            [\n              5.49316406,\n              20.59165212\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.61221957\n            ],\n            [\n              5.49316406,\n              20.63278425\n            ],\n            [\n              5.51513672,\n              20.63278425\n            ],\n            [\n              5.51513672,\n              20.61221957\n            ],\n            [\n              5.49316406,\n              20.61221957\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.63278425\n            ],\n            [\n              5.49316406,\n              20.65334615\n            ],\n            [\n              5.51513672,\n              20.65334615\n            ],\n            [\n              5.51513672,\n              20.63278425\n            ],\n            [\n              5.49316406,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.65334615\n            ],\n            [\n              5.49316406,\n              20.67390526\n            ],\n            [\n              5.51513672,\n              20.67390526\n            ],\n            [\n              5.51513672,\n              20.65334615\n            ],\n            [\n              5.49316406,\n              20.65334615\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.67390526\n            ],\n            [\n              5.49316406,\n              20.6944616\n            ],\n            [\n              5.51513672,\n              20.6944616\n            ],\n            [\n              5.51513672,\n              20.67390526\n            ],\n            [\n              5.49316406,\n              20.67390526\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.6944616\n            ],\n            [\n              5.49316406,\n              20.71501515\n            ],\n            [\n              5.51513672,\n              20.71501515\n            ],\n            [\n              5.51513672,\n              20.6944616\n            ],\n            [\n              5.49316406,\n              20.6944616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.71501515\n            ],\n            [\n              5.49316406,\n              20.73556591\n            ],\n            [\n              5.51513672,\n              20.73556591\n            ],\n            [\n              5.51513672,\n              20.71501515\n            ],\n            [\n              5.49316406,\n              20.71501515\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.73556591\n            ],\n            [\n              5.49316406,\n              20.75611387\n            ],\n            [\n              5.51513672,\n              20.75611387\n            ],\n            [\n              5.51513672,\n              20.73556591\n            ],\n            [\n              5.49316406,\n              20.73556591\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.49316406,\n              20.75611387\n            ],\n            [\n              5.49316406,\n              20.76638681\n            ],\n            [\n              5.50415039,\n              20.76638681\n            ],\n            [\n              5.50415039,\n              20.75611387\n            ],\n            [\n              5.49316406,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.50415039,\n              20.45789616\n            ],\n            [\n              5.50415039,\n              20.46818922\n            ],\n            [\n              5.51513672,\n              20.46818922\n            ],\n            [\n              5.51513672,\n              20.45789616\n            ],\n            [\n              5.50415039,\n              20.45789616\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.50415039,\n              20.75611387\n            ],\n            [\n              5.50415039,\n              20.76638681\n            ],\n            [\n              5.51513672,\n              20.76638681\n            ],\n            [\n              5.51513672,\n              20.75611387\n            ],\n            [\n              5.50415039,\n              20.75611387\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.11962891,\n              20.46818922\n            ],\n            [\n              5.11962891,\n              20.76638681\n            ],\n            [\n              5.50415039,\n              20.76638681\n            ],\n            [\n              5.50415039,\n              20.46818922\n            ],\n            [\n              5.11962891,\n              20.46818922\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/pyramid.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        24.98291015625,\n        21.391704731036587\n      ],\n      [\n        21.15966796875,\n        21.4121622297254\n      ],\n      [\n        21.15966796875,\n        17.602139123350852\n      ],\n      [\n        17.7978515625,\n        17.602139123350852\n      ],\n      [\n        17.7978515625,\n        15.15697371337768\n      ],\n      [\n        15.314941406249998,\n        15.15697371337768\n      ],\n      [\n        15.314941406249998,\n        12.597454504832017\n      ],\n      [\n        24.98291015625,\n        12.597454504832017\n      ],\n      [\n        24.98291015625,\n        21.391704731036587\n      ]\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/pyramid_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              12.55456353\n            ],\n            [\n              15.1171875,\n              12.89748918\n            ],\n            [\n              15.46875,\n              12.89748918\n            ],\n            [\n              15.46875,\n              12.55456353\n            ],\n            [\n              15.1171875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              12.89748918\n            ],\n            [\n              15.1171875,\n              13.2399455\n            ],\n            [\n              15.46875,\n              13.2399455\n            ],\n            [\n              15.46875,\n              12.89748918\n            ],\n            [\n              15.1171875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              13.2399455\n            ],\n            [\n              15.1171875,\n              13.5819209\n            ],\n            [\n              15.46875,\n              13.5819209\n            ],\n            [\n              15.46875,\n              13.2399455\n            ],\n            [\n              15.1171875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              13.5819209\n            ],\n            [\n              15.1171875,\n              13.9234039\n            ],\n            [\n              15.46875,\n              13.9234039\n            ],\n            [\n              15.46875,\n              13.5819209\n            ],\n            [\n              15.1171875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              13.9234039\n            ],\n            [\n              15.1171875,\n              14.26438309\n            ],\n            [\n              15.46875,\n              14.26438309\n            ],\n            [\n              15.46875,\n              13.9234039\n            ],\n            [\n              15.1171875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              14.26438309\n            ],\n            [\n              15.1171875,\n              14.60484716\n            ],\n            [\n              15.46875,\n              14.60484716\n            ],\n            [\n              15.46875,\n              14.26438309\n            ],\n            [\n              15.1171875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              14.60484716\n            ],\n            [\n              15.1171875,\n              14.94478488\n            ],\n            [\n              15.46875,\n              14.94478488\n            ],\n            [\n              15.46875,\n              14.60484716\n            ],\n            [\n              15.1171875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              14.94478488\n            ],\n            [\n              15.1171875,\n              15.28418511\n            ],\n            [\n              15.46875,\n              15.28418511\n            ],\n            [\n              15.46875,\n              14.94478488\n            ],\n            [\n              15.1171875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              12.55456353\n            ],\n            [\n              15.46875,\n              12.89748918\n            ],\n            [\n              15.8203125,\n              12.89748918\n            ],\n            [\n              15.8203125,\n              12.55456353\n            ],\n            [\n              15.46875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              12.89748918\n            ],\n            [\n              15.46875,\n              13.2399455\n            ],\n            [\n              15.8203125,\n              13.2399455\n            ],\n            [\n              15.8203125,\n              12.89748918\n            ],\n            [\n              15.46875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              13.2399455\n            ],\n            [\n              15.46875,\n              13.5819209\n            ],\n            [\n              15.8203125,\n              13.5819209\n            ],\n            [\n              15.8203125,\n              13.2399455\n            ],\n            [\n              15.46875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              13.5819209\n            ],\n            [\n              15.46875,\n              13.9234039\n            ],\n            [\n              15.8203125,\n              13.9234039\n            ],\n            [\n              15.8203125,\n              13.5819209\n            ],\n            [\n              15.46875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              13.9234039\n            ],\n            [\n              15.46875,\n              14.26438309\n            ],\n            [\n              15.8203125,\n              14.26438309\n            ],\n            [\n              15.8203125,\n              13.9234039\n            ],\n            [\n              15.46875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              14.26438309\n            ],\n            [\n              15.46875,\n              14.60484716\n            ],\n            [\n              15.8203125,\n              14.60484716\n            ],\n            [\n              15.8203125,\n              14.26438309\n            ],\n            [\n              15.46875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              14.60484716\n            ],\n            [\n              15.46875,\n              14.94478488\n            ],\n            [\n              15.8203125,\n              14.94478488\n            ],\n            [\n              15.8203125,\n              14.60484716\n            ],\n            [\n              15.46875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              14.94478488\n            ],\n            [\n              15.46875,\n              15.28418511\n            ],\n            [\n              15.8203125,\n              15.28418511\n            ],\n            [\n              15.8203125,\n              14.94478488\n            ],\n            [\n              15.46875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              12.55456353\n            ],\n            [\n              15.8203125,\n              12.89748918\n            ],\n            [\n              16.171875,\n              12.89748918\n            ],\n            [\n              16.171875,\n              12.55456353\n            ],\n            [\n              15.8203125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              12.89748918\n            ],\n            [\n              15.8203125,\n              13.2399455\n            ],\n            [\n              16.171875,\n              13.2399455\n            ],\n            [\n              16.171875,\n              12.89748918\n            ],\n            [\n              15.8203125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              13.2399455\n            ],\n            [\n              15.8203125,\n              13.5819209\n            ],\n            [\n              16.171875,\n              13.5819209\n            ],\n            [\n              16.171875,\n              13.2399455\n            ],\n            [\n              15.8203125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              13.5819209\n            ],\n            [\n              15.8203125,\n              13.9234039\n            ],\n            [\n              16.171875,\n              13.9234039\n            ],\n            [\n              16.171875,\n              13.5819209\n            ],\n            [\n              15.8203125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              13.9234039\n            ],\n            [\n              15.8203125,\n              14.26438309\n            ],\n            [\n              16.171875,\n              14.26438309\n            ],\n            [\n              16.171875,\n              13.9234039\n            ],\n            [\n              15.8203125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              14.26438309\n            ],\n            [\n              15.8203125,\n              14.60484716\n            ],\n            [\n              16.171875,\n              14.60484716\n            ],\n            [\n              16.171875,\n              14.26438309\n            ],\n            [\n              15.8203125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              14.60484716\n            ],\n            [\n              15.8203125,\n              14.94478488\n            ],\n            [\n              16.171875,\n              14.94478488\n            ],\n            [\n              16.171875,\n              14.60484716\n            ],\n            [\n              15.8203125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              14.94478488\n            ],\n            [\n              15.8203125,\n              15.28418511\n            ],\n            [\n              16.171875,\n              15.28418511\n            ],\n            [\n              16.171875,\n              14.94478488\n            ],\n            [\n              15.8203125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              12.55456353\n            ],\n            [\n              16.171875,\n              12.89748918\n            ],\n            [\n              16.5234375,\n              12.89748918\n            ],\n            [\n              16.5234375,\n              12.55456353\n            ],\n            [\n              16.171875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              12.89748918\n            ],\n            [\n              16.171875,\n              13.2399455\n            ],\n            [\n              16.5234375,\n              13.2399455\n            ],\n            [\n              16.5234375,\n              12.89748918\n            ],\n            [\n              16.171875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              13.2399455\n            ],\n            [\n              16.171875,\n              13.5819209\n            ],\n            [\n              16.5234375,\n              13.5819209\n            ],\n            [\n              16.5234375,\n              13.2399455\n            ],\n            [\n              16.171875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              13.5819209\n            ],\n            [\n              16.171875,\n              13.9234039\n            ],\n            [\n              16.5234375,\n              13.9234039\n            ],\n            [\n              16.5234375,\n              13.5819209\n            ],\n            [\n              16.171875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              13.9234039\n            ],\n            [\n              16.171875,\n              14.26438309\n            ],\n            [\n              16.5234375,\n              14.26438309\n            ],\n            [\n              16.5234375,\n              13.9234039\n            ],\n            [\n              16.171875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              14.26438309\n            ],\n            [\n              16.171875,\n              14.60484716\n            ],\n            [\n              16.5234375,\n              14.60484716\n            ],\n            [\n              16.5234375,\n              14.26438309\n            ],\n            [\n              16.171875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              14.60484716\n            ],\n            [\n              16.171875,\n              14.94478488\n            ],\n            [\n              16.5234375,\n              14.94478488\n            ],\n            [\n              16.5234375,\n              14.60484716\n            ],\n            [\n              16.171875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              14.94478488\n            ],\n            [\n              16.171875,\n              15.28418511\n            ],\n            [\n              16.5234375,\n              15.28418511\n            ],\n            [\n              16.5234375,\n              14.94478488\n            ],\n            [\n              16.171875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              12.55456353\n            ],\n            [\n              16.5234375,\n              12.89748918\n            ],\n            [\n              16.875,\n              12.89748918\n            ],\n            [\n              16.875,\n              12.55456353\n            ],\n            [\n              16.5234375,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              12.89748918\n            ],\n            [\n              16.5234375,\n              13.2399455\n            ],\n            [\n              16.875,\n              13.2399455\n            ],\n            [\n              16.875,\n              12.89748918\n            ],\n            [\n              16.5234375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              13.2399455\n            ],\n            [\n              16.5234375,\n              13.5819209\n            ],\n            [\n              16.875,\n              13.5819209\n            ],\n            [\n              16.875,\n              13.2399455\n            ],\n            [\n              16.5234375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              13.5819209\n            ],\n            [\n              16.5234375,\n              13.9234039\n            ],\n            [\n              16.875,\n              13.9234039\n            ],\n            [\n              16.875,\n              13.5819209\n            ],\n            [\n              16.5234375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              13.9234039\n            ],\n            [\n              16.5234375,\n              14.26438309\n            ],\n            [\n              16.875,\n              14.26438309\n            ],\n            [\n              16.875,\n              13.9234039\n            ],\n            [\n              16.5234375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              14.26438309\n            ],\n            [\n              16.5234375,\n              14.60484716\n            ],\n            [\n              16.875,\n              14.60484716\n            ],\n            [\n              16.875,\n              14.26438309\n            ],\n            [\n              16.5234375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              14.60484716\n            ],\n            [\n              16.5234375,\n              14.94478488\n            ],\n            [\n              16.875,\n              14.94478488\n            ],\n            [\n              16.875,\n              14.60484716\n            ],\n            [\n              16.5234375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              14.94478488\n            ],\n            [\n              16.5234375,\n              15.28418511\n            ],\n            [\n              16.875,\n              15.28418511\n            ],\n            [\n              16.875,\n              14.94478488\n            ],\n            [\n              16.5234375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              12.55456353\n            ],\n            [\n              16.875,\n              12.89748918\n            ],\n            [\n              17.2265625,\n              12.89748918\n            ],\n            [\n              17.2265625,\n              12.55456353\n            ],\n            [\n              16.875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              12.89748918\n            ],\n            [\n              16.875,\n              13.2399455\n            ],\n            [\n              17.2265625,\n              13.2399455\n            ],\n            [\n              17.2265625,\n              12.89748918\n            ],\n            [\n              16.875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              13.2399455\n            ],\n            [\n              16.875,\n              13.5819209\n            ],\n            [\n              17.2265625,\n              13.5819209\n            ],\n            [\n              17.2265625,\n              13.2399455\n            ],\n            [\n              16.875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              13.5819209\n            ],\n            [\n              16.875,\n              13.9234039\n            ],\n            [\n              17.2265625,\n              13.9234039\n            ],\n            [\n              17.2265625,\n              13.5819209\n            ],\n            [\n              16.875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              13.9234039\n            ],\n            [\n              16.875,\n              14.26438309\n            ],\n            [\n              17.2265625,\n              14.26438309\n            ],\n            [\n              17.2265625,\n              13.9234039\n            ],\n            [\n              16.875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              14.26438309\n            ],\n            [\n              16.875,\n              14.60484716\n            ],\n            [\n              17.2265625,\n              14.60484716\n            ],\n            [\n              17.2265625,\n              14.26438309\n            ],\n            [\n              16.875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              14.60484716\n            ],\n            [\n              16.875,\n              14.94478488\n            ],\n            [\n              17.2265625,\n              14.94478488\n            ],\n            [\n              17.2265625,\n              14.60484716\n            ],\n            [\n              16.875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              14.94478488\n            ],\n            [\n              16.875,\n              15.28418511\n            ],\n            [\n              17.2265625,\n              15.28418511\n            ],\n            [\n              17.2265625,\n              14.94478488\n            ],\n            [\n              16.875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              12.55456353\n            ],\n            [\n              17.2265625,\n              12.89748918\n            ],\n            [\n              17.578125,\n              12.89748918\n            ],\n            [\n              17.578125,\n              12.55456353\n            ],\n            [\n              17.2265625,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              12.89748918\n            ],\n            [\n              17.2265625,\n              13.2399455\n            ],\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.578125,\n              12.89748918\n            ],\n            [\n              17.2265625,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              13.2399455\n            ],\n            [\n              17.2265625,\n              13.5819209\n            ],\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.2265625,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              13.5819209\n            ],\n            [\n              17.2265625,\n              13.9234039\n            ],\n            [\n              17.578125,\n              13.9234039\n            ],\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.2265625,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              13.9234039\n            ],\n            [\n              17.2265625,\n              14.26438309\n            ],\n            [\n              17.578125,\n              14.26438309\n            ],\n            [\n              17.578125,\n              13.9234039\n            ],\n            [\n              17.2265625,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              14.26438309\n            ],\n            [\n              17.2265625,\n              14.60484716\n            ],\n            [\n              17.578125,\n              14.60484716\n            ],\n            [\n              17.578125,\n              14.26438309\n            ],\n            [\n              17.2265625,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              14.60484716\n            ],\n            [\n              17.2265625,\n              14.94478488\n            ],\n            [\n              17.578125,\n              14.94478488\n            ],\n            [\n              17.578125,\n              14.60484716\n            ],\n            [\n              17.2265625,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              14.94478488\n            ],\n            [\n              17.2265625,\n              15.28418511\n            ],\n            [\n              17.578125,\n              15.28418511\n            ],\n            [\n              17.578125,\n              14.94478488\n            ],\n            [\n              17.2265625,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              12.55456353\n            ],\n            [\n              17.578125,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              12.55456353\n            ],\n            [\n              17.578125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              12.89748918\n            ],\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              17.578125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.578125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.578125,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              17.578125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              13.9234039\n            ],\n            [\n              17.578125,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              17.578125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              14.26438309\n            ],\n            [\n              17.578125,\n              14.60484716\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              17.578125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              14.60484716\n            ],\n            [\n              17.578125,\n              14.94478488\n            ],\n            [\n              17.9296875,\n              14.94478488\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              17.578125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              14.94478488\n            ],\n            [\n              17.578125,\n              15.28418511\n            ],\n            [\n              17.9296875,\n              15.28418511\n            ],\n            [\n              17.9296875,\n              14.94478488\n            ],\n            [\n              17.578125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              15.28418511\n            ],\n            [\n              17.578125,\n              15.62303683\n            ],\n            [\n              17.9296875,\n              15.62303683\n            ],\n            [\n              17.9296875,\n              15.28418511\n            ],\n            [\n              17.578125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              15.62303683\n            ],\n            [\n              17.578125,\n              15.96132908\n            ],\n            [\n              17.9296875,\n              15.96132908\n            ],\n            [\n              17.9296875,\n              15.62303683\n            ],\n            [\n              17.578125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              15.96132908\n            ],\n            [\n              17.578125,\n              16.29905101\n            ],\n            [\n              17.9296875,\n              16.29905101\n            ],\n            [\n              17.9296875,\n              15.96132908\n            ],\n            [\n              17.578125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              16.29905101\n            ],\n            [\n              17.578125,\n              16.63619188\n            ],\n            [\n              17.9296875,\n              16.63619188\n            ],\n            [\n              17.9296875,\n              16.29905101\n            ],\n            [\n              17.578125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              16.63619188\n            ],\n            [\n              17.578125,\n              16.97274102\n            ],\n            [\n              17.9296875,\n              16.97274102\n            ],\n            [\n              17.9296875,\n              16.63619188\n            ],\n            [\n              17.578125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              16.97274102\n            ],\n            [\n              17.578125,\n              17.30868789\n            ],\n            [\n              17.9296875,\n              17.30868789\n            ],\n            [\n              17.9296875,\n              16.97274102\n            ],\n            [\n              17.578125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              17.30868789\n            ],\n            [\n              17.578125,\n              17.64402203\n            ],\n            [\n              17.9296875,\n              17.64402203\n            ],\n            [\n              17.9296875,\n              17.30868789\n            ],\n            [\n              17.578125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              12.55456353\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              18.28125,\n              12.55456353\n            ],\n            [\n              17.9296875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              17.9296875,\n              14.94478488\n            ],\n            [\n              18.28125,\n              14.94478488\n            ],\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              14.94478488\n            ],\n            [\n              17.9296875,\n              15.28418511\n            ],\n            [\n              18.28125,\n              15.28418511\n            ],\n            [\n              18.28125,\n              14.94478488\n            ],\n            [\n              17.9296875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              15.28418511\n            ],\n            [\n              17.9296875,\n              15.62303683\n            ],\n            [\n              18.28125,\n              15.62303683\n            ],\n            [\n              18.28125,\n              15.28418511\n            ],\n            [\n              17.9296875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              15.62303683\n            ],\n            [\n              17.9296875,\n              15.96132908\n            ],\n            [\n              18.28125,\n              15.96132908\n            ],\n            [\n              18.28125,\n              15.62303683\n            ],\n            [\n              17.9296875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              15.96132908\n            ],\n            [\n              17.9296875,\n              16.29905101\n            ],\n            [\n              18.28125,\n              16.29905101\n            ],\n            [\n              18.28125,\n              15.96132908\n            ],\n            [\n              17.9296875,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              16.29905101\n            ],\n            [\n              17.9296875,\n              16.63619188\n            ],\n            [\n              18.28125,\n              16.63619188\n            ],\n            [\n              18.28125,\n              16.29905101\n            ],\n            [\n              17.9296875,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              16.63619188\n            ],\n            [\n              17.9296875,\n              16.97274102\n            ],\n            [\n              18.28125,\n              16.97274102\n            ],\n            [\n              18.28125,\n              16.63619188\n            ],\n            [\n              17.9296875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              16.97274102\n            ],\n            [\n              17.9296875,\n              17.30868789\n            ],\n            [\n              18.28125,\n              17.30868789\n            ],\n            [\n              18.28125,\n              16.97274102\n            ],\n            [\n              17.9296875,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              17.30868789\n            ],\n            [\n              17.9296875,\n              17.64402203\n            ],\n            [\n              18.28125,\n              17.64402203\n            ],\n            [\n              18.28125,\n              17.30868789\n            ],\n            [\n              17.9296875,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              12.55456353\n            ],\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              12.55456353\n            ],\n            [\n              18.28125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.28125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              18.6328125,\n              14.60484716\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.28125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.94478488\n            ],\n            [\n              18.6328125,\n              14.94478488\n            ],\n            [\n              18.6328125,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              14.94478488\n            ],\n            [\n              18.28125,\n              15.28418511\n            ],\n            [\n              18.6328125,\n              15.28418511\n            ],\n            [\n              18.6328125,\n              14.94478488\n            ],\n            [\n              18.28125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              15.28418511\n            ],\n            [\n              18.28125,\n              15.62303683\n            ],\n            [\n              18.6328125,\n              15.62303683\n            ],\n            [\n              18.6328125,\n              15.28418511\n            ],\n            [\n              18.28125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              15.62303683\n            ],\n            [\n              18.28125,\n              15.96132908\n            ],\n            [\n              18.6328125,\n              15.96132908\n            ],\n            [\n              18.6328125,\n              15.62303683\n            ],\n            [\n              18.28125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              15.96132908\n            ],\n            [\n              18.28125,\n              16.29905101\n            ],\n            [\n              18.6328125,\n              16.29905101\n            ],\n            [\n              18.6328125,\n              15.96132908\n            ],\n            [\n              18.28125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              16.29905101\n            ],\n            [\n              18.28125,\n              16.63619188\n            ],\n            [\n              18.6328125,\n              16.63619188\n            ],\n            [\n              18.6328125,\n              16.29905101\n            ],\n            [\n              18.28125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              16.63619188\n            ],\n            [\n              18.28125,\n              16.97274102\n            ],\n            [\n              18.6328125,\n              16.97274102\n            ],\n            [\n              18.6328125,\n              16.63619188\n            ],\n            [\n              18.28125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              16.97274102\n            ],\n            [\n              18.28125,\n              17.30868789\n            ],\n            [\n              18.6328125,\n              17.30868789\n            ],\n            [\n              18.6328125,\n              16.97274102\n            ],\n            [\n              18.28125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              17.30868789\n            ],\n            [\n              18.28125,\n              17.64402203\n            ],\n            [\n              18.6328125,\n              17.64402203\n            ],\n            [\n              18.6328125,\n              17.30868789\n            ],\n            [\n              18.28125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              12.55456353\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              18.984375,\n              12.55456353\n            ],\n            [\n              18.6328125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.984375,\n              13.9234039\n            ],\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.984375,\n              14.26438309\n            ],\n            [\n              18.984375,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              14.60484716\n            ],\n            [\n              18.984375,\n              14.60484716\n            ],\n            [\n              18.984375,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              14.60484716\n            ],\n            [\n              18.6328125,\n              14.94478488\n            ],\n            [\n              18.984375,\n              14.94478488\n            ],\n            [\n              18.984375,\n              14.60484716\n            ],\n            [\n              18.6328125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              14.94478488\n            ],\n            [\n              18.6328125,\n              15.28418511\n            ],\n            [\n              18.984375,\n              15.28418511\n            ],\n            [\n              18.984375,\n              14.94478488\n            ],\n            [\n              18.6328125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              15.28418511\n            ],\n            [\n              18.6328125,\n              15.62303683\n            ],\n            [\n              18.984375,\n              15.62303683\n            ],\n            [\n              18.984375,\n              15.28418511\n            ],\n            [\n              18.6328125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              15.62303683\n            ],\n            [\n              18.6328125,\n              15.96132908\n            ],\n            [\n              18.984375,\n              15.96132908\n            ],\n            [\n              18.984375,\n              15.62303683\n            ],\n            [\n              18.6328125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              15.96132908\n            ],\n            [\n              18.6328125,\n              16.29905101\n            ],\n            [\n              18.984375,\n              16.29905101\n            ],\n            [\n              18.984375,\n              15.96132908\n            ],\n            [\n              18.6328125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              16.29905101\n            ],\n            [\n              18.6328125,\n              16.63619188\n            ],\n            [\n              18.984375,\n              16.63619188\n            ],\n            [\n              18.984375,\n              16.29905101\n            ],\n            [\n              18.6328125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              16.63619188\n            ],\n            [\n              18.6328125,\n              16.97274102\n            ],\n            [\n              18.984375,\n              16.97274102\n            ],\n            [\n              18.984375,\n              16.63619188\n            ],\n            [\n              18.6328125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              16.97274102\n            ],\n            [\n              18.6328125,\n              17.30868789\n            ],\n            [\n              18.984375,\n              17.30868789\n            ],\n            [\n              18.984375,\n              16.97274102\n            ],\n            [\n              18.6328125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              17.30868789\n            ],\n            [\n              18.6328125,\n              17.64402203\n            ],\n            [\n              18.984375,\n              17.64402203\n            ],\n            [\n              18.984375,\n              17.30868789\n            ],\n            [\n              18.6328125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              12.55456353\n            ],\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              19.3359375,\n              12.89748918\n            ],\n            [\n              19.3359375,\n              12.55456353\n            ],\n            [\n              18.984375,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              19.3359375,\n              13.2399455\n            ],\n            [\n              19.3359375,\n              12.89748918\n            ],\n            [\n              18.984375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              19.3359375,\n              13.5819209\n            ],\n            [\n              19.3359375,\n              13.2399455\n            ],\n            [\n              18.984375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.9234039\n            ],\n            [\n              19.3359375,\n              13.9234039\n            ],\n            [\n              19.3359375,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              13.9234039\n            ],\n            [\n              18.984375,\n              14.26438309\n            ],\n            [\n              19.3359375,\n              14.26438309\n            ],\n            [\n              19.3359375,\n              13.9234039\n            ],\n            [\n              18.984375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              14.26438309\n            ],\n            [\n              18.984375,\n              14.60484716\n            ],\n            [\n              19.3359375,\n              14.60484716\n            ],\n            [\n              19.3359375,\n              14.26438309\n            ],\n            [\n              18.984375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              14.60484716\n            ],\n            [\n              18.984375,\n              14.94478488\n            ],\n            [\n              19.3359375,\n              14.94478488\n            ],\n            [\n              19.3359375,\n              14.60484716\n            ],\n            [\n              18.984375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              14.94478488\n            ],\n            [\n              18.984375,\n              15.28418511\n            ],\n            [\n              19.3359375,\n              15.28418511\n            ],\n            [\n              19.3359375,\n              14.94478488\n            ],\n            [\n              18.984375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              15.28418511\n            ],\n            [\n              18.984375,\n              15.62303683\n            ],\n            [\n              19.3359375,\n              15.62303683\n            ],\n            [\n              19.3359375,\n              15.28418511\n            ],\n            [\n              18.984375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              15.62303683\n            ],\n            [\n              18.984375,\n              15.96132908\n            ],\n            [\n              19.3359375,\n              15.96132908\n            ],\n            [\n              19.3359375,\n              15.62303683\n            ],\n            [\n              18.984375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              15.96132908\n            ],\n            [\n              18.984375,\n              16.29905101\n            ],\n            [\n              19.3359375,\n              16.29905101\n            ],\n            [\n              19.3359375,\n              15.96132908\n            ],\n            [\n              18.984375,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              16.29905101\n            ],\n            [\n              18.984375,\n              16.63619188\n            ],\n            [\n              19.3359375,\n              16.63619188\n            ],\n            [\n              19.3359375,\n              16.29905101\n            ],\n            [\n              18.984375,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              16.63619188\n            ],\n            [\n              18.984375,\n              16.97274102\n            ],\n            [\n              19.3359375,\n              16.97274102\n            ],\n            [\n              19.3359375,\n              16.63619188\n            ],\n            [\n              18.984375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              16.97274102\n            ],\n            [\n              18.984375,\n              17.30868789\n            ],\n            [\n              19.3359375,\n              17.30868789\n            ],\n            [\n              19.3359375,\n              16.97274102\n            ],\n            [\n              18.984375,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              17.30868789\n            ],\n            [\n              18.984375,\n              17.64402203\n            ],\n            [\n              19.3359375,\n              17.64402203\n            ],\n            [\n              19.3359375,\n              17.30868789\n            ],\n            [\n              18.984375,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              12.55456353\n            ],\n            [\n              19.3359375,\n              12.89748918\n            ],\n            [\n              19.6875,\n              12.89748918\n            ],\n            [\n              19.6875,\n              12.55456353\n            ],\n            [\n              19.3359375,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              12.89748918\n            ],\n            [\n              19.3359375,\n              13.2399455\n            ],\n            [\n              19.6875,\n              13.2399455\n            ],\n            [\n              19.6875,\n              12.89748918\n            ],\n            [\n              19.3359375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              13.2399455\n            ],\n            [\n              19.3359375,\n              13.5819209\n            ],\n            [\n              19.6875,\n              13.5819209\n            ],\n            [\n              19.6875,\n              13.2399455\n            ],\n            [\n              19.3359375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              13.5819209\n            ],\n            [\n              19.3359375,\n              13.9234039\n            ],\n            [\n              19.6875,\n              13.9234039\n            ],\n            [\n              19.6875,\n              13.5819209\n            ],\n            [\n              19.3359375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              13.9234039\n            ],\n            [\n              19.3359375,\n              14.26438309\n            ],\n            [\n              19.6875,\n              14.26438309\n            ],\n            [\n              19.6875,\n              13.9234039\n            ],\n            [\n              19.3359375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              14.26438309\n            ],\n            [\n              19.3359375,\n              14.60484716\n            ],\n            [\n              19.6875,\n              14.60484716\n            ],\n            [\n              19.6875,\n              14.26438309\n            ],\n            [\n              19.3359375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              14.60484716\n            ],\n            [\n              19.3359375,\n              14.94478488\n            ],\n            [\n              19.6875,\n              14.94478488\n            ],\n            [\n              19.6875,\n              14.60484716\n            ],\n            [\n              19.3359375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              14.94478488\n            ],\n            [\n              19.3359375,\n              15.28418511\n            ],\n            [\n              19.6875,\n              15.28418511\n            ],\n            [\n              19.6875,\n              14.94478488\n            ],\n            [\n              19.3359375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              15.28418511\n            ],\n            [\n              19.3359375,\n              15.62303683\n            ],\n            [\n              19.6875,\n              15.62303683\n            ],\n            [\n              19.6875,\n              15.28418511\n            ],\n            [\n              19.3359375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              15.62303683\n            ],\n            [\n              19.3359375,\n              15.96132908\n            ],\n            [\n              19.6875,\n              15.96132908\n            ],\n            [\n              19.6875,\n              15.62303683\n            ],\n            [\n              19.3359375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              15.96132908\n            ],\n            [\n              19.3359375,\n              16.29905101\n            ],\n            [\n              19.6875,\n              16.29905101\n            ],\n            [\n              19.6875,\n              15.96132908\n            ],\n            [\n              19.3359375,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              16.29905101\n            ],\n            [\n              19.3359375,\n              16.63619188\n            ],\n            [\n              19.6875,\n              16.63619188\n            ],\n            [\n              19.6875,\n              16.29905101\n            ],\n            [\n              19.3359375,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              16.63619188\n            ],\n            [\n              19.3359375,\n              16.97274102\n            ],\n            [\n              19.6875,\n              16.97274102\n            ],\n            [\n              19.6875,\n              16.63619188\n            ],\n            [\n              19.3359375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              16.97274102\n            ],\n            [\n              19.3359375,\n              17.30868789\n            ],\n            [\n              19.6875,\n              17.30868789\n            ],\n            [\n              19.6875,\n              16.97274102\n            ],\n            [\n              19.3359375,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              17.30868789\n            ],\n            [\n              19.3359375,\n              17.64402203\n            ],\n            [\n              19.6875,\n              17.64402203\n            ],\n            [\n              19.6875,\n              17.30868789\n            ],\n            [\n              19.3359375,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              12.55456353\n            ],\n            [\n              19.6875,\n              12.89748918\n            ],\n            [\n              20.0390625,\n              12.89748918\n            ],\n            [\n              20.0390625,\n              12.55456353\n            ],\n            [\n              19.6875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              12.89748918\n            ],\n            [\n              19.6875,\n              13.2399455\n            ],\n            [\n              20.0390625,\n              13.2399455\n            ],\n            [\n              20.0390625,\n              12.89748918\n            ],\n            [\n              19.6875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              13.2399455\n            ],\n            [\n              19.6875,\n              13.5819209\n            ],\n            [\n              20.0390625,\n              13.5819209\n            ],\n            [\n              20.0390625,\n              13.2399455\n            ],\n            [\n              19.6875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              13.5819209\n            ],\n            [\n              19.6875,\n              13.9234039\n            ],\n            [\n              20.0390625,\n              13.9234039\n            ],\n            [\n              20.0390625,\n              13.5819209\n            ],\n            [\n              19.6875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              13.9234039\n            ],\n            [\n              19.6875,\n              14.26438309\n            ],\n            [\n              20.0390625,\n              14.26438309\n            ],\n            [\n              20.0390625,\n              13.9234039\n            ],\n            [\n              19.6875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              14.26438309\n            ],\n            [\n              19.6875,\n              14.60484716\n            ],\n            [\n              20.0390625,\n              14.60484716\n            ],\n            [\n              20.0390625,\n              14.26438309\n            ],\n            [\n              19.6875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              14.60484716\n            ],\n            [\n              19.6875,\n              14.94478488\n            ],\n            [\n              20.0390625,\n              14.94478488\n            ],\n            [\n              20.0390625,\n              14.60484716\n            ],\n            [\n              19.6875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              14.94478488\n            ],\n            [\n              19.6875,\n              15.28418511\n            ],\n            [\n              20.0390625,\n              15.28418511\n            ],\n            [\n              20.0390625,\n              14.94478488\n            ],\n            [\n              19.6875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              15.28418511\n            ],\n            [\n              19.6875,\n              15.62303683\n            ],\n            [\n              20.0390625,\n              15.62303683\n            ],\n            [\n              20.0390625,\n              15.28418511\n            ],\n            [\n              19.6875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              15.62303683\n            ],\n            [\n              19.6875,\n              15.96132908\n            ],\n            [\n              20.0390625,\n              15.96132908\n            ],\n            [\n              20.0390625,\n              15.62303683\n            ],\n            [\n              19.6875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              15.96132908\n            ],\n            [\n              19.6875,\n              16.29905101\n            ],\n            [\n              20.0390625,\n              16.29905101\n            ],\n            [\n              20.0390625,\n              15.96132908\n            ],\n            [\n              19.6875,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              16.29905101\n            ],\n            [\n              19.6875,\n              16.63619188\n            ],\n            [\n              20.0390625,\n              16.63619188\n            ],\n            [\n              20.0390625,\n              16.29905101\n            ],\n            [\n              19.6875,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              16.63619188\n            ],\n            [\n              19.6875,\n              16.97274102\n            ],\n            [\n              20.0390625,\n              16.97274102\n            ],\n            [\n              20.0390625,\n              16.63619188\n            ],\n            [\n              19.6875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              16.97274102\n            ],\n            [\n              19.6875,\n              17.30868789\n            ],\n            [\n              20.0390625,\n              17.30868789\n            ],\n            [\n              20.0390625,\n              16.97274102\n            ],\n            [\n              19.6875,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              17.30868789\n            ],\n            [\n              19.6875,\n              17.64402203\n            ],\n            [\n              20.0390625,\n              17.64402203\n            ],\n            [\n              20.0390625,\n              17.30868789\n            ],\n            [\n              19.6875,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              12.55456353\n            ],\n            [\n              20.0390625,\n              12.89748918\n            ],\n            [\n              20.390625,\n              12.89748918\n            ],\n            [\n              20.390625,\n              12.55456353\n            ],\n            [\n              20.0390625,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              12.89748918\n            ],\n            [\n              20.0390625,\n              13.2399455\n            ],\n            [\n              20.390625,\n              13.2399455\n            ],\n            [\n              20.390625,\n              12.89748918\n            ],\n            [\n              20.0390625,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              13.2399455\n            ],\n            [\n              20.0390625,\n              13.5819209\n            ],\n            [\n              20.390625,\n              13.5819209\n            ],\n            [\n              20.390625,\n              13.2399455\n            ],\n            [\n              20.0390625,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              13.5819209\n            ],\n            [\n              20.0390625,\n              13.9234039\n            ],\n            [\n              20.390625,\n              13.9234039\n            ],\n            [\n              20.390625,\n              13.5819209\n            ],\n            [\n              20.0390625,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              13.9234039\n            ],\n            [\n              20.0390625,\n              14.26438309\n            ],\n            [\n              20.390625,\n              14.26438309\n            ],\n            [\n              20.390625,\n              13.9234039\n            ],\n            [\n              20.0390625,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              14.26438309\n            ],\n            [\n              20.0390625,\n              14.60484716\n            ],\n            [\n              20.390625,\n              14.60484716\n            ],\n            [\n              20.390625,\n              14.26438309\n            ],\n            [\n              20.0390625,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              14.60484716\n            ],\n            [\n              20.0390625,\n              14.94478488\n            ],\n            [\n              20.390625,\n              14.94478488\n            ],\n            [\n              20.390625,\n              14.60484716\n            ],\n            [\n              20.0390625,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              14.94478488\n            ],\n            [\n              20.0390625,\n              15.28418511\n            ],\n            [\n              20.390625,\n              15.28418511\n            ],\n            [\n              20.390625,\n              14.94478488\n            ],\n            [\n              20.0390625,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              15.28418511\n            ],\n            [\n              20.0390625,\n              15.62303683\n            ],\n            [\n              20.390625,\n              15.62303683\n            ],\n            [\n              20.390625,\n              15.28418511\n            ],\n            [\n              20.0390625,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              15.62303683\n            ],\n            [\n              20.0390625,\n              15.96132908\n            ],\n            [\n              20.390625,\n              15.96132908\n            ],\n            [\n              20.390625,\n              15.62303683\n            ],\n            [\n              20.0390625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              15.96132908\n            ],\n            [\n              20.0390625,\n              16.29905101\n            ],\n            [\n              20.390625,\n              16.29905101\n            ],\n            [\n              20.390625,\n              15.96132908\n            ],\n            [\n              20.0390625,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              16.29905101\n            ],\n            [\n              20.0390625,\n              16.63619188\n            ],\n            [\n              20.390625,\n              16.63619188\n            ],\n            [\n              20.390625,\n              16.29905101\n            ],\n            [\n              20.0390625,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              16.63619188\n            ],\n            [\n              20.0390625,\n              16.97274102\n            ],\n            [\n              20.390625,\n              16.97274102\n            ],\n            [\n              20.390625,\n              16.63619188\n            ],\n            [\n              20.0390625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              16.97274102\n            ],\n            [\n              20.0390625,\n              17.30868789\n            ],\n            [\n              20.390625,\n              17.30868789\n            ],\n            [\n              20.390625,\n              16.97274102\n            ],\n            [\n              20.0390625,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              17.30868789\n            ],\n            [\n              20.0390625,\n              17.64402203\n            ],\n            [\n              20.390625,\n              17.64402203\n            ],\n            [\n              20.390625,\n              17.30868789\n            ],\n            [\n              20.0390625,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              12.55456353\n            ],\n            [\n              20.390625,\n              12.89748918\n            ],\n            [\n              20.7421875,\n              12.89748918\n            ],\n            [\n              20.7421875,\n              12.55456353\n            ],\n            [\n              20.390625,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              12.89748918\n            ],\n            [\n              20.390625,\n              13.2399455\n            ],\n            [\n              20.7421875,\n              13.2399455\n            ],\n            [\n              20.7421875,\n              12.89748918\n            ],\n            [\n              20.390625,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              13.2399455\n            ],\n            [\n              20.390625,\n              13.5819209\n            ],\n            [\n              20.7421875,\n              13.5819209\n            ],\n            [\n              20.7421875,\n              13.2399455\n            ],\n            [\n              20.390625,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              13.5819209\n            ],\n            [\n              20.390625,\n              13.9234039\n            ],\n            [\n              20.7421875,\n              13.9234039\n            ],\n            [\n              20.7421875,\n              13.5819209\n            ],\n            [\n              20.390625,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              13.9234039\n            ],\n            [\n              20.390625,\n              14.26438309\n            ],\n            [\n              20.7421875,\n              14.26438309\n            ],\n            [\n              20.7421875,\n              13.9234039\n            ],\n            [\n              20.390625,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              14.26438309\n            ],\n            [\n              20.390625,\n              14.60484716\n            ],\n            [\n              20.7421875,\n              14.60484716\n            ],\n            [\n              20.7421875,\n              14.26438309\n            ],\n            [\n              20.390625,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              14.60484716\n            ],\n            [\n              20.390625,\n              14.94478488\n            ],\n            [\n              20.7421875,\n              14.94478488\n            ],\n            [\n              20.7421875,\n              14.60484716\n            ],\n            [\n              20.390625,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              14.94478488\n            ],\n            [\n              20.390625,\n              15.28418511\n            ],\n            [\n              20.7421875,\n              15.28418511\n            ],\n            [\n              20.7421875,\n              14.94478488\n            ],\n            [\n              20.390625,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              15.28418511\n            ],\n            [\n              20.390625,\n              15.62303683\n            ],\n            [\n              20.7421875,\n              15.62303683\n            ],\n            [\n              20.7421875,\n              15.28418511\n            ],\n            [\n              20.390625,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              15.62303683\n            ],\n            [\n              20.390625,\n              15.96132908\n            ],\n            [\n              20.7421875,\n              15.96132908\n            ],\n            [\n              20.7421875,\n              15.62303683\n            ],\n            [\n              20.390625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              15.96132908\n            ],\n            [\n              20.390625,\n              16.29905101\n            ],\n            [\n              20.7421875,\n              16.29905101\n            ],\n            [\n              20.7421875,\n              15.96132908\n            ],\n            [\n              20.390625,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              16.29905101\n            ],\n            [\n              20.390625,\n              16.63619188\n            ],\n            [\n              20.7421875,\n              16.63619188\n            ],\n            [\n              20.7421875,\n              16.29905101\n            ],\n            [\n              20.390625,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              16.63619188\n            ],\n            [\n              20.390625,\n              16.97274102\n            ],\n            [\n              20.7421875,\n              16.97274102\n            ],\n            [\n              20.7421875,\n              16.63619188\n            ],\n            [\n              20.390625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              16.97274102\n            ],\n            [\n              20.390625,\n              17.30868789\n            ],\n            [\n              20.7421875,\n              17.30868789\n            ],\n            [\n              20.7421875,\n              16.97274102\n            ],\n            [\n              20.390625,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              17.30868789\n            ],\n            [\n              20.390625,\n              17.64402203\n            ],\n            [\n              20.7421875,\n              17.64402203\n            ],\n            [\n              20.7421875,\n              17.30868789\n            ],\n            [\n              20.390625,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              12.55456353\n            ],\n            [\n              20.7421875,\n              12.89748918\n            ],\n            [\n              21.09375,\n              12.89748918\n            ],\n            [\n              21.09375,\n              12.55456353\n            ],\n            [\n              20.7421875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              12.89748918\n            ],\n            [\n              20.7421875,\n              13.2399455\n            ],\n            [\n              21.09375,\n              13.2399455\n            ],\n            [\n              21.09375,\n              12.89748918\n            ],\n            [\n              20.7421875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              13.2399455\n            ],\n            [\n              20.7421875,\n              13.5819209\n            ],\n            [\n              21.09375,\n              13.5819209\n            ],\n            [\n              21.09375,\n              13.2399455\n            ],\n            [\n              20.7421875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              13.5819209\n            ],\n            [\n              20.7421875,\n              13.9234039\n            ],\n            [\n              21.09375,\n              13.9234039\n            ],\n            [\n              21.09375,\n              13.5819209\n            ],\n            [\n              20.7421875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              13.9234039\n            ],\n            [\n              20.7421875,\n              14.26438309\n            ],\n            [\n              21.09375,\n              14.26438309\n            ],\n            [\n              21.09375,\n              13.9234039\n            ],\n            [\n              20.7421875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              14.26438309\n            ],\n            [\n              20.7421875,\n              14.60484716\n            ],\n            [\n              21.09375,\n              14.60484716\n            ],\n            [\n              21.09375,\n              14.26438309\n            ],\n            [\n              20.7421875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              14.60484716\n            ],\n            [\n              20.7421875,\n              14.94478488\n            ],\n            [\n              21.09375,\n              14.94478488\n            ],\n            [\n              21.09375,\n              14.60484716\n            ],\n            [\n              20.7421875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              14.94478488\n            ],\n            [\n              20.7421875,\n              15.28418511\n            ],\n            [\n              21.09375,\n              15.28418511\n            ],\n            [\n              21.09375,\n              14.94478488\n            ],\n            [\n              20.7421875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              15.28418511\n            ],\n            [\n              20.7421875,\n              15.62303683\n            ],\n            [\n              21.09375,\n              15.62303683\n            ],\n            [\n              21.09375,\n              15.28418511\n            ],\n            [\n              20.7421875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              15.62303683\n            ],\n            [\n              20.7421875,\n              15.96132908\n            ],\n            [\n              21.09375,\n              15.96132908\n            ],\n            [\n              21.09375,\n              15.62303683\n            ],\n            [\n              20.7421875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              15.96132908\n            ],\n            [\n              20.7421875,\n              16.29905101\n            ],\n            [\n              21.09375,\n              16.29905101\n            ],\n            [\n              21.09375,\n              15.96132908\n            ],\n            [\n              20.7421875,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              16.29905101\n            ],\n            [\n              20.7421875,\n              16.63619188\n            ],\n            [\n              21.09375,\n              16.63619188\n            ],\n            [\n              21.09375,\n              16.29905101\n            ],\n            [\n              20.7421875,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              16.63619188\n            ],\n            [\n              20.7421875,\n              16.97274102\n            ],\n            [\n              21.09375,\n              16.97274102\n            ],\n            [\n              21.09375,\n              16.63619188\n            ],\n            [\n              20.7421875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              16.97274102\n            ],\n            [\n              20.7421875,\n              17.30868789\n            ],\n            [\n              21.09375,\n              17.30868789\n            ],\n            [\n              21.09375,\n              16.97274102\n            ],\n            [\n              20.7421875,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              17.30868789\n            ],\n            [\n              20.7421875,\n              17.64402203\n            ],\n            [\n              21.09375,\n              17.64402203\n            ],\n            [\n              21.09375,\n              17.30868789\n            ],\n            [\n              20.7421875,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              12.55456353\n            ],\n            [\n              21.09375,\n              12.89748918\n            ],\n            [\n              21.4453125,\n              12.89748918\n            ],\n            [\n              21.4453125,\n              12.55456353\n            ],\n            [\n              21.09375,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              12.89748918\n            ],\n            [\n              21.09375,\n              13.2399455\n            ],\n            [\n              21.4453125,\n              13.2399455\n            ],\n            [\n              21.4453125,\n              12.89748918\n            ],\n            [\n              21.09375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              13.2399455\n            ],\n            [\n              21.09375,\n              13.5819209\n            ],\n            [\n              21.4453125,\n              13.5819209\n            ],\n            [\n              21.4453125,\n              13.2399455\n            ],\n            [\n              21.09375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              13.5819209\n            ],\n            [\n              21.09375,\n              13.9234039\n            ],\n            [\n              21.4453125,\n              13.9234039\n            ],\n            [\n              21.4453125,\n              13.5819209\n            ],\n            [\n              21.09375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              13.9234039\n            ],\n            [\n              21.09375,\n              14.26438309\n            ],\n            [\n              21.4453125,\n              14.26438309\n            ],\n            [\n              21.4453125,\n              13.9234039\n            ],\n            [\n              21.09375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              14.26438309\n            ],\n            [\n              21.09375,\n              14.60484716\n            ],\n            [\n              21.4453125,\n              14.60484716\n            ],\n            [\n              21.4453125,\n              14.26438309\n            ],\n            [\n              21.09375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              14.60484716\n            ],\n            [\n              21.09375,\n              14.94478488\n            ],\n            [\n              21.4453125,\n              14.94478488\n            ],\n            [\n              21.4453125,\n              14.60484716\n            ],\n            [\n              21.09375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              14.94478488\n            ],\n            [\n              21.09375,\n              15.28418511\n            ],\n            [\n              21.4453125,\n              15.28418511\n            ],\n            [\n              21.4453125,\n              14.94478488\n            ],\n            [\n              21.09375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              15.28418511\n            ],\n            [\n              21.09375,\n              15.62303683\n            ],\n            [\n              21.4453125,\n              15.62303683\n            ],\n            [\n              21.4453125,\n              15.28418511\n            ],\n            [\n              21.09375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              15.62303683\n            ],\n            [\n              21.09375,\n              15.96132908\n            ],\n            [\n              21.4453125,\n              15.96132908\n            ],\n            [\n              21.4453125,\n              15.62303683\n            ],\n            [\n              21.09375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              15.96132908\n            ],\n            [\n              21.09375,\n              16.29905101\n            ],\n            [\n              21.4453125,\n              16.29905101\n            ],\n            [\n              21.4453125,\n              15.96132908\n            ],\n            [\n              21.09375,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              16.29905101\n            ],\n            [\n              21.09375,\n              16.63619188\n            ],\n            [\n              21.4453125,\n              16.63619188\n            ],\n            [\n              21.4453125,\n              16.29905101\n            ],\n            [\n              21.09375,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              16.63619188\n            ],\n            [\n              21.09375,\n              16.97274102\n            ],\n            [\n              21.4453125,\n              16.97274102\n            ],\n            [\n              21.4453125,\n              16.63619188\n            ],\n            [\n              21.09375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              16.97274102\n            ],\n            [\n              21.09375,\n              17.30868789\n            ],\n            [\n              21.4453125,\n              17.30868789\n            ],\n            [\n              21.4453125,\n              16.97274102\n            ],\n            [\n              21.09375,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              17.30868789\n            ],\n            [\n              21.09375,\n              17.64402203\n            ],\n            [\n              21.4453125,\n              17.64402203\n            ],\n            [\n              21.4453125,\n              17.30868789\n            ],\n            [\n              21.09375,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              17.64402203\n            ],\n            [\n              21.09375,\n              17.9787331\n            ],\n            [\n              21.4453125,\n              17.9787331\n            ],\n            [\n              21.4453125,\n              17.64402203\n            ],\n            [\n              21.09375,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              17.9787331\n            ],\n            [\n              21.09375,\n              18.31281085\n            ],\n            [\n              21.4453125,\n              18.31281085\n            ],\n            [\n              21.4453125,\n              17.9787331\n            ],\n            [\n              21.09375,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              18.31281085\n            ],\n            [\n              21.09375,\n              18.64624514\n            ],\n            [\n              21.4453125,\n              18.64624514\n            ],\n            [\n              21.4453125,\n              18.31281085\n            ],\n            [\n              21.09375,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              18.64624514\n            ],\n            [\n              21.09375,\n              18.97902595\n            ],\n            [\n              21.4453125,\n              18.97902595\n            ],\n            [\n              21.4453125,\n              18.64624514\n            ],\n            [\n              21.09375,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              18.97902595\n            ],\n            [\n              21.09375,\n              19.31114336\n            ],\n            [\n              21.4453125,\n              19.31114336\n            ],\n            [\n              21.4453125,\n              18.97902595\n            ],\n            [\n              21.09375,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              19.31114336\n            ],\n            [\n              21.09375,\n              19.64258753\n            ],\n            [\n              21.4453125,\n              19.64258753\n            ],\n            [\n              21.4453125,\n              19.31114336\n            ],\n            [\n              21.09375,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              19.64258753\n            ],\n            [\n              21.09375,\n              19.97334879\n            ],\n            [\n              21.4453125,\n              19.97334879\n            ],\n            [\n              21.4453125,\n              19.64258753\n            ],\n            [\n              21.09375,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              19.97334879\n            ],\n            [\n              21.09375,\n              20.30341752\n            ],\n            [\n              21.4453125,\n              20.30341752\n            ],\n            [\n              21.4453125,\n              19.97334879\n            ],\n            [\n              21.09375,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              20.30341752\n            ],\n            [\n              21.09375,\n              20.63278425\n            ],\n            [\n              21.4453125,\n              20.63278425\n            ],\n            [\n              21.4453125,\n              20.30341752\n            ],\n            [\n              21.09375,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              20.63278425\n            ],\n            [\n              21.09375,\n              20.96143961\n            ],\n            [\n              21.4453125,\n              20.96143961\n            ],\n            [\n              21.4453125,\n              20.63278425\n            ],\n            [\n              21.09375,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              20.96143961\n            ],\n            [\n              21.09375,\n              21.28937436\n            ],\n            [\n              21.4453125,\n              21.28937436\n            ],\n            [\n              21.4453125,\n              20.96143961\n            ],\n            [\n              21.09375,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              21.28937436\n            ],\n            [\n              21.09375,\n              21.61657934\n            ],\n            [\n              21.4453125,\n              21.61657934\n            ],\n            [\n              21.4453125,\n              21.28937436\n            ],\n            [\n              21.09375,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              12.55456353\n            ],\n            [\n              21.4453125,\n              12.89748918\n            ],\n            [\n              21.796875,\n              12.89748918\n            ],\n            [\n              21.796875,\n              12.55456353\n            ],\n            [\n              21.4453125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              12.89748918\n            ],\n            [\n              21.4453125,\n              13.2399455\n            ],\n            [\n              21.796875,\n              13.2399455\n            ],\n            [\n              21.796875,\n              12.89748918\n            ],\n            [\n              21.4453125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              13.2399455\n            ],\n            [\n              21.4453125,\n              13.5819209\n            ],\n            [\n              21.796875,\n              13.5819209\n            ],\n            [\n              21.796875,\n              13.2399455\n            ],\n            [\n              21.4453125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              13.5819209\n            ],\n            [\n              21.4453125,\n              13.9234039\n            ],\n            [\n              21.796875,\n              13.9234039\n            ],\n            [\n              21.796875,\n              13.5819209\n            ],\n            [\n              21.4453125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              13.9234039\n            ],\n            [\n              21.4453125,\n              14.26438309\n            ],\n            [\n              21.796875,\n              14.26438309\n            ],\n            [\n              21.796875,\n              13.9234039\n            ],\n            [\n              21.4453125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              14.26438309\n            ],\n            [\n              21.4453125,\n              14.60484716\n            ],\n            [\n              21.796875,\n              14.60484716\n            ],\n            [\n              21.796875,\n              14.26438309\n            ],\n            [\n              21.4453125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              14.60484716\n            ],\n            [\n              21.4453125,\n              14.94478488\n            ],\n            [\n              21.796875,\n              14.94478488\n            ],\n            [\n              21.796875,\n              14.60484716\n            ],\n            [\n              21.4453125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              14.94478488\n            ],\n            [\n              21.4453125,\n              15.28418511\n            ],\n            [\n              21.796875,\n              15.28418511\n            ],\n            [\n              21.796875,\n              14.94478488\n            ],\n            [\n              21.4453125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              15.28418511\n            ],\n            [\n              21.4453125,\n              15.62303683\n            ],\n            [\n              21.796875,\n              15.62303683\n            ],\n            [\n              21.796875,\n              15.28418511\n            ],\n            [\n              21.4453125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              15.62303683\n            ],\n            [\n              21.4453125,\n              15.96132908\n            ],\n            [\n              21.796875,\n              15.96132908\n            ],\n            [\n              21.796875,\n              15.62303683\n            ],\n            [\n              21.4453125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              15.96132908\n            ],\n            [\n              21.4453125,\n              16.29905101\n            ],\n            [\n              21.796875,\n              16.29905101\n            ],\n            [\n              21.796875,\n              15.96132908\n            ],\n            [\n              21.4453125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              16.29905101\n            ],\n            [\n              21.4453125,\n              16.63619188\n            ],\n            [\n              21.796875,\n              16.63619188\n            ],\n            [\n              21.796875,\n              16.29905101\n            ],\n            [\n              21.4453125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              16.63619188\n            ],\n            [\n              21.4453125,\n              16.97274102\n            ],\n            [\n              21.796875,\n              16.97274102\n            ],\n            [\n              21.796875,\n              16.63619188\n            ],\n            [\n              21.4453125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              16.97274102\n            ],\n            [\n              21.4453125,\n              17.30868789\n            ],\n            [\n              21.796875,\n              17.30868789\n            ],\n            [\n              21.796875,\n              16.97274102\n            ],\n            [\n              21.4453125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              17.30868789\n            ],\n            [\n              21.4453125,\n              17.64402203\n            ],\n            [\n              21.796875,\n              17.64402203\n            ],\n            [\n              21.796875,\n              17.30868789\n            ],\n            [\n              21.4453125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              17.64402203\n            ],\n            [\n              21.4453125,\n              17.9787331\n            ],\n            [\n              21.796875,\n              17.9787331\n            ],\n            [\n              21.796875,\n              17.64402203\n            ],\n            [\n              21.4453125,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              17.9787331\n            ],\n            [\n              21.4453125,\n              18.31281085\n            ],\n            [\n              21.796875,\n              18.31281085\n            ],\n            [\n              21.796875,\n              17.9787331\n            ],\n            [\n              21.4453125,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              18.31281085\n            ],\n            [\n              21.4453125,\n              18.64624514\n            ],\n            [\n              21.796875,\n              18.64624514\n            ],\n            [\n              21.796875,\n              18.31281085\n            ],\n            [\n              21.4453125,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              18.64624514\n            ],\n            [\n              21.4453125,\n              18.97902595\n            ],\n            [\n              21.796875,\n              18.97902595\n            ],\n            [\n              21.796875,\n              18.64624514\n            ],\n            [\n              21.4453125,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              18.97902595\n            ],\n            [\n              21.4453125,\n              19.31114336\n            ],\n            [\n              21.796875,\n              19.31114336\n            ],\n            [\n              21.796875,\n              18.97902595\n            ],\n            [\n              21.4453125,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              19.31114336\n            ],\n            [\n              21.4453125,\n              19.64258753\n            ],\n            [\n              21.796875,\n              19.64258753\n            ],\n            [\n              21.796875,\n              19.31114336\n            ],\n            [\n              21.4453125,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              19.64258753\n            ],\n            [\n              21.4453125,\n              19.97334879\n            ],\n            [\n              21.796875,\n              19.97334879\n            ],\n            [\n              21.796875,\n              19.64258753\n            ],\n            [\n              21.4453125,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              19.97334879\n            ],\n            [\n              21.4453125,\n              20.30341752\n            ],\n            [\n              21.796875,\n              20.30341752\n            ],\n            [\n              21.796875,\n              19.97334879\n            ],\n            [\n              21.4453125,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              20.30341752\n            ],\n            [\n              21.4453125,\n              20.63278425\n            ],\n            [\n              21.796875,\n              20.63278425\n            ],\n            [\n              21.796875,\n              20.30341752\n            ],\n            [\n              21.4453125,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              20.63278425\n            ],\n            [\n              21.4453125,\n              20.96143961\n            ],\n            [\n              21.796875,\n              20.96143961\n            ],\n            [\n              21.796875,\n              20.63278425\n            ],\n            [\n              21.4453125,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              20.96143961\n            ],\n            [\n              21.4453125,\n              21.28937436\n            ],\n            [\n              21.796875,\n              21.28937436\n            ],\n            [\n              21.796875,\n              20.96143961\n            ],\n            [\n              21.4453125,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              21.28937436\n            ],\n            [\n              21.4453125,\n              21.61657934\n            ],\n            [\n              21.796875,\n              21.61657934\n            ],\n            [\n              21.796875,\n              21.28937436\n            ],\n            [\n              21.4453125,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              12.55456353\n            ],\n            [\n              21.796875,\n              12.89748918\n            ],\n            [\n              22.1484375,\n              12.89748918\n            ],\n            [\n              22.1484375,\n              12.55456353\n            ],\n            [\n              21.796875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              12.89748918\n            ],\n            [\n              21.796875,\n              13.2399455\n            ],\n            [\n              22.1484375,\n              13.2399455\n            ],\n            [\n              22.1484375,\n              12.89748918\n            ],\n            [\n              21.796875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              13.2399455\n            ],\n            [\n              21.796875,\n              13.5819209\n            ],\n            [\n              22.1484375,\n              13.5819209\n            ],\n            [\n              22.1484375,\n              13.2399455\n            ],\n            [\n              21.796875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              13.5819209\n            ],\n            [\n              21.796875,\n              13.9234039\n            ],\n            [\n              22.1484375,\n              13.9234039\n            ],\n            [\n              22.1484375,\n              13.5819209\n            ],\n            [\n              21.796875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              13.9234039\n            ],\n            [\n              21.796875,\n              14.26438309\n            ],\n            [\n              22.1484375,\n              14.26438309\n            ],\n            [\n              22.1484375,\n              13.9234039\n            ],\n            [\n              21.796875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              14.26438309\n            ],\n            [\n              21.796875,\n              14.60484716\n            ],\n            [\n              22.1484375,\n              14.60484716\n            ],\n            [\n              22.1484375,\n              14.26438309\n            ],\n            [\n              21.796875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              14.60484716\n            ],\n            [\n              21.796875,\n              14.94478488\n            ],\n            [\n              22.1484375,\n              14.94478488\n            ],\n            [\n              22.1484375,\n              14.60484716\n            ],\n            [\n              21.796875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              14.94478488\n            ],\n            [\n              21.796875,\n              15.28418511\n            ],\n            [\n              22.1484375,\n              15.28418511\n            ],\n            [\n              22.1484375,\n              14.94478488\n            ],\n            [\n              21.796875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              15.28418511\n            ],\n            [\n              21.796875,\n              15.62303683\n            ],\n            [\n              22.1484375,\n              15.62303683\n            ],\n            [\n              22.1484375,\n              15.28418511\n            ],\n            [\n              21.796875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              15.62303683\n            ],\n            [\n              21.796875,\n              15.96132908\n            ],\n            [\n              22.1484375,\n              15.96132908\n            ],\n            [\n              22.1484375,\n              15.62303683\n            ],\n            [\n              21.796875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              15.96132908\n            ],\n            [\n              21.796875,\n              16.29905101\n            ],\n            [\n              22.1484375,\n              16.29905101\n            ],\n            [\n              22.1484375,\n              15.96132908\n            ],\n            [\n              21.796875,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              16.29905101\n            ],\n            [\n              21.796875,\n              16.63619188\n            ],\n            [\n              22.1484375,\n              16.63619188\n            ],\n            [\n              22.1484375,\n              16.29905101\n            ],\n            [\n              21.796875,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              16.63619188\n            ],\n            [\n              21.796875,\n              16.97274102\n            ],\n            [\n              22.1484375,\n              16.97274102\n            ],\n            [\n              22.1484375,\n              16.63619188\n            ],\n            [\n              21.796875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              16.97274102\n            ],\n            [\n              21.796875,\n              17.30868789\n            ],\n            [\n              22.1484375,\n              17.30868789\n            ],\n            [\n              22.1484375,\n              16.97274102\n            ],\n            [\n              21.796875,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              17.30868789\n            ],\n            [\n              21.796875,\n              17.64402203\n            ],\n            [\n              22.1484375,\n              17.64402203\n            ],\n            [\n              22.1484375,\n              17.30868789\n            ],\n            [\n              21.796875,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              17.64402203\n            ],\n            [\n              21.796875,\n              17.9787331\n            ],\n            [\n              22.1484375,\n              17.9787331\n            ],\n            [\n              22.1484375,\n              17.64402203\n            ],\n            [\n              21.796875,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              17.9787331\n            ],\n            [\n              21.796875,\n              18.31281085\n            ],\n            [\n              22.1484375,\n              18.31281085\n            ],\n            [\n              22.1484375,\n              17.9787331\n            ],\n            [\n              21.796875,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              18.31281085\n            ],\n            [\n              21.796875,\n              18.64624514\n            ],\n            [\n              22.1484375,\n              18.64624514\n            ],\n            [\n              22.1484375,\n              18.31281085\n            ],\n            [\n              21.796875,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              18.64624514\n            ],\n            [\n              21.796875,\n              18.97902595\n            ],\n            [\n              22.1484375,\n              18.97902595\n            ],\n            [\n              22.1484375,\n              18.64624514\n            ],\n            [\n              21.796875,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              18.97902595\n            ],\n            [\n              21.796875,\n              19.31114336\n            ],\n            [\n              22.1484375,\n              19.31114336\n            ],\n            [\n              22.1484375,\n              18.97902595\n            ],\n            [\n              21.796875,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              19.31114336\n            ],\n            [\n              21.796875,\n              19.64258753\n            ],\n            [\n              22.1484375,\n              19.64258753\n            ],\n            [\n              22.1484375,\n              19.31114336\n            ],\n            [\n              21.796875,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              19.64258753\n            ],\n            [\n              21.796875,\n              19.97334879\n            ],\n            [\n              22.1484375,\n              19.97334879\n            ],\n            [\n              22.1484375,\n              19.64258753\n            ],\n            [\n              21.796875,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              19.97334879\n            ],\n            [\n              21.796875,\n              20.30341752\n            ],\n            [\n              22.1484375,\n              20.30341752\n            ],\n            [\n              22.1484375,\n              19.97334879\n            ],\n            [\n              21.796875,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              20.30341752\n            ],\n            [\n              21.796875,\n              20.63278425\n            ],\n            [\n              22.1484375,\n              20.63278425\n            ],\n            [\n              22.1484375,\n              20.30341752\n            ],\n            [\n              21.796875,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              20.63278425\n            ],\n            [\n              21.796875,\n              20.96143961\n            ],\n            [\n              22.1484375,\n              20.96143961\n            ],\n            [\n              22.1484375,\n              20.63278425\n            ],\n            [\n              21.796875,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              20.96143961\n            ],\n            [\n              21.796875,\n              21.28937436\n            ],\n            [\n              22.1484375,\n              21.28937436\n            ],\n            [\n              22.1484375,\n              20.96143961\n            ],\n            [\n              21.796875,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              21.28937436\n            ],\n            [\n              21.796875,\n              21.61657934\n            ],\n            [\n              22.1484375,\n              21.61657934\n            ],\n            [\n              22.1484375,\n              21.28937436\n            ],\n            [\n              21.796875,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              12.55456353\n            ],\n            [\n              22.1484375,\n              12.89748918\n            ],\n            [\n              22.5,\n              12.89748918\n            ],\n            [\n              22.5,\n              12.55456353\n            ],\n            [\n              22.1484375,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              12.89748918\n            ],\n            [\n              22.1484375,\n              13.2399455\n            ],\n            [\n              22.5,\n              13.2399455\n            ],\n            [\n              22.5,\n              12.89748918\n            ],\n            [\n              22.1484375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              13.2399455\n            ],\n            [\n              22.1484375,\n              13.5819209\n            ],\n            [\n              22.5,\n              13.5819209\n            ],\n            [\n              22.5,\n              13.2399455\n            ],\n            [\n              22.1484375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              13.5819209\n            ],\n            [\n              22.1484375,\n              13.9234039\n            ],\n            [\n              22.5,\n              13.9234039\n            ],\n            [\n              22.5,\n              13.5819209\n            ],\n            [\n              22.1484375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              13.9234039\n            ],\n            [\n              22.1484375,\n              14.26438309\n            ],\n            [\n              22.5,\n              14.26438309\n            ],\n            [\n              22.5,\n              13.9234039\n            ],\n            [\n              22.1484375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              14.26438309\n            ],\n            [\n              22.1484375,\n              14.60484716\n            ],\n            [\n              22.5,\n              14.60484716\n            ],\n            [\n              22.5,\n              14.26438309\n            ],\n            [\n              22.1484375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              14.60484716\n            ],\n            [\n              22.1484375,\n              14.94478488\n            ],\n            [\n              22.5,\n              14.94478488\n            ],\n            [\n              22.5,\n              14.60484716\n            ],\n            [\n              22.1484375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              14.94478488\n            ],\n            [\n              22.1484375,\n              15.28418511\n            ],\n            [\n              22.5,\n              15.28418511\n            ],\n            [\n              22.5,\n              14.94478488\n            ],\n            [\n              22.1484375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              15.28418511\n            ],\n            [\n              22.1484375,\n              15.62303683\n            ],\n            [\n              22.5,\n              15.62303683\n            ],\n            [\n              22.5,\n              15.28418511\n            ],\n            [\n              22.1484375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              15.62303683\n            ],\n            [\n              22.1484375,\n              15.96132908\n            ],\n            [\n              22.5,\n              15.96132908\n            ],\n            [\n              22.5,\n              15.62303683\n            ],\n            [\n              22.1484375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              15.96132908\n            ],\n            [\n              22.1484375,\n              16.29905101\n            ],\n            [\n              22.5,\n              16.29905101\n            ],\n            [\n              22.5,\n              15.96132908\n            ],\n            [\n              22.1484375,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              16.29905101\n            ],\n            [\n              22.1484375,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.29905101\n            ],\n            [\n              22.1484375,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              16.63619188\n            ],\n            [\n              22.1484375,\n              16.97274102\n            ],\n            [\n              22.5,\n              16.97274102\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.1484375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              16.97274102\n            ],\n            [\n              22.1484375,\n              17.30868789\n            ],\n            [\n              22.5,\n              17.30868789\n            ],\n            [\n              22.5,\n              16.97274102\n            ],\n            [\n              22.1484375,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              17.30868789\n            ],\n            [\n              22.1484375,\n              17.64402203\n            ],\n            [\n              22.5,\n              17.64402203\n            ],\n            [\n              22.5,\n              17.30868789\n            ],\n            [\n              22.1484375,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              17.64402203\n            ],\n            [\n              22.1484375,\n              17.9787331\n            ],\n            [\n              22.5,\n              17.9787331\n            ],\n            [\n              22.5,\n              17.64402203\n            ],\n            [\n              22.1484375,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              17.9787331\n            ],\n            [\n              22.1484375,\n              18.31281085\n            ],\n            [\n              22.5,\n              18.31281085\n            ],\n            [\n              22.5,\n              17.9787331\n            ],\n            [\n              22.1484375,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              18.31281085\n            ],\n            [\n              22.1484375,\n              18.64624514\n            ],\n            [\n              22.5,\n              18.64624514\n            ],\n            [\n              22.5,\n              18.31281085\n            ],\n            [\n              22.1484375,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              18.64624514\n            ],\n            [\n              22.1484375,\n              18.97902595\n            ],\n            [\n              22.5,\n              18.97902595\n            ],\n            [\n              22.5,\n              18.64624514\n            ],\n            [\n              22.1484375,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              18.97902595\n            ],\n            [\n              22.1484375,\n              19.31114336\n            ],\n            [\n              22.5,\n              19.31114336\n            ],\n            [\n              22.5,\n              18.97902595\n            ],\n            [\n              22.1484375,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              19.31114336\n            ],\n            [\n              22.1484375,\n              19.64258753\n            ],\n            [\n              22.5,\n              19.64258753\n            ],\n            [\n              22.5,\n              19.31114336\n            ],\n            [\n              22.1484375,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              19.64258753\n            ],\n            [\n              22.1484375,\n              19.97334879\n            ],\n            [\n              22.5,\n              19.97334879\n            ],\n            [\n              22.5,\n              19.64258753\n            ],\n            [\n              22.1484375,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              19.97334879\n            ],\n            [\n              22.1484375,\n              20.30341752\n            ],\n            [\n              22.5,\n              20.30341752\n            ],\n            [\n              22.5,\n              19.97334879\n            ],\n            [\n              22.1484375,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              20.30341752\n            ],\n            [\n              22.1484375,\n              20.63278425\n            ],\n            [\n              22.5,\n              20.63278425\n            ],\n            [\n              22.5,\n              20.30341752\n            ],\n            [\n              22.1484375,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              20.63278425\n            ],\n            [\n              22.1484375,\n              20.96143961\n            ],\n            [\n              22.5,\n              20.96143961\n            ],\n            [\n              22.5,\n              20.63278425\n            ],\n            [\n              22.1484375,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              20.96143961\n            ],\n            [\n              22.1484375,\n              21.28937436\n            ],\n            [\n              22.5,\n              21.28937436\n            ],\n            [\n              22.5,\n              20.96143961\n            ],\n            [\n              22.1484375,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              21.28937436\n            ],\n            [\n              22.1484375,\n              21.61657934\n            ],\n            [\n              22.5,\n              21.61657934\n            ],\n            [\n              22.5,\n              21.28937436\n            ],\n            [\n              22.1484375,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              12.55456353\n            ],\n            [\n              22.5,\n              12.89748918\n            ],\n            [\n              22.8515625,\n              12.89748918\n            ],\n            [\n              22.8515625,\n              12.55456353\n            ],\n            [\n              22.5,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              12.89748918\n            ],\n            [\n              22.5,\n              13.2399455\n            ],\n            [\n              22.8515625,\n              13.2399455\n            ],\n            [\n              22.8515625,\n              12.89748918\n            ],\n            [\n              22.5,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              13.2399455\n            ],\n            [\n              22.5,\n              13.5819209\n            ],\n            [\n              22.8515625,\n              13.5819209\n            ],\n            [\n              22.8515625,\n              13.2399455\n            ],\n            [\n              22.5,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              13.5819209\n            ],\n            [\n              22.5,\n              13.9234039\n            ],\n            [\n              22.8515625,\n              13.9234039\n            ],\n            [\n              22.8515625,\n              13.5819209\n            ],\n            [\n              22.5,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              13.9234039\n            ],\n            [\n              22.5,\n              14.26438309\n            ],\n            [\n              22.8515625,\n              14.26438309\n            ],\n            [\n              22.8515625,\n              13.9234039\n            ],\n            [\n              22.5,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              14.26438309\n            ],\n            [\n              22.5,\n              14.60484716\n            ],\n            [\n              22.8515625,\n              14.60484716\n            ],\n            [\n              22.8515625,\n              14.26438309\n            ],\n            [\n              22.5,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              14.60484716\n            ],\n            [\n              22.5,\n              14.94478488\n            ],\n            [\n              22.8515625,\n              14.94478488\n            ],\n            [\n              22.8515625,\n              14.60484716\n            ],\n            [\n              22.5,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              14.94478488\n            ],\n            [\n              22.5,\n              15.28418511\n            ],\n            [\n              22.8515625,\n              15.28418511\n            ],\n            [\n              22.8515625,\n              14.94478488\n            ],\n            [\n              22.5,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              15.28418511\n            ],\n            [\n              22.5,\n              15.62303683\n            ],\n            [\n              22.8515625,\n              15.62303683\n            ],\n            [\n              22.8515625,\n              15.28418511\n            ],\n            [\n              22.5,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              15.62303683\n            ],\n            [\n              22.5,\n              15.96132908\n            ],\n            [\n              22.8515625,\n              15.96132908\n            ],\n            [\n              22.8515625,\n              15.62303683\n            ],\n            [\n              22.5,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              15.96132908\n            ],\n            [\n              22.5,\n              16.29905101\n            ],\n            [\n              22.8515625,\n              16.29905101\n            ],\n            [\n              22.8515625,\n              15.96132908\n            ],\n            [\n              22.5,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              16.29905101\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.8515625,\n              16.63619188\n            ],\n            [\n              22.8515625,\n              16.29905101\n            ],\n            [\n              22.5,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.97274102\n            ],\n            [\n              22.8515625,\n              16.97274102\n            ],\n            [\n              22.8515625,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              16.97274102\n            ],\n            [\n              22.5,\n              17.30868789\n            ],\n            [\n              22.8515625,\n              17.30868789\n            ],\n            [\n              22.8515625,\n              16.97274102\n            ],\n            [\n              22.5,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              17.30868789\n            ],\n            [\n              22.5,\n              17.64402203\n            ],\n            [\n              22.8515625,\n              17.64402203\n            ],\n            [\n              22.8515625,\n              17.30868789\n            ],\n            [\n              22.5,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              17.64402203\n            ],\n            [\n              22.5,\n              17.9787331\n            ],\n            [\n              22.8515625,\n              17.9787331\n            ],\n            [\n              22.8515625,\n              17.64402203\n            ],\n            [\n              22.5,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              17.9787331\n            ],\n            [\n              22.5,\n              18.31281085\n            ],\n            [\n              22.8515625,\n              18.31281085\n            ],\n            [\n              22.8515625,\n              17.9787331\n            ],\n            [\n              22.5,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              18.31281085\n            ],\n            [\n              22.5,\n              18.64624514\n            ],\n            [\n              22.8515625,\n              18.64624514\n            ],\n            [\n              22.8515625,\n              18.31281085\n            ],\n            [\n              22.5,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              18.64624514\n            ],\n            [\n              22.5,\n              18.97902595\n            ],\n            [\n              22.8515625,\n              18.97902595\n            ],\n            [\n              22.8515625,\n              18.64624514\n            ],\n            [\n              22.5,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              18.97902595\n            ],\n            [\n              22.5,\n              19.31114336\n            ],\n            [\n              22.8515625,\n              19.31114336\n            ],\n            [\n              22.8515625,\n              18.97902595\n            ],\n            [\n              22.5,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              19.31114336\n            ],\n            [\n              22.5,\n              19.64258753\n            ],\n            [\n              22.8515625,\n              19.64258753\n            ],\n            [\n              22.8515625,\n              19.31114336\n            ],\n            [\n              22.5,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              19.64258753\n            ],\n            [\n              22.5,\n              19.97334879\n            ],\n            [\n              22.8515625,\n              19.97334879\n            ],\n            [\n              22.8515625,\n              19.64258753\n            ],\n            [\n              22.5,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              19.97334879\n            ],\n            [\n              22.5,\n              20.30341752\n            ],\n            [\n              22.8515625,\n              20.30341752\n            ],\n            [\n              22.8515625,\n              19.97334879\n            ],\n            [\n              22.5,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              20.30341752\n            ],\n            [\n              22.5,\n              20.63278425\n            ],\n            [\n              22.8515625,\n              20.63278425\n            ],\n            [\n              22.8515625,\n              20.30341752\n            ],\n            [\n              22.5,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              20.63278425\n            ],\n            [\n              22.5,\n              20.96143961\n            ],\n            [\n              22.8515625,\n              20.96143961\n            ],\n            [\n              22.8515625,\n              20.63278425\n            ],\n            [\n              22.5,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              20.96143961\n            ],\n            [\n              22.5,\n              21.28937436\n            ],\n            [\n              22.8515625,\n              21.28937436\n            ],\n            [\n              22.8515625,\n              20.96143961\n            ],\n            [\n              22.5,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              21.28937436\n            ],\n            [\n              22.5,\n              21.61657934\n            ],\n            [\n              22.8515625,\n              21.61657934\n            ],\n            [\n              22.8515625,\n              21.28937436\n            ],\n            [\n              22.5,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              12.55456353\n            ],\n            [\n              22.8515625,\n              12.89748918\n            ],\n            [\n              23.203125,\n              12.89748918\n            ],\n            [\n              23.203125,\n              12.55456353\n            ],\n            [\n              22.8515625,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              12.89748918\n            ],\n            [\n              22.8515625,\n              13.2399455\n            ],\n            [\n              23.203125,\n              13.2399455\n            ],\n            [\n              23.203125,\n              12.89748918\n            ],\n            [\n              22.8515625,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              13.2399455\n            ],\n            [\n              22.8515625,\n              13.5819209\n            ],\n            [\n              23.203125,\n              13.5819209\n            ],\n            [\n              23.203125,\n              13.2399455\n            ],\n            [\n              22.8515625,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              13.5819209\n            ],\n            [\n              22.8515625,\n              13.9234039\n            ],\n            [\n              23.203125,\n              13.9234039\n            ],\n            [\n              23.203125,\n              13.5819209\n            ],\n            [\n              22.8515625,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              13.9234039\n            ],\n            [\n              22.8515625,\n              14.26438309\n            ],\n            [\n              23.203125,\n              14.26438309\n            ],\n            [\n              23.203125,\n              13.9234039\n            ],\n            [\n              22.8515625,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              14.26438309\n            ],\n            [\n              22.8515625,\n              14.60484716\n            ],\n            [\n              23.203125,\n              14.60484716\n            ],\n            [\n              23.203125,\n              14.26438309\n            ],\n            [\n              22.8515625,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              14.60484716\n            ],\n            [\n              22.8515625,\n              14.94478488\n            ],\n            [\n              23.203125,\n              14.94478488\n            ],\n            [\n              23.203125,\n              14.60484716\n            ],\n            [\n              22.8515625,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              14.94478488\n            ],\n            [\n              22.8515625,\n              15.28418511\n            ],\n            [\n              23.203125,\n              15.28418511\n            ],\n            [\n              23.203125,\n              14.94478488\n            ],\n            [\n              22.8515625,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              15.28418511\n            ],\n            [\n              22.8515625,\n              15.62303683\n            ],\n            [\n              23.203125,\n              15.62303683\n            ],\n            [\n              23.203125,\n              15.28418511\n            ],\n            [\n              22.8515625,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              15.62303683\n            ],\n            [\n              22.8515625,\n              15.96132908\n            ],\n            [\n              23.203125,\n              15.96132908\n            ],\n            [\n              23.203125,\n              15.62303683\n            ],\n            [\n              22.8515625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              15.96132908\n            ],\n            [\n              22.8515625,\n              16.29905101\n            ],\n            [\n              23.203125,\n              16.29905101\n            ],\n            [\n              23.203125,\n              15.96132908\n            ],\n            [\n              22.8515625,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              16.29905101\n            ],\n            [\n              22.8515625,\n              16.63619188\n            ],\n            [\n              23.203125,\n              16.63619188\n            ],\n            [\n              23.203125,\n              16.29905101\n            ],\n            [\n              22.8515625,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              16.63619188\n            ],\n            [\n              22.8515625,\n              16.97274102\n            ],\n            [\n              23.203125,\n              16.97274102\n            ],\n            [\n              23.203125,\n              16.63619188\n            ],\n            [\n              22.8515625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              16.97274102\n            ],\n            [\n              22.8515625,\n              17.30868789\n            ],\n            [\n              23.203125,\n              17.30868789\n            ],\n            [\n              23.203125,\n              16.97274102\n            ],\n            [\n              22.8515625,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              17.30868789\n            ],\n            [\n              22.8515625,\n              17.64402203\n            ],\n            [\n              23.203125,\n              17.64402203\n            ],\n            [\n              23.203125,\n              17.30868789\n            ],\n            [\n              22.8515625,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              17.64402203\n            ],\n            [\n              22.8515625,\n              17.9787331\n            ],\n            [\n              23.203125,\n              17.9787331\n            ],\n            [\n              23.203125,\n              17.64402203\n            ],\n            [\n              22.8515625,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              17.9787331\n            ],\n            [\n              22.8515625,\n              18.31281085\n            ],\n            [\n              23.203125,\n              18.31281085\n            ],\n            [\n              23.203125,\n              17.9787331\n            ],\n            [\n              22.8515625,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              18.31281085\n            ],\n            [\n              22.8515625,\n              18.64624514\n            ],\n            [\n              23.203125,\n              18.64624514\n            ],\n            [\n              23.203125,\n              18.31281085\n            ],\n            [\n              22.8515625,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              18.64624514\n            ],\n            [\n              22.8515625,\n              18.97902595\n            ],\n            [\n              23.203125,\n              18.97902595\n            ],\n            [\n              23.203125,\n              18.64624514\n            ],\n            [\n              22.8515625,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              18.97902595\n            ],\n            [\n              22.8515625,\n              19.31114336\n            ],\n            [\n              23.203125,\n              19.31114336\n            ],\n            [\n              23.203125,\n              18.97902595\n            ],\n            [\n              22.8515625,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              19.31114336\n            ],\n            [\n              22.8515625,\n              19.64258753\n            ],\n            [\n              23.203125,\n              19.64258753\n            ],\n            [\n              23.203125,\n              19.31114336\n            ],\n            [\n              22.8515625,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              19.64258753\n            ],\n            [\n              22.8515625,\n              19.97334879\n            ],\n            [\n              23.203125,\n              19.97334879\n            ],\n            [\n              23.203125,\n              19.64258753\n            ],\n            [\n              22.8515625,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              19.97334879\n            ],\n            [\n              22.8515625,\n              20.30341752\n            ],\n            [\n              23.203125,\n              20.30341752\n            ],\n            [\n              23.203125,\n              19.97334879\n            ],\n            [\n              22.8515625,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              20.30341752\n            ],\n            [\n              22.8515625,\n              20.63278425\n            ],\n            [\n              23.203125,\n              20.63278425\n            ],\n            [\n              23.203125,\n              20.30341752\n            ],\n            [\n              22.8515625,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              20.63278425\n            ],\n            [\n              22.8515625,\n              20.96143961\n            ],\n            [\n              23.203125,\n              20.96143961\n            ],\n            [\n              23.203125,\n              20.63278425\n            ],\n            [\n              22.8515625,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              20.96143961\n            ],\n            [\n              22.8515625,\n              21.28937436\n            ],\n            [\n              23.203125,\n              21.28937436\n            ],\n            [\n              23.203125,\n              20.96143961\n            ],\n            [\n              22.8515625,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              21.28937436\n            ],\n            [\n              22.8515625,\n              21.61657934\n            ],\n            [\n              23.203125,\n              21.61657934\n            ],\n            [\n              23.203125,\n              21.28937436\n            ],\n            [\n              22.8515625,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              12.55456353\n            ],\n            [\n              23.203125,\n              12.89748918\n            ],\n            [\n              23.5546875,\n              12.89748918\n            ],\n            [\n              23.5546875,\n              12.55456353\n            ],\n            [\n              23.203125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              12.89748918\n            ],\n            [\n              23.203125,\n              13.2399455\n            ],\n            [\n              23.5546875,\n              13.2399455\n            ],\n            [\n              23.5546875,\n              12.89748918\n            ],\n            [\n              23.203125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              13.2399455\n            ],\n            [\n              23.203125,\n              13.5819209\n            ],\n            [\n              23.5546875,\n              13.5819209\n            ],\n            [\n              23.5546875,\n              13.2399455\n            ],\n            [\n              23.203125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              13.5819209\n            ],\n            [\n              23.203125,\n              13.9234039\n            ],\n            [\n              23.5546875,\n              13.9234039\n            ],\n            [\n              23.5546875,\n              13.5819209\n            ],\n            [\n              23.203125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              13.9234039\n            ],\n            [\n              23.203125,\n              14.26438309\n            ],\n            [\n              23.5546875,\n              14.26438309\n            ],\n            [\n              23.5546875,\n              13.9234039\n            ],\n            [\n              23.203125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              14.26438309\n            ],\n            [\n              23.203125,\n              14.60484716\n            ],\n            [\n              23.5546875,\n              14.60484716\n            ],\n            [\n              23.5546875,\n              14.26438309\n            ],\n            [\n              23.203125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              14.60484716\n            ],\n            [\n              23.203125,\n              14.94478488\n            ],\n            [\n              23.5546875,\n              14.94478488\n            ],\n            [\n              23.5546875,\n              14.60484716\n            ],\n            [\n              23.203125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              14.94478488\n            ],\n            [\n              23.203125,\n              15.28418511\n            ],\n            [\n              23.5546875,\n              15.28418511\n            ],\n            [\n              23.5546875,\n              14.94478488\n            ],\n            [\n              23.203125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              15.28418511\n            ],\n            [\n              23.203125,\n              15.62303683\n            ],\n            [\n              23.5546875,\n              15.62303683\n            ],\n            [\n              23.5546875,\n              15.28418511\n            ],\n            [\n              23.203125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              15.62303683\n            ],\n            [\n              23.203125,\n              15.96132908\n            ],\n            [\n              23.5546875,\n              15.96132908\n            ],\n            [\n              23.5546875,\n              15.62303683\n            ],\n            [\n              23.203125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              15.96132908\n            ],\n            [\n              23.203125,\n              16.29905101\n            ],\n            [\n              23.5546875,\n              16.29905101\n            ],\n            [\n              23.5546875,\n              15.96132908\n            ],\n            [\n              23.203125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              16.29905101\n            ],\n            [\n              23.203125,\n              16.63619188\n            ],\n            [\n              23.5546875,\n              16.63619188\n            ],\n            [\n              23.5546875,\n              16.29905101\n            ],\n            [\n              23.203125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              16.63619188\n            ],\n            [\n              23.203125,\n              16.97274102\n            ],\n            [\n              23.5546875,\n              16.97274102\n            ],\n            [\n              23.5546875,\n              16.63619188\n            ],\n            [\n              23.203125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              16.97274102\n            ],\n            [\n              23.203125,\n              17.30868789\n            ],\n            [\n              23.5546875,\n              17.30868789\n            ],\n            [\n              23.5546875,\n              16.97274102\n            ],\n            [\n              23.203125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              17.30868789\n            ],\n            [\n              23.203125,\n              17.64402203\n            ],\n            [\n              23.5546875,\n              17.64402203\n            ],\n            [\n              23.5546875,\n              17.30868789\n            ],\n            [\n              23.203125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              17.64402203\n            ],\n            [\n              23.203125,\n              17.9787331\n            ],\n            [\n              23.5546875,\n              17.9787331\n            ],\n            [\n              23.5546875,\n              17.64402203\n            ],\n            [\n              23.203125,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              17.9787331\n            ],\n            [\n              23.203125,\n              18.31281085\n            ],\n            [\n              23.5546875,\n              18.31281085\n            ],\n            [\n              23.5546875,\n              17.9787331\n            ],\n            [\n              23.203125,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              18.31281085\n            ],\n            [\n              23.203125,\n              18.64624514\n            ],\n            [\n              23.5546875,\n              18.64624514\n            ],\n            [\n              23.5546875,\n              18.31281085\n            ],\n            [\n              23.203125,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              18.64624514\n            ],\n            [\n              23.203125,\n              18.97902595\n            ],\n            [\n              23.5546875,\n              18.97902595\n            ],\n            [\n              23.5546875,\n              18.64624514\n            ],\n            [\n              23.203125,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              18.97902595\n            ],\n            [\n              23.203125,\n              19.31114336\n            ],\n            [\n              23.5546875,\n              19.31114336\n            ],\n            [\n              23.5546875,\n              18.97902595\n            ],\n            [\n              23.203125,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              19.31114336\n            ],\n            [\n              23.203125,\n              19.64258753\n            ],\n            [\n              23.5546875,\n              19.64258753\n            ],\n            [\n              23.5546875,\n              19.31114336\n            ],\n            [\n              23.203125,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              19.64258753\n            ],\n            [\n              23.203125,\n              19.97334879\n            ],\n            [\n              23.5546875,\n              19.97334879\n            ],\n            [\n              23.5546875,\n              19.64258753\n            ],\n            [\n              23.203125,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              19.97334879\n            ],\n            [\n              23.203125,\n              20.30341752\n            ],\n            [\n              23.5546875,\n              20.30341752\n            ],\n            [\n              23.5546875,\n              19.97334879\n            ],\n            [\n              23.203125,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              20.30341752\n            ],\n            [\n              23.203125,\n              20.63278425\n            ],\n            [\n              23.5546875,\n              20.63278425\n            ],\n            [\n              23.5546875,\n              20.30341752\n            ],\n            [\n              23.203125,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              20.63278425\n            ],\n            [\n              23.203125,\n              20.96143961\n            ],\n            [\n              23.5546875,\n              20.96143961\n            ],\n            [\n              23.5546875,\n              20.63278425\n            ],\n            [\n              23.203125,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              20.96143961\n            ],\n            [\n              23.203125,\n              21.28937436\n            ],\n            [\n              23.5546875,\n              21.28937436\n            ],\n            [\n              23.5546875,\n              20.96143961\n            ],\n            [\n              23.203125,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              21.28937436\n            ],\n            [\n              23.203125,\n              21.61657934\n            ],\n            [\n              23.5546875,\n              21.61657934\n            ],\n            [\n              23.5546875,\n              21.28937436\n            ],\n            [\n              23.203125,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              12.55456353\n            ],\n            [\n              23.5546875,\n              12.89748918\n            ],\n            [\n              23.90625,\n              12.89748918\n            ],\n            [\n              23.90625,\n              12.55456353\n            ],\n            [\n              23.5546875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              12.89748918\n            ],\n            [\n              23.5546875,\n              13.2399455\n            ],\n            [\n              23.90625,\n              13.2399455\n            ],\n            [\n              23.90625,\n              12.89748918\n            ],\n            [\n              23.5546875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              13.2399455\n            ],\n            [\n              23.5546875,\n              13.5819209\n            ],\n            [\n              23.90625,\n              13.5819209\n            ],\n            [\n              23.90625,\n              13.2399455\n            ],\n            [\n              23.5546875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              13.5819209\n            ],\n            [\n              23.5546875,\n              13.9234039\n            ],\n            [\n              23.90625,\n              13.9234039\n            ],\n            [\n              23.90625,\n              13.5819209\n            ],\n            [\n              23.5546875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              13.9234039\n            ],\n            [\n              23.5546875,\n              14.26438309\n            ],\n            [\n              23.90625,\n              14.26438309\n            ],\n            [\n              23.90625,\n              13.9234039\n            ],\n            [\n              23.5546875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              14.26438309\n            ],\n            [\n              23.5546875,\n              14.60484716\n            ],\n            [\n              23.90625,\n              14.60484716\n            ],\n            [\n              23.90625,\n              14.26438309\n            ],\n            [\n              23.5546875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              14.60484716\n            ],\n            [\n              23.5546875,\n              14.94478488\n            ],\n            [\n              23.90625,\n              14.94478488\n            ],\n            [\n              23.90625,\n              14.60484716\n            ],\n            [\n              23.5546875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              14.94478488\n            ],\n            [\n              23.5546875,\n              15.28418511\n            ],\n            [\n              23.90625,\n              15.28418511\n            ],\n            [\n              23.90625,\n              14.94478488\n            ],\n            [\n              23.5546875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              15.28418511\n            ],\n            [\n              23.5546875,\n              15.62303683\n            ],\n            [\n              23.90625,\n              15.62303683\n            ],\n            [\n              23.90625,\n              15.28418511\n            ],\n            [\n              23.5546875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              15.62303683\n            ],\n            [\n              23.5546875,\n              15.96132908\n            ],\n            [\n              23.90625,\n              15.96132908\n            ],\n            [\n              23.90625,\n              15.62303683\n            ],\n            [\n              23.5546875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              15.96132908\n            ],\n            [\n              23.5546875,\n              16.29905101\n            ],\n            [\n              23.90625,\n              16.29905101\n            ],\n            [\n              23.90625,\n              15.96132908\n            ],\n            [\n              23.5546875,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              16.29905101\n            ],\n            [\n              23.5546875,\n              16.63619188\n            ],\n            [\n              23.90625,\n              16.63619188\n            ],\n            [\n              23.90625,\n              16.29905101\n            ],\n            [\n              23.5546875,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              16.63619188\n            ],\n            [\n              23.5546875,\n              16.97274102\n            ],\n            [\n              23.90625,\n              16.97274102\n            ],\n            [\n              23.90625,\n              16.63619188\n            ],\n            [\n              23.5546875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              16.97274102\n            ],\n            [\n              23.5546875,\n              17.30868789\n            ],\n            [\n              23.90625,\n              17.30868789\n            ],\n            [\n              23.90625,\n              16.97274102\n            ],\n            [\n              23.5546875,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              17.30868789\n            ],\n            [\n              23.5546875,\n              17.64402203\n            ],\n            [\n              23.90625,\n              17.64402203\n            ],\n            [\n              23.90625,\n              17.30868789\n            ],\n            [\n              23.5546875,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              17.64402203\n            ],\n            [\n              23.5546875,\n              17.9787331\n            ],\n            [\n              23.90625,\n              17.9787331\n            ],\n            [\n              23.90625,\n              17.64402203\n            ],\n            [\n              23.5546875,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              17.9787331\n            ],\n            [\n              23.5546875,\n              18.31281085\n            ],\n            [\n              23.90625,\n              18.31281085\n            ],\n            [\n              23.90625,\n              17.9787331\n            ],\n            [\n              23.5546875,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              18.31281085\n            ],\n            [\n              23.5546875,\n              18.64624514\n            ],\n            [\n              23.90625,\n              18.64624514\n            ],\n            [\n              23.90625,\n              18.31281085\n            ],\n            [\n              23.5546875,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              18.64624514\n            ],\n            [\n              23.5546875,\n              18.97902595\n            ],\n            [\n              23.90625,\n              18.97902595\n            ],\n            [\n              23.90625,\n              18.64624514\n            ],\n            [\n              23.5546875,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              18.97902595\n            ],\n            [\n              23.5546875,\n              19.31114336\n            ],\n            [\n              23.90625,\n              19.31114336\n            ],\n            [\n              23.90625,\n              18.97902595\n            ],\n            [\n              23.5546875,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              19.31114336\n            ],\n            [\n              23.5546875,\n              19.64258753\n            ],\n            [\n              23.90625,\n              19.64258753\n            ],\n            [\n              23.90625,\n              19.31114336\n            ],\n            [\n              23.5546875,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              19.64258753\n            ],\n            [\n              23.5546875,\n              19.97334879\n            ],\n            [\n              23.90625,\n              19.97334879\n            ],\n            [\n              23.90625,\n              19.64258753\n            ],\n            [\n              23.5546875,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              19.97334879\n            ],\n            [\n              23.5546875,\n              20.30341752\n            ],\n            [\n              23.90625,\n              20.30341752\n            ],\n            [\n              23.90625,\n              19.97334879\n            ],\n            [\n              23.5546875,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              20.30341752\n            ],\n            [\n              23.5546875,\n              20.63278425\n            ],\n            [\n              23.90625,\n              20.63278425\n            ],\n            [\n              23.90625,\n              20.30341752\n            ],\n            [\n              23.5546875,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              20.63278425\n            ],\n            [\n              23.5546875,\n              20.96143961\n            ],\n            [\n              23.90625,\n              20.96143961\n            ],\n            [\n              23.90625,\n              20.63278425\n            ],\n            [\n              23.5546875,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              20.96143961\n            ],\n            [\n              23.5546875,\n              21.28937436\n            ],\n            [\n              23.90625,\n              21.28937436\n            ],\n            [\n              23.90625,\n              20.96143961\n            ],\n            [\n              23.5546875,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              21.28937436\n            ],\n            [\n              23.5546875,\n              21.61657934\n            ],\n            [\n              23.90625,\n              21.61657934\n            ],\n            [\n              23.90625,\n              21.28937436\n            ],\n            [\n              23.5546875,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              12.55456353\n            ],\n            [\n              23.90625,\n              12.89748918\n            ],\n            [\n              24.2578125,\n              12.89748918\n            ],\n            [\n              24.2578125,\n              12.55456353\n            ],\n            [\n              23.90625,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              12.89748918\n            ],\n            [\n              23.90625,\n              13.2399455\n            ],\n            [\n              24.2578125,\n              13.2399455\n            ],\n            [\n              24.2578125,\n              12.89748918\n            ],\n            [\n              23.90625,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              13.2399455\n            ],\n            [\n              23.90625,\n              13.5819209\n            ],\n            [\n              24.2578125,\n              13.5819209\n            ],\n            [\n              24.2578125,\n              13.2399455\n            ],\n            [\n              23.90625,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              13.5819209\n            ],\n            [\n              23.90625,\n              13.9234039\n            ],\n            [\n              24.2578125,\n              13.9234039\n            ],\n            [\n              24.2578125,\n              13.5819209\n            ],\n            [\n              23.90625,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              13.9234039\n            ],\n            [\n              23.90625,\n              14.26438309\n            ],\n            [\n              24.2578125,\n              14.26438309\n            ],\n            [\n              24.2578125,\n              13.9234039\n            ],\n            [\n              23.90625,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              14.26438309\n            ],\n            [\n              23.90625,\n              14.60484716\n            ],\n            [\n              24.2578125,\n              14.60484716\n            ],\n            [\n              24.2578125,\n              14.26438309\n            ],\n            [\n              23.90625,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              14.60484716\n            ],\n            [\n              23.90625,\n              14.94478488\n            ],\n            [\n              24.2578125,\n              14.94478488\n            ],\n            [\n              24.2578125,\n              14.60484716\n            ],\n            [\n              23.90625,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              14.94478488\n            ],\n            [\n              23.90625,\n              15.28418511\n            ],\n            [\n              24.2578125,\n              15.28418511\n            ],\n            [\n              24.2578125,\n              14.94478488\n            ],\n            [\n              23.90625,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              15.28418511\n            ],\n            [\n              23.90625,\n              15.62303683\n            ],\n            [\n              24.2578125,\n              15.62303683\n            ],\n            [\n              24.2578125,\n              15.28418511\n            ],\n            [\n              23.90625,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              15.62303683\n            ],\n            [\n              23.90625,\n              15.96132908\n            ],\n            [\n              24.2578125,\n              15.96132908\n            ],\n            [\n              24.2578125,\n              15.62303683\n            ],\n            [\n              23.90625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              15.96132908\n            ],\n            [\n              23.90625,\n              16.29905101\n            ],\n            [\n              24.2578125,\n              16.29905101\n            ],\n            [\n              24.2578125,\n              15.96132908\n            ],\n            [\n              23.90625,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              16.29905101\n            ],\n            [\n              23.90625,\n              16.63619188\n            ],\n            [\n              24.2578125,\n              16.63619188\n            ],\n            [\n              24.2578125,\n              16.29905101\n            ],\n            [\n              23.90625,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              16.63619188\n            ],\n            [\n              23.90625,\n              16.97274102\n            ],\n            [\n              24.2578125,\n              16.97274102\n            ],\n            [\n              24.2578125,\n              16.63619188\n            ],\n            [\n              23.90625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              16.97274102\n            ],\n            [\n              23.90625,\n              17.30868789\n            ],\n            [\n              24.2578125,\n              17.30868789\n            ],\n            [\n              24.2578125,\n              16.97274102\n            ],\n            [\n              23.90625,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              17.30868789\n            ],\n            [\n              23.90625,\n              17.64402203\n            ],\n            [\n              24.2578125,\n              17.64402203\n            ],\n            [\n              24.2578125,\n              17.30868789\n            ],\n            [\n              23.90625,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              17.64402203\n            ],\n            [\n              23.90625,\n              17.9787331\n            ],\n            [\n              24.2578125,\n              17.9787331\n            ],\n            [\n              24.2578125,\n              17.64402203\n            ],\n            [\n              23.90625,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              17.9787331\n            ],\n            [\n              23.90625,\n              18.31281085\n            ],\n            [\n              24.2578125,\n              18.31281085\n            ],\n            [\n              24.2578125,\n              17.9787331\n            ],\n            [\n              23.90625,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              18.31281085\n            ],\n            [\n              23.90625,\n              18.64624514\n            ],\n            [\n              24.2578125,\n              18.64624514\n            ],\n            [\n              24.2578125,\n              18.31281085\n            ],\n            [\n              23.90625,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              18.64624514\n            ],\n            [\n              23.90625,\n              18.97902595\n            ],\n            [\n              24.2578125,\n              18.97902595\n            ],\n            [\n              24.2578125,\n              18.64624514\n            ],\n            [\n              23.90625,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              18.97902595\n            ],\n            [\n              23.90625,\n              19.31114336\n            ],\n            [\n              24.2578125,\n              19.31114336\n            ],\n            [\n              24.2578125,\n              18.97902595\n            ],\n            [\n              23.90625,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              19.31114336\n            ],\n            [\n              23.90625,\n              19.64258753\n            ],\n            [\n              24.2578125,\n              19.64258753\n            ],\n            [\n              24.2578125,\n              19.31114336\n            ],\n            [\n              23.90625,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              19.64258753\n            ],\n            [\n              23.90625,\n              19.97334879\n            ],\n            [\n              24.2578125,\n              19.97334879\n            ],\n            [\n              24.2578125,\n              19.64258753\n            ],\n            [\n              23.90625,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              19.97334879\n            ],\n            [\n              23.90625,\n              20.30341752\n            ],\n            [\n              24.2578125,\n              20.30341752\n            ],\n            [\n              24.2578125,\n              19.97334879\n            ],\n            [\n              23.90625,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              20.30341752\n            ],\n            [\n              23.90625,\n              20.63278425\n            ],\n            [\n              24.2578125,\n              20.63278425\n            ],\n            [\n              24.2578125,\n              20.30341752\n            ],\n            [\n              23.90625,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              20.63278425\n            ],\n            [\n              23.90625,\n              20.96143961\n            ],\n            [\n              24.2578125,\n              20.96143961\n            ],\n            [\n              24.2578125,\n              20.63278425\n            ],\n            [\n              23.90625,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              20.96143961\n            ],\n            [\n              23.90625,\n              21.28937436\n            ],\n            [\n              24.2578125,\n              21.28937436\n            ],\n            [\n              24.2578125,\n              20.96143961\n            ],\n            [\n              23.90625,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              21.28937436\n            ],\n            [\n              23.90625,\n              21.61657934\n            ],\n            [\n              24.2578125,\n              21.61657934\n            ],\n            [\n              24.2578125,\n              21.28937436\n            ],\n            [\n              23.90625,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              12.55456353\n            ],\n            [\n              24.2578125,\n              12.89748918\n            ],\n            [\n              24.609375,\n              12.89748918\n            ],\n            [\n              24.609375,\n              12.55456353\n            ],\n            [\n              24.2578125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              12.89748918\n            ],\n            [\n              24.2578125,\n              13.2399455\n            ],\n            [\n              24.609375,\n              13.2399455\n            ],\n            [\n              24.609375,\n              12.89748918\n            ],\n            [\n              24.2578125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              13.2399455\n            ],\n            [\n              24.2578125,\n              13.5819209\n            ],\n            [\n              24.609375,\n              13.5819209\n            ],\n            [\n              24.609375,\n              13.2399455\n            ],\n            [\n              24.2578125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              13.5819209\n            ],\n            [\n              24.2578125,\n              13.9234039\n            ],\n            [\n              24.609375,\n              13.9234039\n            ],\n            [\n              24.609375,\n              13.5819209\n            ],\n            [\n              24.2578125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              13.9234039\n            ],\n            [\n              24.2578125,\n              14.26438309\n            ],\n            [\n              24.609375,\n              14.26438309\n            ],\n            [\n              24.609375,\n              13.9234039\n            ],\n            [\n              24.2578125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              14.26438309\n            ],\n            [\n              24.2578125,\n              14.60484716\n            ],\n            [\n              24.609375,\n              14.60484716\n            ],\n            [\n              24.609375,\n              14.26438309\n            ],\n            [\n              24.2578125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              14.60484716\n            ],\n            [\n              24.2578125,\n              14.94478488\n            ],\n            [\n              24.609375,\n              14.94478488\n            ],\n            [\n              24.609375,\n              14.60484716\n            ],\n            [\n              24.2578125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              14.94478488\n            ],\n            [\n              24.2578125,\n              15.28418511\n            ],\n            [\n              24.609375,\n              15.28418511\n            ],\n            [\n              24.609375,\n              14.94478488\n            ],\n            [\n              24.2578125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              15.28418511\n            ],\n            [\n              24.2578125,\n              15.62303683\n            ],\n            [\n              24.609375,\n              15.62303683\n            ],\n            [\n              24.609375,\n              15.28418511\n            ],\n            [\n              24.2578125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              15.62303683\n            ],\n            [\n              24.2578125,\n              15.96132908\n            ],\n            [\n              24.609375,\n              15.96132908\n            ],\n            [\n              24.609375,\n              15.62303683\n            ],\n            [\n              24.2578125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              15.96132908\n            ],\n            [\n              24.2578125,\n              16.29905101\n            ],\n            [\n              24.609375,\n              16.29905101\n            ],\n            [\n              24.609375,\n              15.96132908\n            ],\n            [\n              24.2578125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              16.29905101\n            ],\n            [\n              24.2578125,\n              16.63619188\n            ],\n            [\n              24.609375,\n              16.63619188\n            ],\n            [\n              24.609375,\n              16.29905101\n            ],\n            [\n              24.2578125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              16.63619188\n            ],\n            [\n              24.2578125,\n              16.97274102\n            ],\n            [\n              24.609375,\n              16.97274102\n            ],\n            [\n              24.609375,\n              16.63619188\n            ],\n            [\n              24.2578125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              16.97274102\n            ],\n            [\n              24.2578125,\n              17.30868789\n            ],\n            [\n              24.609375,\n              17.30868789\n            ],\n            [\n              24.609375,\n              16.97274102\n            ],\n            [\n              24.2578125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              17.30868789\n            ],\n            [\n              24.2578125,\n              17.64402203\n            ],\n            [\n              24.609375,\n              17.64402203\n            ],\n            [\n              24.609375,\n              17.30868789\n            ],\n            [\n              24.2578125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              17.64402203\n            ],\n            [\n              24.2578125,\n              17.9787331\n            ],\n            [\n              24.609375,\n              17.9787331\n            ],\n            [\n              24.609375,\n              17.64402203\n            ],\n            [\n              24.2578125,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              17.9787331\n            ],\n            [\n              24.2578125,\n              18.31281085\n            ],\n            [\n              24.609375,\n              18.31281085\n            ],\n            [\n              24.609375,\n              17.9787331\n            ],\n            [\n              24.2578125,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              18.31281085\n            ],\n            [\n              24.2578125,\n              18.64624514\n            ],\n            [\n              24.609375,\n              18.64624514\n            ],\n            [\n              24.609375,\n              18.31281085\n            ],\n            [\n              24.2578125,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              18.64624514\n            ],\n            [\n              24.2578125,\n              18.97902595\n            ],\n            [\n              24.609375,\n              18.97902595\n            ],\n            [\n              24.609375,\n              18.64624514\n            ],\n            [\n              24.2578125,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              18.97902595\n            ],\n            [\n              24.2578125,\n              19.31114336\n            ],\n            [\n              24.609375,\n              19.31114336\n            ],\n            [\n              24.609375,\n              18.97902595\n            ],\n            [\n              24.2578125,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              19.31114336\n            ],\n            [\n              24.2578125,\n              19.64258753\n            ],\n            [\n              24.609375,\n              19.64258753\n            ],\n            [\n              24.609375,\n              19.31114336\n            ],\n            [\n              24.2578125,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              19.64258753\n            ],\n            [\n              24.2578125,\n              19.97334879\n            ],\n            [\n              24.609375,\n              19.97334879\n            ],\n            [\n              24.609375,\n              19.64258753\n            ],\n            [\n              24.2578125,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              19.97334879\n            ],\n            [\n              24.2578125,\n              20.30341752\n            ],\n            [\n              24.609375,\n              20.30341752\n            ],\n            [\n              24.609375,\n              19.97334879\n            ],\n            [\n              24.2578125,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              20.30341752\n            ],\n            [\n              24.2578125,\n              20.63278425\n            ],\n            [\n              24.609375,\n              20.63278425\n            ],\n            [\n              24.609375,\n              20.30341752\n            ],\n            [\n              24.2578125,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              20.63278425\n            ],\n            [\n              24.2578125,\n              20.96143961\n            ],\n            [\n              24.609375,\n              20.96143961\n            ],\n            [\n              24.609375,\n              20.63278425\n            ],\n            [\n              24.2578125,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              20.96143961\n            ],\n            [\n              24.2578125,\n              21.28937436\n            ],\n            [\n              24.609375,\n              21.28937436\n            ],\n            [\n              24.609375,\n              20.96143961\n            ],\n            [\n              24.2578125,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              21.28937436\n            ],\n            [\n              24.2578125,\n              21.61657934\n            ],\n            [\n              24.609375,\n              21.61657934\n            ],\n            [\n              24.609375,\n              21.28937436\n            ],\n            [\n              24.2578125,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              12.55456353\n            ],\n            [\n              24.609375,\n              12.89748918\n            ],\n            [\n              24.9609375,\n              12.89748918\n            ],\n            [\n              24.9609375,\n              12.55456353\n            ],\n            [\n              24.609375,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              12.89748918\n            ],\n            [\n              24.609375,\n              13.2399455\n            ],\n            [\n              24.9609375,\n              13.2399455\n            ],\n            [\n              24.9609375,\n              12.89748918\n            ],\n            [\n              24.609375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              13.2399455\n            ],\n            [\n              24.609375,\n              13.5819209\n            ],\n            [\n              24.9609375,\n              13.5819209\n            ],\n            [\n              24.9609375,\n              13.2399455\n            ],\n            [\n              24.609375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              13.5819209\n            ],\n            [\n              24.609375,\n              13.9234039\n            ],\n            [\n              24.9609375,\n              13.9234039\n            ],\n            [\n              24.9609375,\n              13.5819209\n            ],\n            [\n              24.609375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              13.9234039\n            ],\n            [\n              24.609375,\n              14.26438309\n            ],\n            [\n              24.9609375,\n              14.26438309\n            ],\n            [\n              24.9609375,\n              13.9234039\n            ],\n            [\n              24.609375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              14.26438309\n            ],\n            [\n              24.609375,\n              14.60484716\n            ],\n            [\n              24.9609375,\n              14.60484716\n            ],\n            [\n              24.9609375,\n              14.26438309\n            ],\n            [\n              24.609375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              14.60484716\n            ],\n            [\n              24.609375,\n              14.94478488\n            ],\n            [\n              24.9609375,\n              14.94478488\n            ],\n            [\n              24.9609375,\n              14.60484716\n            ],\n            [\n              24.609375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              14.94478488\n            ],\n            [\n              24.609375,\n              15.28418511\n            ],\n            [\n              24.9609375,\n              15.28418511\n            ],\n            [\n              24.9609375,\n              14.94478488\n            ],\n            [\n              24.609375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              15.28418511\n            ],\n            [\n              24.609375,\n              15.62303683\n            ],\n            [\n              24.9609375,\n              15.62303683\n            ],\n            [\n              24.9609375,\n              15.28418511\n            ],\n            [\n              24.609375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              15.62303683\n            ],\n            [\n              24.609375,\n              15.96132908\n            ],\n            [\n              24.9609375,\n              15.96132908\n            ],\n            [\n              24.9609375,\n              15.62303683\n            ],\n            [\n              24.609375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              15.96132908\n            ],\n            [\n              24.609375,\n              16.29905101\n            ],\n            [\n              24.9609375,\n              16.29905101\n            ],\n            [\n              24.9609375,\n              15.96132908\n            ],\n            [\n              24.609375,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              16.29905101\n            ],\n            [\n              24.609375,\n              16.63619188\n            ],\n            [\n              24.9609375,\n              16.63619188\n            ],\n            [\n              24.9609375,\n              16.29905101\n            ],\n            [\n              24.609375,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              16.63619188\n            ],\n            [\n              24.609375,\n              16.97274102\n            ],\n            [\n              24.9609375,\n              16.97274102\n            ],\n            [\n              24.9609375,\n              16.63619188\n            ],\n            [\n              24.609375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              16.97274102\n            ],\n            [\n              24.609375,\n              17.30868789\n            ],\n            [\n              24.9609375,\n              17.30868789\n            ],\n            [\n              24.9609375,\n              16.97274102\n            ],\n            [\n              24.609375,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              17.30868789\n            ],\n            [\n              24.609375,\n              17.64402203\n            ],\n            [\n              24.9609375,\n              17.64402203\n            ],\n            [\n              24.9609375,\n              17.30868789\n            ],\n            [\n              24.609375,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              17.64402203\n            ],\n            [\n              24.609375,\n              17.9787331\n            ],\n            [\n              24.9609375,\n              17.9787331\n            ],\n            [\n              24.9609375,\n              17.64402203\n            ],\n            [\n              24.609375,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              17.9787331\n            ],\n            [\n              24.609375,\n              18.31281085\n            ],\n            [\n              24.9609375,\n              18.31281085\n            ],\n            [\n              24.9609375,\n              17.9787331\n            ],\n            [\n              24.609375,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              18.31281085\n            ],\n            [\n              24.609375,\n              18.64624514\n            ],\n            [\n              24.9609375,\n              18.64624514\n            ],\n            [\n              24.9609375,\n              18.31281085\n            ],\n            [\n              24.609375,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              18.64624514\n            ],\n            [\n              24.609375,\n              18.97902595\n            ],\n            [\n              24.9609375,\n              18.97902595\n            ],\n            [\n              24.9609375,\n              18.64624514\n            ],\n            [\n              24.609375,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              18.97902595\n            ],\n            [\n              24.609375,\n              19.31114336\n            ],\n            [\n              24.9609375,\n              19.31114336\n            ],\n            [\n              24.9609375,\n              18.97902595\n            ],\n            [\n              24.609375,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              19.31114336\n            ],\n            [\n              24.609375,\n              19.64258753\n            ],\n            [\n              24.9609375,\n              19.64258753\n            ],\n            [\n              24.9609375,\n              19.31114336\n            ],\n            [\n              24.609375,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              19.64258753\n            ],\n            [\n              24.609375,\n              19.97334879\n            ],\n            [\n              24.9609375,\n              19.97334879\n            ],\n            [\n              24.9609375,\n              19.64258753\n            ],\n            [\n              24.609375,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              19.97334879\n            ],\n            [\n              24.609375,\n              20.30341752\n            ],\n            [\n              24.9609375,\n              20.30341752\n            ],\n            [\n              24.9609375,\n              19.97334879\n            ],\n            [\n              24.609375,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              20.30341752\n            ],\n            [\n              24.609375,\n              20.63278425\n            ],\n            [\n              24.9609375,\n              20.63278425\n            ],\n            [\n              24.9609375,\n              20.30341752\n            ],\n            [\n              24.609375,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              20.63278425\n            ],\n            [\n              24.609375,\n              20.96143961\n            ],\n            [\n              24.9609375,\n              20.96143961\n            ],\n            [\n              24.9609375,\n              20.63278425\n            ],\n            [\n              24.609375,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              20.96143961\n            ],\n            [\n              24.609375,\n              21.28937436\n            ],\n            [\n              24.9609375,\n              21.28937436\n            ],\n            [\n              24.9609375,\n              20.96143961\n            ],\n            [\n              24.609375,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              21.28937436\n            ],\n            [\n              24.609375,\n              21.61657934\n            ],\n            [\n              24.9609375,\n              21.61657934\n            ],\n            [\n              24.9609375,\n              21.28937436\n            ],\n            [\n              24.609375,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              12.55456353\n            ],\n            [\n              24.9609375,\n              12.89748918\n            ],\n            [\n              25.3125,\n              12.89748918\n            ],\n            [\n              25.3125,\n              12.55456353\n            ],\n            [\n              24.9609375,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              12.89748918\n            ],\n            [\n              24.9609375,\n              13.2399455\n            ],\n            [\n              25.3125,\n              13.2399455\n            ],\n            [\n              25.3125,\n              12.89748918\n            ],\n            [\n              24.9609375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              13.2399455\n            ],\n            [\n              24.9609375,\n              13.5819209\n            ],\n            [\n              25.3125,\n              13.5819209\n            ],\n            [\n              25.3125,\n              13.2399455\n            ],\n            [\n              24.9609375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              13.5819209\n            ],\n            [\n              24.9609375,\n              13.9234039\n            ],\n            [\n              25.3125,\n              13.9234039\n            ],\n            [\n              25.3125,\n              13.5819209\n            ],\n            [\n              24.9609375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              13.9234039\n            ],\n            [\n              24.9609375,\n              14.26438309\n            ],\n            [\n              25.3125,\n              14.26438309\n            ],\n            [\n              25.3125,\n              13.9234039\n            ],\n            [\n              24.9609375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              14.26438309\n            ],\n            [\n              24.9609375,\n              14.60484716\n            ],\n            [\n              25.3125,\n              14.60484716\n            ],\n            [\n              25.3125,\n              14.26438309\n            ],\n            [\n              24.9609375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              14.60484716\n            ],\n            [\n              24.9609375,\n              14.94478488\n            ],\n            [\n              25.3125,\n              14.94478488\n            ],\n            [\n              25.3125,\n              14.60484716\n            ],\n            [\n              24.9609375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              14.94478488\n            ],\n            [\n              24.9609375,\n              15.28418511\n            ],\n            [\n              25.3125,\n              15.28418511\n            ],\n            [\n              25.3125,\n              14.94478488\n            ],\n            [\n              24.9609375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              15.28418511\n            ],\n            [\n              24.9609375,\n              15.62303683\n            ],\n            [\n              25.3125,\n              15.62303683\n            ],\n            [\n              25.3125,\n              15.28418511\n            ],\n            [\n              24.9609375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              15.62303683\n            ],\n            [\n              24.9609375,\n              15.96132908\n            ],\n            [\n              25.3125,\n              15.96132908\n            ],\n            [\n              25.3125,\n              15.62303683\n            ],\n            [\n              24.9609375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              15.96132908\n            ],\n            [\n              24.9609375,\n              16.29905101\n            ],\n            [\n              25.3125,\n              16.29905101\n            ],\n            [\n              25.3125,\n              15.96132908\n            ],\n            [\n              24.9609375,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              16.29905101\n            ],\n            [\n              24.9609375,\n              16.63619188\n            ],\n            [\n              25.3125,\n              16.63619188\n            ],\n            [\n              25.3125,\n              16.29905101\n            ],\n            [\n              24.9609375,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              16.63619188\n            ],\n            [\n              24.9609375,\n              16.97274102\n            ],\n            [\n              25.3125,\n              16.97274102\n            ],\n            [\n              25.3125,\n              16.63619188\n            ],\n            [\n              24.9609375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              16.97274102\n            ],\n            [\n              24.9609375,\n              17.30868789\n            ],\n            [\n              25.3125,\n              17.30868789\n            ],\n            [\n              25.3125,\n              16.97274102\n            ],\n            [\n              24.9609375,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              17.30868789\n            ],\n            [\n              24.9609375,\n              17.64402203\n            ],\n            [\n              25.3125,\n              17.64402203\n            ],\n            [\n              25.3125,\n              17.30868789\n            ],\n            [\n              24.9609375,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              17.64402203\n            ],\n            [\n              24.9609375,\n              17.9787331\n            ],\n            [\n              25.3125,\n              17.9787331\n            ],\n            [\n              25.3125,\n              17.64402203\n            ],\n            [\n              24.9609375,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              17.9787331\n            ],\n            [\n              24.9609375,\n              18.31281085\n            ],\n            [\n              25.3125,\n              18.31281085\n            ],\n            [\n              25.3125,\n              17.9787331\n            ],\n            [\n              24.9609375,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              18.31281085\n            ],\n            [\n              24.9609375,\n              18.64624514\n            ],\n            [\n              25.3125,\n              18.64624514\n            ],\n            [\n              25.3125,\n              18.31281085\n            ],\n            [\n              24.9609375,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              18.64624514\n            ],\n            [\n              24.9609375,\n              18.97902595\n            ],\n            [\n              25.3125,\n              18.97902595\n            ],\n            [\n              25.3125,\n              18.64624514\n            ],\n            [\n              24.9609375,\n              18.64624514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              18.97902595\n            ],\n            [\n              24.9609375,\n              19.31114336\n            ],\n            [\n              25.3125,\n              19.31114336\n            ],\n            [\n              25.3125,\n              18.97902595\n            ],\n            [\n              24.9609375,\n              18.97902595\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              19.31114336\n            ],\n            [\n              24.9609375,\n              19.64258753\n            ],\n            [\n              25.3125,\n              19.64258753\n            ],\n            [\n              25.3125,\n              19.31114336\n            ],\n            [\n              24.9609375,\n              19.31114336\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              19.64258753\n            ],\n            [\n              24.9609375,\n              19.97334879\n            ],\n            [\n              25.3125,\n              19.97334879\n            ],\n            [\n              25.3125,\n              19.64258753\n            ],\n            [\n              24.9609375,\n              19.64258753\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              19.97334879\n            ],\n            [\n              24.9609375,\n              20.30341752\n            ],\n            [\n              25.3125,\n              20.30341752\n            ],\n            [\n              25.3125,\n              19.97334879\n            ],\n            [\n              24.9609375,\n              19.97334879\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              20.30341752\n            ],\n            [\n              24.9609375,\n              20.63278425\n            ],\n            [\n              25.3125,\n              20.63278425\n            ],\n            [\n              25.3125,\n              20.30341752\n            ],\n            [\n              24.9609375,\n              20.30341752\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              20.63278425\n            ],\n            [\n              24.9609375,\n              20.96143961\n            ],\n            [\n              25.3125,\n              20.96143961\n            ],\n            [\n              25.3125,\n              20.63278425\n            ],\n            [\n              24.9609375,\n              20.63278425\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              20.96143961\n            ],\n            [\n              24.9609375,\n              21.28937436\n            ],\n            [\n              25.3125,\n              21.28937436\n            ],\n            [\n              25.3125,\n              20.96143961\n            ],\n            [\n              24.9609375,\n              20.96143961\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              21.28937436\n            ],\n            [\n              24.9609375,\n              21.61657934\n            ],\n            [\n              25.3125,\n              21.61657934\n            ],\n            [\n              25.3125,\n              21.28937436\n            ],\n            [\n              24.9609375,\n              21.28937436\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.98291016,\n              21.39170473\n            ],\n            [\n              21.15966797,\n              21.41216223\n            ],\n            [\n              21.15966797,\n              17.60213912\n            ],\n            [\n              17.79785156,\n              17.60213912\n            ],\n            [\n              17.79785156,\n              15.15697371\n            ],\n            [\n              15.31494141,\n              15.15697371\n            ],\n            [\n              15.31494141,\n              12.5974545\n            ],\n            [\n              24.98291016,\n              12.5974545\n            ],\n            [\n              24.98291016,\n              21.39170473\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/road.geojson",
    "content": "{\n  \"type\": \"LineString\",\n  \"coordinates\": [\n    [\n      66.95291519165039,\n      39.66207259792365\n    ],\n    [\n      66.95137023925781,\n      39.658240178117005\n    ],\n    [\n      66.95102691650389,\n      39.653614560848446\n    ],\n    [\n      66.95308685302734,\n      39.64958341339568\n    ],\n    [\n      66.95669174194336,\n      39.64594857073592\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/russia.geojson",
    "content": "\n{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        28.30078125,\n        56.36525013685606\n      ],\n      [\n        30.05859375,\n        55.7765730186677\n      ],\n      [\n        32.34375,\n        53.5403073915002\n      ],\n      [\n        30.761718749999996,\n        53.12040528310657\n      ],\n      [\n        31.113281249999996,\n        52.16045455774706\n      ],\n      [\n        34.80468749999999,\n        52.16045455774706\n      ],\n      [\n        39.19921875,\n        49.83798245308484\n      ],\n      [\n        40.60546875,\n        49.83798245308484\n      ],\n      [\n        38.3203125,\n        47.98992166741417\n      ],\n      [\n        35.68359375,\n        43.58039085560786\n      ],\n      [\n        40.078125,\n        43.83452678223682\n      ],\n      [\n        43.59375,\n        43.83452678223682\n      ],\n      [\n        44.6484375,\n        42.553080288955826\n      ],\n      [\n        48.33984375,\n        41.11246878918086\n      ],\n      [\n        46.93359375,\n        44.96479793033104\n      ],\n      [\n        48.69140625,\n        46.437856895024204\n      ],\n      [\n        48.8671875,\n        47.754097979680026\n      ],\n      [\n        46.93359375,\n        50.17689812200107\n      ],\n      [\n        50.625,\n        51.39920565355378\n      ],\n      [\n        52.734375,\n        51.39920565355378\n      ],\n      [\n        55.01953125,\n        50.62507306341435\n      ],\n      [\n        59.0625,\n        50.958426723359935\n      ],\n      [\n        61.69921875,\n        50.958426723359935\n      ],\n      [\n        61.17187499999999,\n        51.6180165487737\n      ],\n      [\n        59.58984374999999,\n        52.16045455774706\n      ],\n      [\n        61.17187499999999,\n        53.330872983017066\n      ],\n      [\n        61.52343749999999,\n        54.265224078605655\n      ],\n      [\n        63.80859374999999,\n        54.265224078605655\n      ],\n      [\n        68.02734375,\n        55.178867663281984\n      ],\n      [\n        70.13671875,\n        55.27911529201561\n      ],\n      [\n        73.125,\n        53.330872983017066\n      ],\n      [\n        75.41015624999999,\n        54.16243396806779\n      ],\n      [\n        76.81640625,\n        53.74871079689897\n      ],\n      [\n        78.3984375,\n        52.05249047600099\n      ],\n      [\n        80.5078125,\n        51.17934297928927\n      ],\n      [\n        82.96875,\n        51.17934297928927\n      ],\n      [\n        85.078125,\n        49.03786794532644\n      ],\n      [\n        87.36328125,\n        49.724479188713005\n      ],\n      [\n        89.47265625,\n        49.724479188713005\n      ],\n      [\n        92.10937499999999,\n        50.28933925329178\n      ],\n      [\n        94.5703125,\n        50.28933925329178\n      ],\n      [\n        96.15234375,\n        50.28933925329178\n      ],\n      [\n        97.91015624999999,\n        49.724479188713005\n      ],\n      [\n        98.26171875,\n        51.28940590271679\n      ],\n      [\n        99.49218749999999,\n        52.26815737376817\n      ],\n      [\n        102.3046875,\n        50.958426723359935\n      ],\n      [\n        103.0078125,\n        49.95121990866204\n      ],\n      [\n        105.8203125,\n        50.84757295365389\n      ],\n      [\n        106.5234375,\n        49.83798245308484\n      ],\n      [\n        110.0390625,\n        49.83798245308484\n      ],\n      [\n        111.97265625,\n        49.49667452747045\n      ],\n      [\n        116.3671875,\n        50.28933925329178\n      ],\n      [\n        120.05859375,\n        51.6180165487737\n      ],\n      [\n        120.234375,\n        53.12040528310657\n      ],\n      [\n        122.87109375,\n        53.5403073915002\n      ],\n      [\n        126.21093749999999,\n        52.482780222078226\n      ],\n      [\n        126.91406249999999,\n        50.51342652633956\n      ],\n      [\n        130.78125,\n        48.45835188280866\n      ],\n      [\n        131.8359375,\n        47.635783590864854\n      ],\n      [\n        134.82421875,\n        48.45835188280866\n      ],\n      [\n        132.5390625,\n        45.9511496866914\n      ],\n      [\n        130.4296875,\n        44.715513732021364\n      ],\n      [\n        131.484375,\n        41.902277040963696\n      ],\n      [\n        133.76953125,\n        42.94033923363181\n      ],\n      [\n        141.15234374999997,\n        51.069016659603896\n      ],\n      [\n        140.2734375,\n        53.74871079689897\n      ],\n      [\n        136.0546875,\n        54.87660665410869\n      ],\n      [\n        137.98828125,\n        56.65622649350222\n      ],\n      [\n        140.625,\n        58.17070248348612\n      ],\n      [\n        142.20703125,\n        59.445075099047166\n      ],\n      [\n        145.8984375,\n        59.445075099047166\n      ],\n      [\n        149.0625,\n        59.712097173322924\n      ],\n      [\n        152.05078125,\n        59.265880628258095\n      ],\n      [\n        153.10546875,\n        59.085738569819505\n      ],\n      [\n        155.56640625,\n        59.085738569819505\n      ],\n      [\n        154.51171875,\n        59.712097173322924\n      ],\n      [\n        156.26953125,\n        61.10078883158897\n      ],\n      [\n        158.73046875,\n        61.938950426660604\n      ],\n      [\n        159.78515624999997,\n        61.60639637138628\n      ],\n      [\n        159.78515624999997,\n        60.930432202923335\n      ],\n      [\n        161.54296875,\n        60.930432202923335\n      ],\n      [\n        163.65234374999997,\n        62.431074232920906\n      ],\n      [\n        163.65234374999997,\n        61.270232790000634\n      ],\n      [\n        161.015625,\n        60.1524422143808\n      ],\n      [\n        158.02734375,\n        58.07787626787517\n      ],\n      [\n        155.56640625,\n        56.75272287205736\n      ],\n      [\n        155.390625,\n        55.37911044801047\n      ],\n      [\n        155.390625,\n        53.12040528310657\n      ],\n      [\n        156.62109374999997,\n        52.16045455774706\n      ],\n      [\n        156.796875,\n        51.6180165487737\n      ],\n      [\n        159.43359375,\n        53.014783245859206\n      ],\n      [\n        160.6640625,\n        54.470037612805754\n      ],\n      [\n        162.24609375,\n        55.47885346331034\n      ],\n      [\n        162.59765625,\n        57.040729838360875\n      ],\n      [\n        162.59765625,\n        58.35563036280967\n      ],\n      [\n        164.00390625,\n        59.712097173322924\n      ],\n      [\n        165.9375,\n        60.326947742998414\n      ],\n      [\n        167.6953125,\n        60.58696734225869\n      ],\n      [\n        170.15625,\n        60.1524422143808\n      ],\n      [\n        173.32031249999997,\n        61.60639637138628\n      ],\n      [\n        176.8359375,\n        62.67414334669093\n      ],\n      [\n        178.9453125,\n        62.59334083012024\n      ],\n      [\n        179.296875,\n        63.31268278043484\n      ],\n      [\n        176.48437499999997,\n        64.84893726357947\n      ],\n      [\n        179.82421875,\n        65.14611484756372\n      ],\n      [\n        180,\n        66.08936427047085\n      ],\n      [\n        182.8125,\n        65.58572002329473\n      ],\n      [\n        184.5703125,\n        64.84893726357947\n      ],\n      [\n        186.328125,\n        64.24459476798192\n      ],\n      [\n        187.91015625,\n        64.99793920061401\n      ],\n      [\n        189.4921875,\n        65.73062649311031\n      ],\n      [\n        190.546875,\n        66.58321725728175\n      ],\n      [\n        187.3828125,\n        67.06743335108298\n      ],\n      [\n        185.09765625,\n        67.06743335108298\n      ],\n      [\n        183.69140625,\n        68.07330474079025\n      ],\n      [\n        181.58203125,\n        68.78414378041504\n      ],\n      [\n        177.36328125,\n        69.47296854140573\n      ],\n      [\n        174.375,\n        69.77895177646758\n      ],\n      [\n        170.5078125,\n        69.96043926902489\n      ],\n      [\n        170.5078125,\n        69.2249968541159\n      ],\n      [\n        170.5078125,\n        68.78414378041504\n      ],\n      [\n        167.34375,\n        69.47296854140573\n      ],\n      [\n        165.234375,\n        69.47296854140573\n      ],\n      [\n        161.54296875,\n        69.65708627301174\n      ],\n      [\n        160.83984375,\n        69.16255790810501\n      ],\n      [\n        159.2578125,\n        69.83962194067463\n      ],\n      [\n        159.78515624999997,\n        70.55417853776078\n      ],\n      [\n        152.2265625,\n        71.13098770917023\n      ],\n      [\n        149.0625,\n        72.0739114882038\n      ],\n      [\n        145.72265625,\n        72.3424643905499\n      ],\n      [\n        140.9765625,\n        72.71190310803662\n      ],\n      [\n        139.04296875,\n        71.85622888185527\n      ],\n      [\n        134.47265625,\n        71.69129271863999\n      ],\n      [\n        130.95703125,\n        71.69129271863999\n      ],\n      [\n        129.0234375,\n        70.67088107015755\n      ],\n      [\n        126.91406249999999,\n        72.55449849665266\n      ],\n      [\n        126.73828125,\n        73.52839948765174\n      ],\n      [\n        123.57421875,\n        73.52839948765174\n      ],\n      [\n        122.16796875,\n        72.97118902284586\n      ],\n      [\n        120.41015624999999,\n        72.97118902284586\n      ],\n      [\n        118.47656249999999,\n        73.47848507889992\n      ],\n      [\n        113.203125,\n        73.82482034613932\n      ],\n      [\n        108.6328125,\n        73.52839948765174\n      ],\n      [\n        106.875,\n        73.72659470212253\n      ],\n      [\n        109.16015624999999,\n        74.35482803013984\n      ],\n      [\n        112.8515625,\n        75.00494000767517\n      ],\n      [\n        112.8515625,\n        76.10079606754579\n      ],\n      [\n        110.56640625,\n        76.59854506890699\n      ],\n      [\n        107.75390625,\n        76.59854506890699\n      ],\n      [\n        106.34765625,\n        77.07878389624943\n      ],\n      [\n        105.64453124999999,\n        77.57995914400348\n      ],\n      [\n        102.12890625,\n        77.57995914400348\n      ],\n      [\n        101.07421875,\n        76.9206135182968\n      ],\n      [\n        99.31640625,\n        76.18499546094715\n      ],\n      [\n        91.7578125,\n        75.88809074612949\n      ],\n      [\n        90.17578124999999,\n        75.36450565060709\n      ],\n      [\n        87.01171875,\n        74.59010800882325\n      ],\n      [\n        86.484375,\n        74.16408546675687\n      ],\n      [\n        86.30859375,\n        73.92246884621466\n      ],\n      [\n        83.84765625,\n        73.82482034613932\n      ],\n      [\n        78.92578124999999,\n        73.67726447634907\n      ],\n      [\n        80.33203125,\n        73.07384351277217\n      ],\n      [\n        80.85937499999999,\n        72.28906720017675\n      ],\n      [\n        82.96875,\n        71.91088787611528\n      ],\n      [\n        79.62890625,\n        71.91088787611528\n      ],\n      [\n        78.046875,\n        72.1279362810559\n      ],\n      [\n        75.05859375,\n        71.58053179556501\n      ],\n      [\n        72.421875,\n        71.63599288330609\n      ],\n      [\n        72.0703125,\n        72.60712040027555\n      ],\n      [\n        69.43359375,\n        72.71190310803662\n      ],\n      [\n        68.37890625,\n        71.63599288330609\n      ],\n      [\n        67.1484375,\n        70.61261423801925\n      ],\n      [\n        66.97265625,\n        69.2249968541159\n      ],\n      [\n        69.9609375,\n        68.78414378041504\n      ],\n      [\n        68.203125,\n        68.33437594128185\n      ],\n      [\n        64.3359375,\n        68.72044056989829\n      ],\n      [\n        63.28125,\n        69.65708627301174\n      ],\n      [\n        61.17187499999999,\n        69.65708627301174\n      ],\n      [\n        59.765625,\n        68.52823492039876\n      ],\n      [\n        55.8984375,\n        68.65655498475735\n      ],\n      [\n        51.15234375,\n        68.65655498475735\n      ],\n      [\n        47.98828124999999,\n        68.00757101804004\n      ],\n      [\n        47.109375,\n        67.13582938531948\n      ],\n      [\n        42.71484375,\n        67.06743335108298\n      ],\n      [\n        40.42968749999999,\n        65.58572002329473\n      ],\n      [\n        36.73828124999999,\n        64.92354174306496\n      ],\n      [\n        34.98046875,\n        65.44000165965534\n      ],\n      [\n        33.57421875,\n        66.65297740055279\n      ],\n      [\n        36.73828124999999,\n        66.16051056018838\n      ],\n      [\n        41.66015625,\n        66.58321725728175\n      ],\n      [\n        39.19921875,\n        67.47492238478702\n      ],\n      [\n        35.68359375,\n        68.13885164925573\n      ],\n      [\n        32.6953125,\n        69.2249968541159\n      ],\n      [\n        29.70703125,\n        69.41124235697256\n      ],\n      [\n        29.70703125,\n        68.46379955520322\n      ],\n      [\n        29.70703125,\n        64.62387720204691\n      ],\n      [\n        31.640625,\n        63.704722429433225\n      ],\n      [\n        30.234375,\n        61.438767493682825\n      ],\n      [\n        28.125,\n        60.23981116999893\n      ],\n      [\n        27.24609375,\n        58.17070248348612\n      ],\n      [\n        28.30078125,\n        56.36525013685606\n      ]\n    ]\n  ]\n}\n"
  },
  {
    "path": "test/fixtures/russia_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              48.92249926\n            ],\n            [\n              101.25,\n              52.48278022\n            ],\n            [\n              106.875,\n              52.48278022\n            ],\n            [\n              106.875,\n              48.92249926\n            ],\n            [\n              101.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              52.48278022\n            ],\n            [\n              101.25,\n              55.77657302\n            ],\n            [\n              106.875,\n              55.77657302\n            ],\n            [\n              106.875,\n              52.48278022\n            ],\n            [\n              101.25,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              55.77657302\n            ],\n            [\n              101.25,\n              58.81374172\n            ],\n            [\n              106.875,\n              58.81374172\n            ],\n            [\n              106.875,\n              55.77657302\n            ],\n            [\n              101.25,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              58.81374172\n            ],\n            [\n              101.25,\n              61.60639637\n            ],\n            [\n              106.875,\n              61.60639637\n            ],\n            [\n              106.875,\n              58.81374172\n            ],\n            [\n              101.25,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              61.60639637\n            ],\n            [\n              101.25,\n              64.1681069\n            ],\n            [\n              106.875,\n              64.1681069\n            ],\n            [\n              106.875,\n              61.60639637\n            ],\n            [\n              101.25,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              64.1681069\n            ],\n            [\n              101.25,\n              66.51326044\n            ],\n            [\n              106.875,\n              66.51326044\n            ],\n            [\n              106.875,\n              64.1681069\n            ],\n            [\n              101.25,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              66.51326044\n            ],\n            [\n              101.25,\n              68.65655498\n            ],\n            [\n              106.875,\n              68.65655498\n            ],\n            [\n              106.875,\n              66.51326044\n            ],\n            [\n              101.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              68.65655498\n            ],\n            [\n              101.25,\n              70.61261424\n            ],\n            [\n              106.875,\n              70.61261424\n            ],\n            [\n              106.875,\n              68.65655498\n            ],\n            [\n              101.25,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              70.61261424\n            ],\n            [\n              101.25,\n              72.39570571\n            ],\n            [\n              106.875,\n              72.39570571\n            ],\n            [\n              106.875,\n              70.61261424\n            ],\n            [\n              101.25,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              72.39570571\n            ],\n            [\n              101.25,\n              74.01954331\n            ],\n            [\n              106.875,\n              74.01954331\n            ],\n            [\n              106.875,\n              72.39570571\n            ],\n            [\n              101.25,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              74.01954331\n            ],\n            [\n              101.25,\n              75.49715732\n            ],\n            [\n              106.875,\n              75.49715732\n            ],\n            [\n              106.875,\n              74.01954331\n            ],\n            [\n              101.25,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              75.49715732\n            ],\n            [\n              101.25,\n              76.84081641\n            ],\n            [\n              106.875,\n              76.84081641\n            ],\n            [\n              106.875,\n              75.49715732\n            ],\n            [\n              101.25,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              76.84081641\n            ],\n            [\n              101.25,\n              78.06198919\n            ],\n            [\n              106.875,\n              78.06198919\n            ],\n            [\n              106.875,\n              76.84081641\n            ],\n            [\n              101.25,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              48.92249926\n            ],\n            [\n              106.875,\n              52.48278022\n            ],\n            [\n              112.5,\n              52.48278022\n            ],\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              106.875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              52.48278022\n            ],\n            [\n              106.875,\n              55.77657302\n            ],\n            [\n              112.5,\n              55.77657302\n            ],\n            [\n              112.5,\n              52.48278022\n            ],\n            [\n              106.875,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              55.77657302\n            ],\n            [\n              106.875,\n              58.81374172\n            ],\n            [\n              112.5,\n              58.81374172\n            ],\n            [\n              112.5,\n              55.77657302\n            ],\n            [\n              106.875,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              58.81374172\n            ],\n            [\n              106.875,\n              61.60639637\n            ],\n            [\n              112.5,\n              61.60639637\n            ],\n            [\n              112.5,\n              58.81374172\n            ],\n            [\n              106.875,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              61.60639637\n            ],\n            [\n              106.875,\n              64.1681069\n            ],\n            [\n              112.5,\n              64.1681069\n            ],\n            [\n              112.5,\n              61.60639637\n            ],\n            [\n              106.875,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              64.1681069\n            ],\n            [\n              106.875,\n              66.51326044\n            ],\n            [\n              112.5,\n              66.51326044\n            ],\n            [\n              112.5,\n              64.1681069\n            ],\n            [\n              106.875,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              66.51326044\n            ],\n            [\n              106.875,\n              68.65655498\n            ],\n            [\n              112.5,\n              68.65655498\n            ],\n            [\n              112.5,\n              66.51326044\n            ],\n            [\n              106.875,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              68.65655498\n            ],\n            [\n              106.875,\n              70.61261424\n            ],\n            [\n              112.5,\n              70.61261424\n            ],\n            [\n              112.5,\n              68.65655498\n            ],\n            [\n              106.875,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              70.61261424\n            ],\n            [\n              106.875,\n              72.39570571\n            ],\n            [\n              112.5,\n              72.39570571\n            ],\n            [\n              112.5,\n              70.61261424\n            ],\n            [\n              106.875,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              72.39570571\n            ],\n            [\n              106.875,\n              74.01954331\n            ],\n            [\n              112.5,\n              74.01954331\n            ],\n            [\n              112.5,\n              72.39570571\n            ],\n            [\n              106.875,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              74.01954331\n            ],\n            [\n              106.875,\n              75.49715732\n            ],\n            [\n              112.5,\n              75.49715732\n            ],\n            [\n              112.5,\n              74.01954331\n            ],\n            [\n              106.875,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              75.49715732\n            ],\n            [\n              106.875,\n              76.84081641\n            ],\n            [\n              112.5,\n              76.84081641\n            ],\n            [\n              112.5,\n              75.49715732\n            ],\n            [\n              106.875,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              76.84081641\n            ],\n            [\n              106.875,\n              78.06198919\n            ],\n            [\n              112.5,\n              78.06198919\n            ],\n            [\n              112.5,\n              76.84081641\n            ],\n            [\n              106.875,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              112.5,\n              52.48278022\n            ],\n            [\n              118.125,\n              52.48278022\n            ],\n            [\n              118.125,\n              48.92249926\n            ],\n            [\n              112.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              52.48278022\n            ],\n            [\n              112.5,\n              55.77657302\n            ],\n            [\n              118.125,\n              55.77657302\n            ],\n            [\n              118.125,\n              52.48278022\n            ],\n            [\n              112.5,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              55.77657302\n            ],\n            [\n              112.5,\n              58.81374172\n            ],\n            [\n              118.125,\n              58.81374172\n            ],\n            [\n              118.125,\n              55.77657302\n            ],\n            [\n              112.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              58.81374172\n            ],\n            [\n              112.5,\n              61.60639637\n            ],\n            [\n              118.125,\n              61.60639637\n            ],\n            [\n              118.125,\n              58.81374172\n            ],\n            [\n              112.5,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              61.60639637\n            ],\n            [\n              112.5,\n              64.1681069\n            ],\n            [\n              118.125,\n              64.1681069\n            ],\n            [\n              118.125,\n              61.60639637\n            ],\n            [\n              112.5,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              64.1681069\n            ],\n            [\n              112.5,\n              66.51326044\n            ],\n            [\n              118.125,\n              66.51326044\n            ],\n            [\n              118.125,\n              64.1681069\n            ],\n            [\n              112.5,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              66.51326044\n            ],\n            [\n              112.5,\n              68.65655498\n            ],\n            [\n              118.125,\n              68.65655498\n            ],\n            [\n              118.125,\n              66.51326044\n            ],\n            [\n              112.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              68.65655498\n            ],\n            [\n              112.5,\n              70.61261424\n            ],\n            [\n              118.125,\n              70.61261424\n            ],\n            [\n              118.125,\n              68.65655498\n            ],\n            [\n              112.5,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              70.61261424\n            ],\n            [\n              112.5,\n              72.39570571\n            ],\n            [\n              118.125,\n              72.39570571\n            ],\n            [\n              118.125,\n              70.61261424\n            ],\n            [\n              112.5,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              72.39570571\n            ],\n            [\n              112.5,\n              74.01954331\n            ],\n            [\n              118.125,\n              74.01954331\n            ],\n            [\n              118.125,\n              72.39570571\n            ],\n            [\n              112.5,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              74.01954331\n            ],\n            [\n              112.5,\n              75.49715732\n            ],\n            [\n              118.125,\n              75.49715732\n            ],\n            [\n              118.125,\n              74.01954331\n            ],\n            [\n              112.5,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              75.49715732\n            ],\n            [\n              112.5,\n              76.84081641\n            ],\n            [\n              118.125,\n              76.84081641\n            ],\n            [\n              118.125,\n              75.49715732\n            ],\n            [\n              112.5,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              48.92249926\n            ],\n            [\n              118.125,\n              52.48278022\n            ],\n            [\n              123.75,\n              52.48278022\n            ],\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              118.125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              52.48278022\n            ],\n            [\n              118.125,\n              55.77657302\n            ],\n            [\n              123.75,\n              55.77657302\n            ],\n            [\n              123.75,\n              52.48278022\n            ],\n            [\n              118.125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              55.77657302\n            ],\n            [\n              118.125,\n              58.81374172\n            ],\n            [\n              123.75,\n              58.81374172\n            ],\n            [\n              123.75,\n              55.77657302\n            ],\n            [\n              118.125,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              58.81374172\n            ],\n            [\n              118.125,\n              61.60639637\n            ],\n            [\n              123.75,\n              61.60639637\n            ],\n            [\n              123.75,\n              58.81374172\n            ],\n            [\n              118.125,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              61.60639637\n            ],\n            [\n              118.125,\n              64.1681069\n            ],\n            [\n              123.75,\n              64.1681069\n            ],\n            [\n              123.75,\n              61.60639637\n            ],\n            [\n              118.125,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              64.1681069\n            ],\n            [\n              118.125,\n              66.51326044\n            ],\n            [\n              123.75,\n              66.51326044\n            ],\n            [\n              123.75,\n              64.1681069\n            ],\n            [\n              118.125,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              66.51326044\n            ],\n            [\n              118.125,\n              68.65655498\n            ],\n            [\n              123.75,\n              68.65655498\n            ],\n            [\n              123.75,\n              66.51326044\n            ],\n            [\n              118.125,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              68.65655498\n            ],\n            [\n              118.125,\n              70.61261424\n            ],\n            [\n              123.75,\n              70.61261424\n            ],\n            [\n              123.75,\n              68.65655498\n            ],\n            [\n              118.125,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              70.61261424\n            ],\n            [\n              118.125,\n              72.39570571\n            ],\n            [\n              123.75,\n              72.39570571\n            ],\n            [\n              123.75,\n              70.61261424\n            ],\n            [\n              118.125,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              72.39570571\n            ],\n            [\n              118.125,\n              74.01954331\n            ],\n            [\n              123.75,\n              74.01954331\n            ],\n            [\n              123.75,\n              72.39570571\n            ],\n            [\n              118.125,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              123.75,\n              52.48278022\n            ],\n            [\n              129.375,\n              52.48278022\n            ],\n            [\n              129.375,\n              48.92249926\n            ],\n            [\n              123.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              52.48278022\n            ],\n            [\n              123.75,\n              55.77657302\n            ],\n            [\n              129.375,\n              55.77657302\n            ],\n            [\n              129.375,\n              52.48278022\n            ],\n            [\n              123.75,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              55.77657302\n            ],\n            [\n              123.75,\n              58.81374172\n            ],\n            [\n              129.375,\n              58.81374172\n            ],\n            [\n              129.375,\n              55.77657302\n            ],\n            [\n              123.75,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              58.81374172\n            ],\n            [\n              123.75,\n              61.60639637\n            ],\n            [\n              129.375,\n              61.60639637\n            ],\n            [\n              129.375,\n              58.81374172\n            ],\n            [\n              123.75,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              61.60639637\n            ],\n            [\n              123.75,\n              64.1681069\n            ],\n            [\n              129.375,\n              64.1681069\n            ],\n            [\n              129.375,\n              61.60639637\n            ],\n            [\n              123.75,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              64.1681069\n            ],\n            [\n              123.75,\n              66.51326044\n            ],\n            [\n              129.375,\n              66.51326044\n            ],\n            [\n              129.375,\n              64.1681069\n            ],\n            [\n              123.75,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              66.51326044\n            ],\n            [\n              123.75,\n              68.65655498\n            ],\n            [\n              129.375,\n              68.65655498\n            ],\n            [\n              129.375,\n              66.51326044\n            ],\n            [\n              123.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              68.65655498\n            ],\n            [\n              123.75,\n              70.61261424\n            ],\n            [\n              129.375,\n              70.61261424\n            ],\n            [\n              129.375,\n              68.65655498\n            ],\n            [\n              123.75,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              70.61261424\n            ],\n            [\n              123.75,\n              72.39570571\n            ],\n            [\n              129.375,\n              72.39570571\n            ],\n            [\n              129.375,\n              70.61261424\n            ],\n            [\n              123.75,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              72.39570571\n            ],\n            [\n              123.75,\n              74.01954331\n            ],\n            [\n              129.375,\n              74.01954331\n            ],\n            [\n              129.375,\n              72.39570571\n            ],\n            [\n              123.75,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              40.97989807\n            ],\n            [\n              129.375,\n              45.08903556\n            ],\n            [\n              135,\n              45.08903556\n            ],\n            [\n              135,\n              40.97989807\n            ],\n            [\n              129.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              45.08903556\n            ],\n            [\n              129.375,\n              48.92249926\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              135,\n              45.08903556\n            ],\n            [\n              129.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              48.92249926\n            ],\n            [\n              129.375,\n              52.48278022\n            ],\n            [\n              135,\n              52.48278022\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              129.375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              52.48278022\n            ],\n            [\n              129.375,\n              55.77657302\n            ],\n            [\n              135,\n              55.77657302\n            ],\n            [\n              135,\n              52.48278022\n            ],\n            [\n              129.375,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              55.77657302\n            ],\n            [\n              129.375,\n              58.81374172\n            ],\n            [\n              135,\n              58.81374172\n            ],\n            [\n              135,\n              55.77657302\n            ],\n            [\n              129.375,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              58.81374172\n            ],\n            [\n              129.375,\n              61.60639637\n            ],\n            [\n              135,\n              61.60639637\n            ],\n            [\n              135,\n              58.81374172\n            ],\n            [\n              129.375,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              61.60639637\n            ],\n            [\n              129.375,\n              64.1681069\n            ],\n            [\n              135,\n              64.1681069\n            ],\n            [\n              135,\n              61.60639637\n            ],\n            [\n              129.375,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              64.1681069\n            ],\n            [\n              129.375,\n              66.51326044\n            ],\n            [\n              135,\n              66.51326044\n            ],\n            [\n              135,\n              64.1681069\n            ],\n            [\n              129.375,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              66.51326044\n            ],\n            [\n              129.375,\n              68.65655498\n            ],\n            [\n              135,\n              68.65655498\n            ],\n            [\n              135,\n              66.51326044\n            ],\n            [\n              129.375,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              68.65655498\n            ],\n            [\n              129.375,\n              70.61261424\n            ],\n            [\n              135,\n              70.61261424\n            ],\n            [\n              135,\n              68.65655498\n            ],\n            [\n              129.375,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              70.61261424\n            ],\n            [\n              129.375,\n              72.39570571\n            ],\n            [\n              135,\n              72.39570571\n            ],\n            [\n              135,\n              70.61261424\n            ],\n            [\n              129.375,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              40.97989807\n            ],\n            [\n              135,\n              45.08903556\n            ],\n            [\n              140.625,\n              45.08903556\n            ],\n            [\n              140.625,\n              40.97989807\n            ],\n            [\n              135,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              45.08903556\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              140.625,\n              48.92249926\n            ],\n            [\n              140.625,\n              45.08903556\n            ],\n            [\n              135,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              48.92249926\n            ],\n            [\n              135,\n              52.48278022\n            ],\n            [\n              140.625,\n              52.48278022\n            ],\n            [\n              140.625,\n              48.92249926\n            ],\n            [\n              135,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              52.48278022\n            ],\n            [\n              135,\n              55.77657302\n            ],\n            [\n              140.625,\n              55.77657302\n            ],\n            [\n              140.625,\n              52.48278022\n            ],\n            [\n              135,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              55.77657302\n            ],\n            [\n              135,\n              58.81374172\n            ],\n            [\n              140.625,\n              58.81374172\n            ],\n            [\n              140.625,\n              55.77657302\n            ],\n            [\n              135,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              58.81374172\n            ],\n            [\n              135,\n              61.60639637\n            ],\n            [\n              140.625,\n              61.60639637\n            ],\n            [\n              140.625,\n              58.81374172\n            ],\n            [\n              135,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              61.60639637\n            ],\n            [\n              135,\n              64.1681069\n            ],\n            [\n              140.625,\n              64.1681069\n            ],\n            [\n              140.625,\n              61.60639637\n            ],\n            [\n              135,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              64.1681069\n            ],\n            [\n              135,\n              66.51326044\n            ],\n            [\n              140.625,\n              66.51326044\n            ],\n            [\n              140.625,\n              64.1681069\n            ],\n            [\n              135,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              66.51326044\n            ],\n            [\n              135,\n              68.65655498\n            ],\n            [\n              140.625,\n              68.65655498\n            ],\n            [\n              140.625,\n              66.51326044\n            ],\n            [\n              135,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              68.65655498\n            ],\n            [\n              135,\n              70.61261424\n            ],\n            [\n              140.625,\n              70.61261424\n            ],\n            [\n              140.625,\n              68.65655498\n            ],\n            [\n              135,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              70.61261424\n            ],\n            [\n              135,\n              72.39570571\n            ],\n            [\n              140.625,\n              72.39570571\n            ],\n            [\n              140.625,\n              70.61261424\n            ],\n            [\n              135,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              72.39570571\n            ],\n            [\n              135,\n              74.01954331\n            ],\n            [\n              140.625,\n              74.01954331\n            ],\n            [\n              140.625,\n              72.39570571\n            ],\n            [\n              135,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              48.92249926\n            ],\n            [\n              140.625,\n              52.48278022\n            ],\n            [\n              146.25,\n              52.48278022\n            ],\n            [\n              146.25,\n              48.92249926\n            ],\n            [\n              140.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              52.48278022\n            ],\n            [\n              140.625,\n              55.77657302\n            ],\n            [\n              146.25,\n              55.77657302\n            ],\n            [\n              146.25,\n              52.48278022\n            ],\n            [\n              140.625,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              55.77657302\n            ],\n            [\n              140.625,\n              58.81374172\n            ],\n            [\n              146.25,\n              58.81374172\n            ],\n            [\n              146.25,\n              55.77657302\n            ],\n            [\n              140.625,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              58.81374172\n            ],\n            [\n              140.625,\n              61.60639637\n            ],\n            [\n              146.25,\n              61.60639637\n            ],\n            [\n              146.25,\n              58.81374172\n            ],\n            [\n              140.625,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              61.60639637\n            ],\n            [\n              140.625,\n              64.1681069\n            ],\n            [\n              146.25,\n              64.1681069\n            ],\n            [\n              146.25,\n              61.60639637\n            ],\n            [\n              140.625,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              64.1681069\n            ],\n            [\n              140.625,\n              66.51326044\n            ],\n            [\n              146.25,\n              66.51326044\n            ],\n            [\n              146.25,\n              64.1681069\n            ],\n            [\n              140.625,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              66.51326044\n            ],\n            [\n              140.625,\n              68.65655498\n            ],\n            [\n              146.25,\n              68.65655498\n            ],\n            [\n              146.25,\n              66.51326044\n            ],\n            [\n              140.625,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              68.65655498\n            ],\n            [\n              140.625,\n              70.61261424\n            ],\n            [\n              146.25,\n              70.61261424\n            ],\n            [\n              146.25,\n              68.65655498\n            ],\n            [\n              140.625,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              70.61261424\n            ],\n            [\n              140.625,\n              72.39570571\n            ],\n            [\n              146.25,\n              72.39570571\n            ],\n            [\n              146.25,\n              70.61261424\n            ],\n            [\n              140.625,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              72.39570571\n            ],\n            [\n              140.625,\n              74.01954331\n            ],\n            [\n              146.25,\n              74.01954331\n            ],\n            [\n              146.25,\n              72.39570571\n            ],\n            [\n              140.625,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              58.81374172\n            ],\n            [\n              146.25,\n              61.60639637\n            ],\n            [\n              151.875,\n              61.60639637\n            ],\n            [\n              151.875,\n              58.81374172\n            ],\n            [\n              146.25,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              61.60639637\n            ],\n            [\n              146.25,\n              64.1681069\n            ],\n            [\n              151.875,\n              64.1681069\n            ],\n            [\n              151.875,\n              61.60639637\n            ],\n            [\n              146.25,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              64.1681069\n            ],\n            [\n              146.25,\n              66.51326044\n            ],\n            [\n              151.875,\n              66.51326044\n            ],\n            [\n              151.875,\n              64.1681069\n            ],\n            [\n              146.25,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              66.51326044\n            ],\n            [\n              146.25,\n              68.65655498\n            ],\n            [\n              151.875,\n              68.65655498\n            ],\n            [\n              151.875,\n              66.51326044\n            ],\n            [\n              146.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              68.65655498\n            ],\n            [\n              146.25,\n              70.61261424\n            ],\n            [\n              151.875,\n              70.61261424\n            ],\n            [\n              151.875,\n              68.65655498\n            ],\n            [\n              146.25,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              70.61261424\n            ],\n            [\n              146.25,\n              72.39570571\n            ],\n            [\n              151.875,\n              72.39570571\n            ],\n            [\n              151.875,\n              70.61261424\n            ],\n            [\n              146.25,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              48.92249926\n            ],\n            [\n              151.875,\n              52.48278022\n            ],\n            [\n              157.5,\n              52.48278022\n            ],\n            [\n              157.5,\n              48.92249926\n            ],\n            [\n              151.875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              52.48278022\n            ],\n            [\n              151.875,\n              55.77657302\n            ],\n            [\n              157.5,\n              55.77657302\n            ],\n            [\n              157.5,\n              52.48278022\n            ],\n            [\n              151.875,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              55.77657302\n            ],\n            [\n              151.875,\n              58.81374172\n            ],\n            [\n              157.5,\n              58.81374172\n            ],\n            [\n              157.5,\n              55.77657302\n            ],\n            [\n              151.875,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              58.81374172\n            ],\n            [\n              151.875,\n              61.60639637\n            ],\n            [\n              157.5,\n              61.60639637\n            ],\n            [\n              157.5,\n              58.81374172\n            ],\n            [\n              151.875,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              61.60639637\n            ],\n            [\n              151.875,\n              64.1681069\n            ],\n            [\n              157.5,\n              64.1681069\n            ],\n            [\n              157.5,\n              61.60639637\n            ],\n            [\n              151.875,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              64.1681069\n            ],\n            [\n              151.875,\n              66.51326044\n            ],\n            [\n              157.5,\n              66.51326044\n            ],\n            [\n              157.5,\n              64.1681069\n            ],\n            [\n              151.875,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              66.51326044\n            ],\n            [\n              151.875,\n              68.65655498\n            ],\n            [\n              157.5,\n              68.65655498\n            ],\n            [\n              157.5,\n              66.51326044\n            ],\n            [\n              151.875,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              68.65655498\n            ],\n            [\n              151.875,\n              70.61261424\n            ],\n            [\n              157.5,\n              70.61261424\n            ],\n            [\n              157.5,\n              68.65655498\n            ],\n            [\n              151.875,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              70.61261424\n            ],\n            [\n              151.875,\n              72.39570571\n            ],\n            [\n              157.5,\n              72.39570571\n            ],\n            [\n              157.5,\n              70.61261424\n            ],\n            [\n              151.875,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              48.92249926\n            ],\n            [\n              157.5,\n              52.48278022\n            ],\n            [\n              163.125,\n              52.48278022\n            ],\n            [\n              163.125,\n              48.92249926\n            ],\n            [\n              157.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              52.48278022\n            ],\n            [\n              157.5,\n              55.77657302\n            ],\n            [\n              163.125,\n              55.77657302\n            ],\n            [\n              163.125,\n              52.48278022\n            ],\n            [\n              157.5,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              55.77657302\n            ],\n            [\n              157.5,\n              58.81374172\n            ],\n            [\n              163.125,\n              58.81374172\n            ],\n            [\n              163.125,\n              55.77657302\n            ],\n            [\n              157.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              58.81374172\n            ],\n            [\n              157.5,\n              61.60639637\n            ],\n            [\n              163.125,\n              61.60639637\n            ],\n            [\n              163.125,\n              58.81374172\n            ],\n            [\n              157.5,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              61.60639637\n            ],\n            [\n              157.5,\n              64.1681069\n            ],\n            [\n              163.125,\n              64.1681069\n            ],\n            [\n              163.125,\n              61.60639637\n            ],\n            [\n              157.5,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              64.1681069\n            ],\n            [\n              157.5,\n              66.51326044\n            ],\n            [\n              163.125,\n              66.51326044\n            ],\n            [\n              163.125,\n              64.1681069\n            ],\n            [\n              157.5,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              66.51326044\n            ],\n            [\n              157.5,\n              68.65655498\n            ],\n            [\n              163.125,\n              68.65655498\n            ],\n            [\n              163.125,\n              66.51326044\n            ],\n            [\n              157.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              68.65655498\n            ],\n            [\n              157.5,\n              70.61261424\n            ],\n            [\n              163.125,\n              70.61261424\n            ],\n            [\n              163.125,\n              68.65655498\n            ],\n            [\n              157.5,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              70.61261424\n            ],\n            [\n              157.5,\n              72.39570571\n            ],\n            [\n              163.125,\n              72.39570571\n            ],\n            [\n              163.125,\n              70.61261424\n            ],\n            [\n              157.5,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              58.81374172\n            ],\n            [\n              163.125,\n              61.60639637\n            ],\n            [\n              168.75,\n              61.60639637\n            ],\n            [\n              168.75,\n              58.81374172\n            ],\n            [\n              163.125,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              61.60639637\n            ],\n            [\n              163.125,\n              64.1681069\n            ],\n            [\n              168.75,\n              64.1681069\n            ],\n            [\n              168.75,\n              61.60639637\n            ],\n            [\n              163.125,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              64.1681069\n            ],\n            [\n              163.125,\n              66.51326044\n            ],\n            [\n              168.75,\n              66.51326044\n            ],\n            [\n              168.75,\n              64.1681069\n            ],\n            [\n              163.125,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              66.51326044\n            ],\n            [\n              163.125,\n              68.65655498\n            ],\n            [\n              168.75,\n              68.65655498\n            ],\n            [\n              168.75,\n              66.51326044\n            ],\n            [\n              163.125,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              68.65655498\n            ],\n            [\n              163.125,\n              70.61261424\n            ],\n            [\n              168.75,\n              70.61261424\n            ],\n            [\n              168.75,\n              68.65655498\n            ],\n            [\n              163.125,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              58.81374172\n            ],\n            [\n              168.75,\n              61.60639637\n            ],\n            [\n              174.375,\n              61.60639637\n            ],\n            [\n              174.375,\n              58.81374172\n            ],\n            [\n              168.75,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              61.60639637\n            ],\n            [\n              168.75,\n              64.1681069\n            ],\n            [\n              174.375,\n              64.1681069\n            ],\n            [\n              174.375,\n              61.60639637\n            ],\n            [\n              168.75,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              64.1681069\n            ],\n            [\n              168.75,\n              66.51326044\n            ],\n            [\n              174.375,\n              66.51326044\n            ],\n            [\n              174.375,\n              64.1681069\n            ],\n            [\n              168.75,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              66.51326044\n            ],\n            [\n              168.75,\n              68.65655498\n            ],\n            [\n              174.375,\n              68.65655498\n            ],\n            [\n              174.375,\n              66.51326044\n            ],\n            [\n              168.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              68.65655498\n            ],\n            [\n              168.75,\n              70.61261424\n            ],\n            [\n              174.375,\n              70.61261424\n            ],\n            [\n              174.375,\n              68.65655498\n            ],\n            [\n              168.75,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              174.375,\n              61.60639637\n            ],\n            [\n              174.375,\n              64.1681069\n            ],\n            [\n              180,\n              64.1681069\n            ],\n            [\n              180,\n              61.60639637\n            ],\n            [\n              174.375,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              174.375,\n              64.1681069\n            ],\n            [\n              174.375,\n              66.51326044\n            ],\n            [\n              180,\n              66.51326044\n            ],\n            [\n              180,\n              64.1681069\n            ],\n            [\n              174.375,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              174.375,\n              66.51326044\n            ],\n            [\n              174.375,\n              68.65655498\n            ],\n            [\n              180,\n              68.65655498\n            ],\n            [\n              180,\n              66.51326044\n            ],\n            [\n              174.375,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              174.375,\n              68.65655498\n            ],\n            [\n              174.375,\n              70.61261424\n            ],\n            [\n              180,\n              70.61261424\n            ],\n            [\n              180,\n              68.65655498\n            ],\n            [\n              174.375,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              180,\n              64.1681069\n            ],\n            [\n              180,\n              66.51326044\n            ],\n            [\n              185.625,\n              66.51326044\n            ],\n            [\n              185.625,\n              64.1681069\n            ],\n            [\n              180,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              180,\n              66.51326044\n            ],\n            [\n              180,\n              68.65655498\n            ],\n            [\n              185.625,\n              68.65655498\n            ],\n            [\n              185.625,\n              66.51326044\n            ],\n            [\n              180,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              180,\n              68.65655498\n            ],\n            [\n              180,\n              70.61261424\n            ],\n            [\n              185.625,\n              70.61261424\n            ],\n            [\n              185.625,\n              68.65655498\n            ],\n            [\n              180,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              185.625,\n              64.1681069\n            ],\n            [\n              185.625,\n              66.51326044\n            ],\n            [\n              191.25,\n              66.51326044\n            ],\n            [\n              191.25,\n              64.1681069\n            ],\n            [\n              185.625,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              185.625,\n              66.51326044\n            ],\n            [\n              185.625,\n              68.65655498\n            ],\n            [\n              191.25,\n              68.65655498\n            ],\n            [\n              191.25,\n              66.51326044\n            ],\n            [\n              185.625,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              22.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              28.125,\n              61.60639637\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              22.5,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              33.75,\n              52.48278022\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              28.125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              33.75,\n              52.48278022\n            ],\n            [\n              28.125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              33.75,\n              58.81374172\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              28.125,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              28.125,\n              61.60639637\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              33.75,\n              58.81374172\n            ],\n            [\n              28.125,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              61.60639637\n            ],\n            [\n              28.125,\n              64.1681069\n            ],\n            [\n              33.75,\n              64.1681069\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              28.125,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              64.1681069\n            ],\n            [\n              28.125,\n              66.51326044\n            ],\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              33.75,\n              64.1681069\n            ],\n            [\n              28.125,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              66.51326044\n            ],\n            [\n              28.125,\n              68.65655498\n            ],\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              28.125,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              68.65655498\n            ],\n            [\n              28.125,\n              70.61261424\n            ],\n            [\n              33.75,\n              70.61261424\n            ],\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              28.125,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              33.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              39.375,\n              48.92249926\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              33.75,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              33.75,\n              52.48278022\n            ],\n            [\n              39.375,\n              52.48278022\n            ],\n            [\n              39.375,\n              48.92249926\n            ],\n            [\n              33.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              52.48278022\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              39.375,\n              55.77657302\n            ],\n            [\n              39.375,\n              52.48278022\n            ],\n            [\n              33.75,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              33.75,\n              58.81374172\n            ],\n            [\n              39.375,\n              58.81374172\n            ],\n            [\n              39.375,\n              55.77657302\n            ],\n            [\n              33.75,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              58.81374172\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              39.375,\n              61.60639637\n            ],\n            [\n              39.375,\n              58.81374172\n            ],\n            [\n              33.75,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              33.75,\n              64.1681069\n            ],\n            [\n              39.375,\n              64.1681069\n            ],\n            [\n              39.375,\n              61.60639637\n            ],\n            [\n              33.75,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              64.1681069\n            ],\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              39.375,\n              66.51326044\n            ],\n            [\n              39.375,\n              64.1681069\n            ],\n            [\n              33.75,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              39.375,\n              68.65655498\n            ],\n            [\n              39.375,\n              66.51326044\n            ],\n            [\n              33.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              33.75,\n              70.61261424\n            ],\n            [\n              39.375,\n              70.61261424\n            ],\n            [\n              39.375,\n              68.65655498\n            ],\n            [\n              33.75,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              39.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              39.375,\n              48.92249926\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              39.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              48.92249926\n            ],\n            [\n              39.375,\n              52.48278022\n            ],\n            [\n              45,\n              52.48278022\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              39.375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              52.48278022\n            ],\n            [\n              39.375,\n              55.77657302\n            ],\n            [\n              45,\n              55.77657302\n            ],\n            [\n              45,\n              52.48278022\n            ],\n            [\n              39.375,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              55.77657302\n            ],\n            [\n              39.375,\n              58.81374172\n            ],\n            [\n              45,\n              58.81374172\n            ],\n            [\n              45,\n              55.77657302\n            ],\n            [\n              39.375,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              58.81374172\n            ],\n            [\n              39.375,\n              61.60639637\n            ],\n            [\n              45,\n              61.60639637\n            ],\n            [\n              45,\n              58.81374172\n            ],\n            [\n              39.375,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              61.60639637\n            ],\n            [\n              39.375,\n              64.1681069\n            ],\n            [\n              45,\n              64.1681069\n            ],\n            [\n              45,\n              61.60639637\n            ],\n            [\n              39.375,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              64.1681069\n            ],\n            [\n              39.375,\n              66.51326044\n            ],\n            [\n              45,\n              66.51326044\n            ],\n            [\n              45,\n              64.1681069\n            ],\n            [\n              39.375,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              66.51326044\n            ],\n            [\n              39.375,\n              68.65655498\n            ],\n            [\n              45,\n              68.65655498\n            ],\n            [\n              45,\n              66.51326044\n            ],\n            [\n              39.375,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              45.08903556\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              50.625,\n              48.92249926\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              45,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              48.92249926\n            ],\n            [\n              45,\n              52.48278022\n            ],\n            [\n              50.625,\n              52.48278022\n            ],\n            [\n              50.625,\n              48.92249926\n            ],\n            [\n              45,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              52.48278022\n            ],\n            [\n              45,\n              55.77657302\n            ],\n            [\n              50.625,\n              55.77657302\n            ],\n            [\n              50.625,\n              52.48278022\n            ],\n            [\n              45,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              55.77657302\n            ],\n            [\n              45,\n              58.81374172\n            ],\n            [\n              50.625,\n              58.81374172\n            ],\n            [\n              50.625,\n              55.77657302\n            ],\n            [\n              45,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              58.81374172\n            ],\n            [\n              45,\n              61.60639637\n            ],\n            [\n              50.625,\n              61.60639637\n            ],\n            [\n              50.625,\n              58.81374172\n            ],\n            [\n              45,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              61.60639637\n            ],\n            [\n              45,\n              64.1681069\n            ],\n            [\n              50.625,\n              64.1681069\n            ],\n            [\n              50.625,\n              61.60639637\n            ],\n            [\n              45,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              64.1681069\n            ],\n            [\n              45,\n              66.51326044\n            ],\n            [\n              50.625,\n              66.51326044\n            ],\n            [\n              50.625,\n              64.1681069\n            ],\n            [\n              45,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              66.51326044\n            ],\n            [\n              45,\n              68.65655498\n            ],\n            [\n              50.625,\n              68.65655498\n            ],\n            [\n              50.625,\n              66.51326044\n            ],\n            [\n              45,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              48.92249926\n            ],\n            [\n              50.625,\n              52.48278022\n            ],\n            [\n              56.25,\n              52.48278022\n            ],\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              50.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              52.48278022\n            ],\n            [\n              50.625,\n              55.77657302\n            ],\n            [\n              56.25,\n              55.77657302\n            ],\n            [\n              56.25,\n              52.48278022\n            ],\n            [\n              50.625,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              55.77657302\n            ],\n            [\n              50.625,\n              58.81374172\n            ],\n            [\n              56.25,\n              58.81374172\n            ],\n            [\n              56.25,\n              55.77657302\n            ],\n            [\n              50.625,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              58.81374172\n            ],\n            [\n              50.625,\n              61.60639637\n            ],\n            [\n              56.25,\n              61.60639637\n            ],\n            [\n              56.25,\n              58.81374172\n            ],\n            [\n              50.625,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              61.60639637\n            ],\n            [\n              50.625,\n              64.1681069\n            ],\n            [\n              56.25,\n              64.1681069\n            ],\n            [\n              56.25,\n              61.60639637\n            ],\n            [\n              50.625,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              64.1681069\n            ],\n            [\n              50.625,\n              66.51326044\n            ],\n            [\n              56.25,\n              66.51326044\n            ],\n            [\n              56.25,\n              64.1681069\n            ],\n            [\n              50.625,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              66.51326044\n            ],\n            [\n              50.625,\n              68.65655498\n            ],\n            [\n              56.25,\n              68.65655498\n            ],\n            [\n              56.25,\n              66.51326044\n            ],\n            [\n              50.625,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              56.25,\n              52.48278022\n            ],\n            [\n              61.875,\n              52.48278022\n            ],\n            [\n              61.875,\n              48.92249926\n            ],\n            [\n              56.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              52.48278022\n            ],\n            [\n              56.25,\n              55.77657302\n            ],\n            [\n              61.875,\n              55.77657302\n            ],\n            [\n              61.875,\n              52.48278022\n            ],\n            [\n              56.25,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              55.77657302\n            ],\n            [\n              56.25,\n              58.81374172\n            ],\n            [\n              61.875,\n              58.81374172\n            ],\n            [\n              61.875,\n              55.77657302\n            ],\n            [\n              56.25,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              58.81374172\n            ],\n            [\n              56.25,\n              61.60639637\n            ],\n            [\n              61.875,\n              61.60639637\n            ],\n            [\n              61.875,\n              58.81374172\n            ],\n            [\n              56.25,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              61.60639637\n            ],\n            [\n              56.25,\n              64.1681069\n            ],\n            [\n              61.875,\n              64.1681069\n            ],\n            [\n              61.875,\n              61.60639637\n            ],\n            [\n              56.25,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              64.1681069\n            ],\n            [\n              56.25,\n              66.51326044\n            ],\n            [\n              61.875,\n              66.51326044\n            ],\n            [\n              61.875,\n              64.1681069\n            ],\n            [\n              56.25,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              66.51326044\n            ],\n            [\n              56.25,\n              68.65655498\n            ],\n            [\n              61.875,\n              68.65655498\n            ],\n            [\n              61.875,\n              66.51326044\n            ],\n            [\n              56.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              68.65655498\n            ],\n            [\n              56.25,\n              70.61261424\n            ],\n            [\n              61.875,\n              70.61261424\n            ],\n            [\n              61.875,\n              68.65655498\n            ],\n            [\n              56.25,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              52.48278022\n            ],\n            [\n              61.875,\n              55.77657302\n            ],\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              67.5,\n              52.48278022\n            ],\n            [\n              61.875,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              55.77657302\n            ],\n            [\n              61.875,\n              58.81374172\n            ],\n            [\n              67.5,\n              58.81374172\n            ],\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              61.875,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              58.81374172\n            ],\n            [\n              61.875,\n              61.60639637\n            ],\n            [\n              67.5,\n              61.60639637\n            ],\n            [\n              67.5,\n              58.81374172\n            ],\n            [\n              61.875,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              61.60639637\n            ],\n            [\n              61.875,\n              64.1681069\n            ],\n            [\n              67.5,\n              64.1681069\n            ],\n            [\n              67.5,\n              61.60639637\n            ],\n            [\n              61.875,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              64.1681069\n            ],\n            [\n              61.875,\n              66.51326044\n            ],\n            [\n              67.5,\n              66.51326044\n            ],\n            [\n              67.5,\n              64.1681069\n            ],\n            [\n              61.875,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              66.51326044\n            ],\n            [\n              61.875,\n              68.65655498\n            ],\n            [\n              67.5,\n              68.65655498\n            ],\n            [\n              67.5,\n              66.51326044\n            ],\n            [\n              61.875,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              68.65655498\n            ],\n            [\n              61.875,\n              70.61261424\n            ],\n            [\n              67.5,\n              70.61261424\n            ],\n            [\n              67.5,\n              68.65655498\n            ],\n            [\n              61.875,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              70.61261424\n            ],\n            [\n              61.875,\n              72.39570571\n            ],\n            [\n              67.5,\n              72.39570571\n            ],\n            [\n              67.5,\n              70.61261424\n            ],\n            [\n              61.875,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              52.48278022\n            ],\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              73.125,\n              55.77657302\n            ],\n            [\n              73.125,\n              52.48278022\n            ],\n            [\n              67.5,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              67.5,\n              58.81374172\n            ],\n            [\n              73.125,\n              58.81374172\n            ],\n            [\n              73.125,\n              55.77657302\n            ],\n            [\n              67.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              58.81374172\n            ],\n            [\n              67.5,\n              61.60639637\n            ],\n            [\n              73.125,\n              61.60639637\n            ],\n            [\n              73.125,\n              58.81374172\n            ],\n            [\n              67.5,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              61.60639637\n            ],\n            [\n              67.5,\n              64.1681069\n            ],\n            [\n              73.125,\n              64.1681069\n            ],\n            [\n              73.125,\n              61.60639637\n            ],\n            [\n              67.5,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              64.1681069\n            ],\n            [\n              67.5,\n              66.51326044\n            ],\n            [\n              73.125,\n              66.51326044\n            ],\n            [\n              73.125,\n              64.1681069\n            ],\n            [\n              67.5,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              66.51326044\n            ],\n            [\n              67.5,\n              68.65655498\n            ],\n            [\n              73.125,\n              68.65655498\n            ],\n            [\n              73.125,\n              66.51326044\n            ],\n            [\n              67.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              68.65655498\n            ],\n            [\n              67.5,\n              70.61261424\n            ],\n            [\n              73.125,\n              70.61261424\n            ],\n            [\n              73.125,\n              68.65655498\n            ],\n            [\n              67.5,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              70.61261424\n            ],\n            [\n              67.5,\n              72.39570571\n            ],\n            [\n              73.125,\n              72.39570571\n            ],\n            [\n              73.125,\n              70.61261424\n            ],\n            [\n              67.5,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              72.39570571\n            ],\n            [\n              67.5,\n              74.01954331\n            ],\n            [\n              73.125,\n              74.01954331\n            ],\n            [\n              73.125,\n              72.39570571\n            ],\n            [\n              67.5,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              48.92249926\n            ],\n            [\n              73.125,\n              52.48278022\n            ],\n            [\n              78.75,\n              52.48278022\n            ],\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              73.125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              52.48278022\n            ],\n            [\n              73.125,\n              55.77657302\n            ],\n            [\n              78.75,\n              55.77657302\n            ],\n            [\n              78.75,\n              52.48278022\n            ],\n            [\n              73.125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              55.77657302\n            ],\n            [\n              73.125,\n              58.81374172\n            ],\n            [\n              78.75,\n              58.81374172\n            ],\n            [\n              78.75,\n              55.77657302\n            ],\n            [\n              73.125,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              58.81374172\n            ],\n            [\n              73.125,\n              61.60639637\n            ],\n            [\n              78.75,\n              61.60639637\n            ],\n            [\n              78.75,\n              58.81374172\n            ],\n            [\n              73.125,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              61.60639637\n            ],\n            [\n              73.125,\n              64.1681069\n            ],\n            [\n              78.75,\n              64.1681069\n            ],\n            [\n              78.75,\n              61.60639637\n            ],\n            [\n              73.125,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              64.1681069\n            ],\n            [\n              73.125,\n              66.51326044\n            ],\n            [\n              78.75,\n              66.51326044\n            ],\n            [\n              78.75,\n              64.1681069\n            ],\n            [\n              73.125,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              66.51326044\n            ],\n            [\n              73.125,\n              68.65655498\n            ],\n            [\n              78.75,\n              68.65655498\n            ],\n            [\n              78.75,\n              66.51326044\n            ],\n            [\n              73.125,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              68.65655498\n            ],\n            [\n              73.125,\n              70.61261424\n            ],\n            [\n              78.75,\n              70.61261424\n            ],\n            [\n              78.75,\n              68.65655498\n            ],\n            [\n              73.125,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              70.61261424\n            ],\n            [\n              73.125,\n              72.39570571\n            ],\n            [\n              78.75,\n              72.39570571\n            ],\n            [\n              78.75,\n              70.61261424\n            ],\n            [\n              73.125,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              78.75,\n              52.48278022\n            ],\n            [\n              84.375,\n              52.48278022\n            ],\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              78.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              52.48278022\n            ],\n            [\n              78.75,\n              55.77657302\n            ],\n            [\n              84.375,\n              55.77657302\n            ],\n            [\n              84.375,\n              52.48278022\n            ],\n            [\n              78.75,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              55.77657302\n            ],\n            [\n              78.75,\n              58.81374172\n            ],\n            [\n              84.375,\n              58.81374172\n            ],\n            [\n              84.375,\n              55.77657302\n            ],\n            [\n              78.75,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              58.81374172\n            ],\n            [\n              78.75,\n              61.60639637\n            ],\n            [\n              84.375,\n              61.60639637\n            ],\n            [\n              84.375,\n              58.81374172\n            ],\n            [\n              78.75,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              61.60639637\n            ],\n            [\n              78.75,\n              64.1681069\n            ],\n            [\n              84.375,\n              64.1681069\n            ],\n            [\n              84.375,\n              61.60639637\n            ],\n            [\n              78.75,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              64.1681069\n            ],\n            [\n              78.75,\n              66.51326044\n            ],\n            [\n              84.375,\n              66.51326044\n            ],\n            [\n              84.375,\n              64.1681069\n            ],\n            [\n              78.75,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              66.51326044\n            ],\n            [\n              78.75,\n              68.65655498\n            ],\n            [\n              84.375,\n              68.65655498\n            ],\n            [\n              84.375,\n              66.51326044\n            ],\n            [\n              78.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              68.65655498\n            ],\n            [\n              78.75,\n              70.61261424\n            ],\n            [\n              84.375,\n              70.61261424\n            ],\n            [\n              84.375,\n              68.65655498\n            ],\n            [\n              78.75,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              70.61261424\n            ],\n            [\n              78.75,\n              72.39570571\n            ],\n            [\n              84.375,\n              72.39570571\n            ],\n            [\n              84.375,\n              70.61261424\n            ],\n            [\n              78.75,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              72.39570571\n            ],\n            [\n              78.75,\n              74.01954331\n            ],\n            [\n              84.375,\n              74.01954331\n            ],\n            [\n              84.375,\n              72.39570571\n            ],\n            [\n              78.75,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              84.375,\n              52.48278022\n            ],\n            [\n              90,\n              52.48278022\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              84.375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              52.48278022\n            ],\n            [\n              84.375,\n              55.77657302\n            ],\n            [\n              90,\n              55.77657302\n            ],\n            [\n              90,\n              52.48278022\n            ],\n            [\n              84.375,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              55.77657302\n            ],\n            [\n              84.375,\n              58.81374172\n            ],\n            [\n              90,\n              58.81374172\n            ],\n            [\n              90,\n              55.77657302\n            ],\n            [\n              84.375,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              58.81374172\n            ],\n            [\n              84.375,\n              61.60639637\n            ],\n            [\n              90,\n              61.60639637\n            ],\n            [\n              90,\n              58.81374172\n            ],\n            [\n              84.375,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              61.60639637\n            ],\n            [\n              84.375,\n              64.1681069\n            ],\n            [\n              90,\n              64.1681069\n            ],\n            [\n              90,\n              61.60639637\n            ],\n            [\n              84.375,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              64.1681069\n            ],\n            [\n              84.375,\n              66.51326044\n            ],\n            [\n              90,\n              66.51326044\n            ],\n            [\n              90,\n              64.1681069\n            ],\n            [\n              84.375,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              66.51326044\n            ],\n            [\n              84.375,\n              68.65655498\n            ],\n            [\n              90,\n              68.65655498\n            ],\n            [\n              90,\n              66.51326044\n            ],\n            [\n              84.375,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              68.65655498\n            ],\n            [\n              84.375,\n              70.61261424\n            ],\n            [\n              90,\n              70.61261424\n            ],\n            [\n              90,\n              68.65655498\n            ],\n            [\n              84.375,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              70.61261424\n            ],\n            [\n              84.375,\n              72.39570571\n            ],\n            [\n              90,\n              72.39570571\n            ],\n            [\n              90,\n              70.61261424\n            ],\n            [\n              84.375,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              72.39570571\n            ],\n            [\n              84.375,\n              74.01954331\n            ],\n            [\n              90,\n              74.01954331\n            ],\n            [\n              90,\n              72.39570571\n            ],\n            [\n              84.375,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              74.01954331\n            ],\n            [\n              84.375,\n              75.49715732\n            ],\n            [\n              90,\n              75.49715732\n            ],\n            [\n              90,\n              74.01954331\n            ],\n            [\n              84.375,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              48.92249926\n            ],\n            [\n              90,\n              52.48278022\n            ],\n            [\n              95.625,\n              52.48278022\n            ],\n            [\n              95.625,\n              48.92249926\n            ],\n            [\n              90,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              52.48278022\n            ],\n            [\n              90,\n              55.77657302\n            ],\n            [\n              95.625,\n              55.77657302\n            ],\n            [\n              95.625,\n              52.48278022\n            ],\n            [\n              90,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              55.77657302\n            ],\n            [\n              90,\n              58.81374172\n            ],\n            [\n              95.625,\n              58.81374172\n            ],\n            [\n              95.625,\n              55.77657302\n            ],\n            [\n              90,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              58.81374172\n            ],\n            [\n              90,\n              61.60639637\n            ],\n            [\n              95.625,\n              61.60639637\n            ],\n            [\n              95.625,\n              58.81374172\n            ],\n            [\n              90,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              61.60639637\n            ],\n            [\n              90,\n              64.1681069\n            ],\n            [\n              95.625,\n              64.1681069\n            ],\n            [\n              95.625,\n              61.60639637\n            ],\n            [\n              90,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              64.1681069\n            ],\n            [\n              90,\n              66.51326044\n            ],\n            [\n              95.625,\n              66.51326044\n            ],\n            [\n              95.625,\n              64.1681069\n            ],\n            [\n              90,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              66.51326044\n            ],\n            [\n              90,\n              68.65655498\n            ],\n            [\n              95.625,\n              68.65655498\n            ],\n            [\n              95.625,\n              66.51326044\n            ],\n            [\n              90,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              68.65655498\n            ],\n            [\n              90,\n              70.61261424\n            ],\n            [\n              95.625,\n              70.61261424\n            ],\n            [\n              95.625,\n              68.65655498\n            ],\n            [\n              90,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              70.61261424\n            ],\n            [\n              90,\n              72.39570571\n            ],\n            [\n              95.625,\n              72.39570571\n            ],\n            [\n              95.625,\n              70.61261424\n            ],\n            [\n              90,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              72.39570571\n            ],\n            [\n              90,\n              74.01954331\n            ],\n            [\n              95.625,\n              74.01954331\n            ],\n            [\n              95.625,\n              72.39570571\n            ],\n            [\n              90,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              74.01954331\n            ],\n            [\n              90,\n              75.49715732\n            ],\n            [\n              95.625,\n              75.49715732\n            ],\n            [\n              95.625,\n              74.01954331\n            ],\n            [\n              90,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              75.49715732\n            ],\n            [\n              90,\n              76.84081641\n            ],\n            [\n              95.625,\n              76.84081641\n            ],\n            [\n              95.625,\n              75.49715732\n            ],\n            [\n              90,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              48.92249926\n            ],\n            [\n              95.625,\n              52.48278022\n            ],\n            [\n              101.25,\n              52.48278022\n            ],\n            [\n              101.25,\n              48.92249926\n            ],\n            [\n              95.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              52.48278022\n            ],\n            [\n              95.625,\n              55.77657302\n            ],\n            [\n              101.25,\n              55.77657302\n            ],\n            [\n              101.25,\n              52.48278022\n            ],\n            [\n              95.625,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              55.77657302\n            ],\n            [\n              95.625,\n              58.81374172\n            ],\n            [\n              101.25,\n              58.81374172\n            ],\n            [\n              101.25,\n              55.77657302\n            ],\n            [\n              95.625,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              58.81374172\n            ],\n            [\n              95.625,\n              61.60639637\n            ],\n            [\n              101.25,\n              61.60639637\n            ],\n            [\n              101.25,\n              58.81374172\n            ],\n            [\n              95.625,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              61.60639637\n            ],\n            [\n              95.625,\n              64.1681069\n            ],\n            [\n              101.25,\n              64.1681069\n            ],\n            [\n              101.25,\n              61.60639637\n            ],\n            [\n              95.625,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              64.1681069\n            ],\n            [\n              95.625,\n              66.51326044\n            ],\n            [\n              101.25,\n              66.51326044\n            ],\n            [\n              101.25,\n              64.1681069\n            ],\n            [\n              95.625,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              66.51326044\n            ],\n            [\n              95.625,\n              68.65655498\n            ],\n            [\n              101.25,\n              68.65655498\n            ],\n            [\n              101.25,\n              66.51326044\n            ],\n            [\n              95.625,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              68.65655498\n            ],\n            [\n              95.625,\n              70.61261424\n            ],\n            [\n              101.25,\n              70.61261424\n            ],\n            [\n              101.25,\n              68.65655498\n            ],\n            [\n              95.625,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              70.61261424\n            ],\n            [\n              95.625,\n              72.39570571\n            ],\n            [\n              101.25,\n              72.39570571\n            ],\n            [\n              101.25,\n              70.61261424\n            ],\n            [\n              95.625,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              72.39570571\n            ],\n            [\n              95.625,\n              74.01954331\n            ],\n            [\n              101.25,\n              74.01954331\n            ],\n            [\n              101.25,\n              72.39570571\n            ],\n            [\n              95.625,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              74.01954331\n            ],\n            [\n              95.625,\n              75.49715732\n            ],\n            [\n              101.25,\n              75.49715732\n            ],\n            [\n              101.25,\n              74.01954331\n            ],\n            [\n              95.625,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              75.49715732\n            ],\n            [\n              95.625,\n              76.84081641\n            ],\n            [\n              101.25,\n              76.84081641\n            ],\n            [\n              101.25,\n              75.49715732\n            ],\n            [\n              95.625,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              76.84081641\n            ],\n            [\n              95.625,\n              78.06198919\n            ],\n            [\n              101.25,\n              78.06198919\n            ],\n            [\n              101.25,\n              76.84081641\n            ],\n            [\n              95.625,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.30078125,\n              56.36525014\n            ],\n            [\n              30.05859375,\n              55.77657302\n            ],\n            [\n              32.34375,\n              53.54030739\n            ],\n            [\n              30.76171875,\n              53.12040528\n            ],\n            [\n              31.11328125,\n              52.16045456\n            ],\n            [\n              34.8046875,\n              52.16045456\n            ],\n            [\n              39.19921875,\n              49.83798245\n            ],\n            [\n              40.60546875,\n              49.83798245\n            ],\n            [\n              38.3203125,\n              47.98992167\n            ],\n            [\n              35.68359375,\n              43.58039086\n            ],\n            [\n              40.078125,\n              43.83452678\n            ],\n            [\n              43.59375,\n              43.83452678\n            ],\n            [\n              44.6484375,\n              42.55308029\n            ],\n            [\n              48.33984375,\n              41.11246879\n            ],\n            [\n              46.93359375,\n              44.96479793\n            ],\n            [\n              48.69140625,\n              46.4378569\n            ],\n            [\n              48.8671875,\n              47.75409798\n            ],\n            [\n              46.93359375,\n              50.17689812\n            ],\n            [\n              50.625,\n              51.39920565\n            ],\n            [\n              52.734375,\n              51.39920565\n            ],\n            [\n              55.01953125,\n              50.62507306\n            ],\n            [\n              59.0625,\n              50.95842672\n            ],\n            [\n              61.69921875,\n              50.95842672\n            ],\n            [\n              61.171875,\n              51.61801655\n            ],\n            [\n              59.58984375,\n              52.16045456\n            ],\n            [\n              61.171875,\n              53.33087298\n            ],\n            [\n              61.5234375,\n              54.26522408\n            ],\n            [\n              63.80859375,\n              54.26522408\n            ],\n            [\n              68.02734375,\n              55.17886766\n            ],\n            [\n              70.13671875,\n              55.27911529\n            ],\n            [\n              73.125,\n              53.33087298\n            ],\n            [\n              75.41015625,\n              54.16243397\n            ],\n            [\n              76.81640625,\n              53.7487108\n            ],\n            [\n              78.3984375,\n              52.05249048\n            ],\n            [\n              80.5078125,\n              51.17934298\n            ],\n            [\n              82.96875,\n              51.17934298\n            ],\n            [\n              85.078125,\n              49.03786795\n            ],\n            [\n              87.36328125,\n              49.72447919\n            ],\n            [\n              89.47265625,\n              49.72447919\n            ],\n            [\n              92.109375,\n              50.28933925\n            ],\n            [\n              94.5703125,\n              50.28933925\n            ],\n            [\n              96.15234375,\n              50.28933925\n            ],\n            [\n              97.91015625,\n              49.72447919\n            ],\n            [\n              98.26171875,\n              51.2894059\n            ],\n            [\n              99.4921875,\n              52.26815737\n            ],\n            [\n              102.3046875,\n              50.95842672\n            ],\n            [\n              103.0078125,\n              49.95121991\n            ],\n            [\n              105.8203125,\n              50.84757295\n            ],\n            [\n              106.5234375,\n              49.83798245\n            ],\n            [\n              110.0390625,\n              49.83798245\n            ],\n            [\n              111.97265625,\n              49.49667453\n            ],\n            [\n              116.3671875,\n              50.28933925\n            ],\n            [\n              120.05859375,\n              51.61801655\n            ],\n            [\n              120.234375,\n              53.12040528\n            ],\n            [\n              122.87109375,\n              53.54030739\n            ],\n            [\n              126.2109375,\n              52.48278022\n            ],\n            [\n              126.9140625,\n              50.51342653\n            ],\n            [\n              130.78125,\n              48.45835188\n            ],\n            [\n              131.8359375,\n              47.63578359\n            ],\n            [\n              134.82421875,\n              48.45835188\n            ],\n            [\n              132.5390625,\n              45.95114969\n            ],\n            [\n              130.4296875,\n              44.71551373\n            ],\n            [\n              131.484375,\n              41.90227704\n            ],\n            [\n              133.76953125,\n              42.94033923\n            ],\n            [\n              141.15234375,\n              51.06901666\n            ],\n            [\n              140.2734375,\n              53.7487108\n            ],\n            [\n              136.0546875,\n              54.87660665\n            ],\n            [\n              137.98828125,\n              56.65622649\n            ],\n            [\n              140.625,\n              58.17070248\n            ],\n            [\n              142.20703125,\n              59.4450751\n            ],\n            [\n              145.8984375,\n              59.4450751\n            ],\n            [\n              149.0625,\n              59.71209717\n            ],\n            [\n              152.05078125,\n              59.26588063\n            ],\n            [\n              153.10546875,\n              59.08573857\n            ],\n            [\n              155.56640625,\n              59.08573857\n            ],\n            [\n              154.51171875,\n              59.71209717\n            ],\n            [\n              156.26953125,\n              61.10078883\n            ],\n            [\n              158.73046875,\n              61.93895043\n            ],\n            [\n              159.78515625,\n              61.60639637\n            ],\n            [\n              159.78515625,\n              60.9304322\n            ],\n            [\n              161.54296875,\n              60.9304322\n            ],\n            [\n              163.65234375,\n              62.43107423\n            ],\n            [\n              163.65234375,\n              61.27023279\n            ],\n            [\n              161.015625,\n              60.15244221\n            ],\n            [\n              158.02734375,\n              58.07787627\n            ],\n            [\n              155.56640625,\n              56.75272287\n            ],\n            [\n              155.390625,\n              55.37911045\n            ],\n            [\n              155.390625,\n              53.12040528\n            ],\n            [\n              156.62109375,\n              52.16045456\n            ],\n            [\n              156.796875,\n              51.61801655\n            ],\n            [\n              159.43359375,\n              53.01478325\n            ],\n            [\n              160.6640625,\n              54.47003761\n            ],\n            [\n              162.24609375,\n              55.47885346\n            ],\n            [\n              162.59765625,\n              57.04072984\n            ],\n            [\n              162.59765625,\n              58.35563036\n            ],\n            [\n              164.00390625,\n              59.71209717\n            ],\n            [\n              165.9375,\n              60.32694774\n            ],\n            [\n              167.6953125,\n              60.58696734\n            ],\n            [\n              170.15625,\n              60.15244221\n            ],\n            [\n              173.3203125,\n              61.60639637\n            ],\n            [\n              176.8359375,\n              62.67414335\n            ],\n            [\n              178.9453125,\n              62.59334083\n            ],\n            [\n              179.296875,\n              63.31268278\n            ],\n            [\n              176.484375,\n              64.84893726\n            ],\n            [\n              179.82421875,\n              65.14611485\n            ],\n            [\n              180,\n              66.08936427\n            ],\n            [\n              182.8125,\n              65.58572002\n            ],\n            [\n              184.5703125,\n              64.84893726\n            ],\n            [\n              186.328125,\n              64.24459477\n            ],\n            [\n              187.91015625,\n              64.9979392\n            ],\n            [\n              189.4921875,\n              65.73062649\n            ],\n            [\n              190.546875,\n              66.58321726\n            ],\n            [\n              187.3828125,\n              67.06743335\n            ],\n            [\n              185.09765625,\n              67.06743335\n            ],\n            [\n              183.69140625,\n              68.07330474\n            ],\n            [\n              181.58203125,\n              68.78414378\n            ],\n            [\n              177.36328125,\n              69.47296854\n            ],\n            [\n              174.375,\n              69.77895178\n            ],\n            [\n              170.5078125,\n              69.96043927\n            ],\n            [\n              170.5078125,\n              69.22499685\n            ],\n            [\n              170.5078125,\n              68.78414378\n            ],\n            [\n              167.34375,\n              69.47296854\n            ],\n            [\n              165.234375,\n              69.47296854\n            ],\n            [\n              161.54296875,\n              69.65708627\n            ],\n            [\n              160.83984375,\n              69.16255791\n            ],\n            [\n              159.2578125,\n              69.83962194\n            ],\n            [\n              159.78515625,\n              70.55417854\n            ],\n            [\n              152.2265625,\n              71.13098771\n            ],\n            [\n              149.0625,\n              72.07391149\n            ],\n            [\n              145.72265625,\n              72.34246439\n            ],\n            [\n              140.9765625,\n              72.71190311\n            ],\n            [\n              139.04296875,\n              71.85622888\n            ],\n            [\n              134.47265625,\n              71.69129272\n            ],\n            [\n              130.95703125,\n              71.69129272\n            ],\n            [\n              129.0234375,\n              70.67088107\n            ],\n            [\n              126.9140625,\n              72.5544985\n            ],\n            [\n              126.73828125,\n              73.52839949\n            ],\n            [\n              123.57421875,\n              73.52839949\n            ],\n            [\n              122.16796875,\n              72.97118902\n            ],\n            [\n              120.41015625,\n              72.97118902\n            ],\n            [\n              118.4765625,\n              73.47848508\n            ],\n            [\n              113.203125,\n              73.82482035\n            ],\n            [\n              108.6328125,\n              73.52839949\n            ],\n            [\n              106.875,\n              73.7265947\n            ],\n            [\n              109.16015625,\n              74.35482803\n            ],\n            [\n              112.8515625,\n              75.00494001\n            ],\n            [\n              112.8515625,\n              76.10079607\n            ],\n            [\n              110.56640625,\n              76.59854507\n            ],\n            [\n              107.75390625,\n              76.59854507\n            ],\n            [\n              106.34765625,\n              77.0787839\n            ],\n            [\n              105.64453125,\n              77.57995914\n            ],\n            [\n              102.12890625,\n              77.57995914\n            ],\n            [\n              101.07421875,\n              76.92061352\n            ],\n            [\n              99.31640625,\n              76.18499546\n            ],\n            [\n              91.7578125,\n              75.88809075\n            ],\n            [\n              90.17578125,\n              75.36450565\n            ],\n            [\n              87.01171875,\n              74.59010801\n            ],\n            [\n              86.484375,\n              74.16408547\n            ],\n            [\n              86.30859375,\n              73.92246885\n            ],\n            [\n              83.84765625,\n              73.82482035\n            ],\n            [\n              78.92578125,\n              73.67726448\n            ],\n            [\n              80.33203125,\n              73.07384351\n            ],\n            [\n              80.859375,\n              72.2890672\n            ],\n            [\n              82.96875,\n              71.91088788\n            ],\n            [\n              79.62890625,\n              71.91088788\n            ],\n            [\n              78.046875,\n              72.12793628\n            ],\n            [\n              75.05859375,\n              71.5805318\n            ],\n            [\n              72.421875,\n              71.63599288\n            ],\n            [\n              72.0703125,\n              72.6071204\n            ],\n            [\n              69.43359375,\n              72.71190311\n            ],\n            [\n              68.37890625,\n              71.63599288\n            ],\n            [\n              67.1484375,\n              70.61261424\n            ],\n            [\n              66.97265625,\n              69.22499685\n            ],\n            [\n              69.9609375,\n              68.78414378\n            ],\n            [\n              68.203125,\n              68.33437594\n            ],\n            [\n              64.3359375,\n              68.72044057\n            ],\n            [\n              63.28125,\n              69.65708627\n            ],\n            [\n              61.171875,\n              69.65708627\n            ],\n            [\n              59.765625,\n              68.52823492\n            ],\n            [\n              55.8984375,\n              68.65655498\n            ],\n            [\n              51.15234375,\n              68.65655498\n            ],\n            [\n              47.98828125,\n              68.00757102\n            ],\n            [\n              47.109375,\n              67.13582939\n            ],\n            [\n              42.71484375,\n              67.06743335\n            ],\n            [\n              40.4296875,\n              65.58572002\n            ],\n            [\n              36.73828125,\n              64.92354174\n            ],\n            [\n              34.98046875,\n              65.44000166\n            ],\n            [\n              33.57421875,\n              66.6529774\n            ],\n            [\n              36.73828125,\n              66.16051056\n            ],\n            [\n              41.66015625,\n              66.58321726\n            ],\n            [\n              39.19921875,\n              67.47492238\n            ],\n            [\n              35.68359375,\n              68.13885165\n            ],\n            [\n              32.6953125,\n              69.22499685\n            ],\n            [\n              29.70703125,\n              69.41124236\n            ],\n            [\n              29.70703125,\n              68.46379956\n            ],\n            [\n              29.70703125,\n              64.6238772\n            ],\n            [\n              31.640625,\n              63.70472243\n            ],\n            [\n              30.234375,\n              61.43876749\n            ],\n            [\n              28.125,\n              60.23981117\n            ],\n            [\n              27.24609375,\n              58.17070248\n            ],\n            [\n              28.30078125,\n              56.36525014\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/small_poly.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        -79.9365234375,\n        32.77212032198862\n      ],\n      [\n        -79.9306869506836,\n        32.77212032198862\n      ],\n      [\n        -79.9306869506836,\n        32.776811185047144\n      ],\n      [\n        -79.9365234375,\n        32.776811185047144\n      ],\n      [\n        -79.9365234375,\n        32.77212032198862\n      ]\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/small_poly_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -80.15625,\n              32.54681317\n            ],\n            [\n              -80.15625,\n              32.84267363\n            ],\n            [\n              -79.8046875,\n              32.84267363\n            ],\n            [\n              -79.8046875,\n              32.54681317\n            ],\n            [\n              -80.15625,\n              32.54681317\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -79.93652344,\n              32.77212032\n            ],\n            [\n              -79.93068695,\n              32.77212032\n            ],\n            [\n              -79.93068695,\n              32.77681119\n            ],\n            [\n              -79.93652344,\n              32.77681119\n            ],\n            [\n              -79.93652344,\n              32.77212032\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/spiked.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        16.611328125,\n        8.667918002363134\n      ],\n      [\n        13.447265624999998,\n        3.381823735328289\n      ],\n      [\n        15.3369140625,\n        -6.0968598188879355\n      ],\n      [\n        16.7431640625,\n        1.0546279422758869\n      ],\n      [\n        18.193359375,\n        -10.314919285813147\n      ],\n      [\n        19.248046875,\n        -1.4061088354351468\n      ],\n      [\n        20.698242187499996,\n        -4.565473550710278\n      ],\n      [\n        22.587890625,\n        0.3515602939922709\n      ],\n      [\n        24.2138671875,\n        -11.73830237143684\n      ],\n      [\n        29.091796875,\n        5.003394345022162\n      ],\n      [\n        26.4990234375,\n        9.752370139173285\n      ],\n      [\n        26.0595703125,\n        7.623886853120036\n      ],\n      [\n        24.9169921875,\n        9.44906182688142\n      ],\n      [\n        22.587890625,\n        6.751896464843375\n      ],\n      [\n        21.665039062499996,\n        12.597454504832017\n      ],\n      [\n        20.9619140625,\n        8.189742344383703\n      ],\n      [\n        18.193359375,\n        14.3069694978258\n      ],\n      [\n        16.611328125,\n        8.667918002363134\n      ]\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/spiked_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.359375,\n              1.75753681\n            ],\n            [\n              13.359375,\n              2.10889866\n            ],\n            [\n              13.7109375,\n              2.10889866\n            ],\n            [\n              13.7109375,\n              1.75753681\n            ],\n            [\n              13.359375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.359375,\n              2.10889866\n            ],\n            [\n              13.359375,\n              2.46018118\n            ],\n            [\n              13.7109375,\n              2.46018118\n            ],\n            [\n              13.7109375,\n              2.10889866\n            ],\n            [\n              13.359375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.359375,\n              2.46018118\n            ],\n            [\n              13.359375,\n              2.81137119\n            ],\n            [\n              13.7109375,\n              2.81137119\n            ],\n            [\n              13.7109375,\n              2.46018118\n            ],\n            [\n              13.359375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.359375,\n              2.81137119\n            ],\n            [\n              13.359375,\n              3.16245553\n            ],\n            [\n              13.7109375,\n              3.16245553\n            ],\n            [\n              13.7109375,\n              2.81137119\n            ],\n            [\n              13.359375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.359375,\n              3.16245553\n            ],\n            [\n              13.359375,\n              3.51342105\n            ],\n            [\n              13.7109375,\n              3.51342105\n            ],\n            [\n              13.7109375,\n              3.16245553\n            ],\n            [\n              13.359375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.359375,\n              3.51342105\n            ],\n            [\n              13.359375,\n              3.86425462\n            ],\n            [\n              13.7109375,\n              3.86425462\n            ],\n            [\n              13.7109375,\n              3.51342105\n            ],\n            [\n              13.359375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              0\n            ],\n            [\n              13.7109375,\n              0.35156029\n            ],\n            [\n              14.0625,\n              0.35156029\n            ],\n            [\n              14.0625,\n              0\n            ],\n            [\n              13.7109375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              0.35156029\n            ],\n            [\n              13.7109375,\n              0.70310735\n            ],\n            [\n              14.0625,\n              0.70310735\n            ],\n            [\n              14.0625,\n              0.35156029\n            ],\n            [\n              13.7109375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              0.70310735\n            ],\n            [\n              13.7109375,\n              1.05462794\n            ],\n            [\n              14.0625,\n              1.05462794\n            ],\n            [\n              14.0625,\n              0.70310735\n            ],\n            [\n              13.7109375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              1.05462794\n            ],\n            [\n              13.7109375,\n              1.40610884\n            ],\n            [\n              14.0625,\n              1.40610884\n            ],\n            [\n              14.0625,\n              1.05462794\n            ],\n            [\n              13.7109375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              1.40610884\n            ],\n            [\n              13.7109375,\n              1.75753681\n            ],\n            [\n              14.0625,\n              1.75753681\n            ],\n            [\n              14.0625,\n              1.40610884\n            ],\n            [\n              13.7109375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              1.75753681\n            ],\n            [\n              13.7109375,\n              2.10889866\n            ],\n            [\n              14.0625,\n              2.10889866\n            ],\n            [\n              14.0625,\n              1.75753681\n            ],\n            [\n              13.7109375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              2.10889866\n            ],\n            [\n              13.7109375,\n              2.46018118\n            ],\n            [\n              14.0625,\n              2.46018118\n            ],\n            [\n              14.0625,\n              2.10889866\n            ],\n            [\n              13.7109375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              2.46018118\n            ],\n            [\n              13.7109375,\n              2.81137119\n            ],\n            [\n              14.0625,\n              2.81137119\n            ],\n            [\n              14.0625,\n              2.46018118\n            ],\n            [\n              13.7109375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              2.81137119\n            ],\n            [\n              13.7109375,\n              3.16245553\n            ],\n            [\n              14.0625,\n              3.16245553\n            ],\n            [\n              14.0625,\n              2.81137119\n            ],\n            [\n              13.7109375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              3.16245553\n            ],\n            [\n              13.7109375,\n              3.51342105\n            ],\n            [\n              14.0625,\n              3.51342105\n            ],\n            [\n              14.0625,\n              3.16245553\n            ],\n            [\n              13.7109375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              3.51342105\n            ],\n            [\n              13.7109375,\n              3.86425462\n            ],\n            [\n              14.0625,\n              3.86425462\n            ],\n            [\n              14.0625,\n              3.51342105\n            ],\n            [\n              13.7109375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              3.86425462\n            ],\n            [\n              13.7109375,\n              4.21494314\n            ],\n            [\n              14.0625,\n              4.21494314\n            ],\n            [\n              14.0625,\n              3.86425462\n            ],\n            [\n              13.7109375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.7109375,\n              4.21494314\n            ],\n            [\n              13.7109375,\n              4.56547355\n            ],\n            [\n              14.0625,\n              4.56547355\n            ],\n            [\n              14.0625,\n              4.21494314\n            ],\n            [\n              13.7109375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              -0.35156029\n            ],\n            [\n              14.0625,\n              0\n            ],\n            [\n              14.4140625,\n              0\n            ],\n            [\n              14.4140625,\n              -0.35156029\n            ],\n            [\n              14.0625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              -0.70310735\n            ],\n            [\n              14.0625,\n              -0.35156029\n            ],\n            [\n              14.4140625,\n              -0.35156029\n            ],\n            [\n              14.4140625,\n              -0.70310735\n            ],\n            [\n              14.0625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              -1.05462794\n            ],\n            [\n              14.0625,\n              -0.70310735\n            ],\n            [\n              14.4140625,\n              -0.70310735\n            ],\n            [\n              14.4140625,\n              -1.05462794\n            ],\n            [\n              14.0625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              -1.40610884\n            ],\n            [\n              14.0625,\n              -1.05462794\n            ],\n            [\n              14.4140625,\n              -1.05462794\n            ],\n            [\n              14.4140625,\n              -1.40610884\n            ],\n            [\n              14.0625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              -1.75753681\n            ],\n            [\n              14.0625,\n              -1.40610884\n            ],\n            [\n              14.4140625,\n              -1.40610884\n            ],\n            [\n              14.4140625,\n              -1.75753681\n            ],\n            [\n              14.0625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              0\n            ],\n            [\n              14.0625,\n              0.35156029\n            ],\n            [\n              14.4140625,\n              0.35156029\n            ],\n            [\n              14.4140625,\n              0\n            ],\n            [\n              14.0625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              0.35156029\n            ],\n            [\n              14.0625,\n              0.70310735\n            ],\n            [\n              14.4140625,\n              0.70310735\n            ],\n            [\n              14.4140625,\n              0.35156029\n            ],\n            [\n              14.0625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              0.70310735\n            ],\n            [\n              14.0625,\n              1.05462794\n            ],\n            [\n              14.4140625,\n              1.05462794\n            ],\n            [\n              14.4140625,\n              0.70310735\n            ],\n            [\n              14.0625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              1.05462794\n            ],\n            [\n              14.0625,\n              1.40610884\n            ],\n            [\n              14.4140625,\n              1.40610884\n            ],\n            [\n              14.4140625,\n              1.05462794\n            ],\n            [\n              14.0625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              1.40610884\n            ],\n            [\n              14.0625,\n              1.75753681\n            ],\n            [\n              14.4140625,\n              1.75753681\n            ],\n            [\n              14.4140625,\n              1.40610884\n            ],\n            [\n              14.0625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              1.75753681\n            ],\n            [\n              14.0625,\n              2.10889866\n            ],\n            [\n              14.4140625,\n              2.10889866\n            ],\n            [\n              14.4140625,\n              1.75753681\n            ],\n            [\n              14.0625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              2.10889866\n            ],\n            [\n              14.0625,\n              2.46018118\n            ],\n            [\n              14.4140625,\n              2.46018118\n            ],\n            [\n              14.4140625,\n              2.10889866\n            ],\n            [\n              14.0625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              2.46018118\n            ],\n            [\n              14.0625,\n              2.81137119\n            ],\n            [\n              14.4140625,\n              2.81137119\n            ],\n            [\n              14.4140625,\n              2.46018118\n            ],\n            [\n              14.0625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              2.81137119\n            ],\n            [\n              14.0625,\n              3.16245553\n            ],\n            [\n              14.4140625,\n              3.16245553\n            ],\n            [\n              14.4140625,\n              2.81137119\n            ],\n            [\n              14.0625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              3.16245553\n            ],\n            [\n              14.0625,\n              3.51342105\n            ],\n            [\n              14.4140625,\n              3.51342105\n            ],\n            [\n              14.4140625,\n              3.16245553\n            ],\n            [\n              14.0625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              3.51342105\n            ],\n            [\n              14.0625,\n              3.86425462\n            ],\n            [\n              14.4140625,\n              3.86425462\n            ],\n            [\n              14.4140625,\n              3.51342105\n            ],\n            [\n              14.0625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              3.86425462\n            ],\n            [\n              14.0625,\n              4.21494314\n            ],\n            [\n              14.4140625,\n              4.21494314\n            ],\n            [\n              14.4140625,\n              3.86425462\n            ],\n            [\n              14.0625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              4.21494314\n            ],\n            [\n              14.0625,\n              4.56547355\n            ],\n            [\n              14.4140625,\n              4.56547355\n            ],\n            [\n              14.4140625,\n              4.21494314\n            ],\n            [\n              14.0625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              4.56547355\n            ],\n            [\n              14.0625,\n              4.9158328\n            ],\n            [\n              14.4140625,\n              4.9158328\n            ],\n            [\n              14.4140625,\n              4.56547355\n            ],\n            [\n              14.0625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.0625,\n              4.9158328\n            ],\n            [\n              14.0625,\n              5.26600788\n            ],\n            [\n              14.4140625,\n              5.26600788\n            ],\n            [\n              14.4140625,\n              4.9158328\n            ],\n            [\n              14.0625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -0.35156029\n            ],\n            [\n              14.4140625,\n              0\n            ],\n            [\n              14.765625,\n              0\n            ],\n            [\n              14.765625,\n              -0.35156029\n            ],\n            [\n              14.4140625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -0.70310735\n            ],\n            [\n              14.4140625,\n              -0.35156029\n            ],\n            [\n              14.765625,\n              -0.35156029\n            ],\n            [\n              14.765625,\n              -0.70310735\n            ],\n            [\n              14.4140625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -1.05462794\n            ],\n            [\n              14.4140625,\n              -0.70310735\n            ],\n            [\n              14.765625,\n              -0.70310735\n            ],\n            [\n              14.765625,\n              -1.05462794\n            ],\n            [\n              14.4140625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -1.40610884\n            ],\n            [\n              14.4140625,\n              -1.05462794\n            ],\n            [\n              14.765625,\n              -1.05462794\n            ],\n            [\n              14.765625,\n              -1.40610884\n            ],\n            [\n              14.4140625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -1.75753681\n            ],\n            [\n              14.4140625,\n              -1.40610884\n            ],\n            [\n              14.765625,\n              -1.40610884\n            ],\n            [\n              14.765625,\n              -1.75753681\n            ],\n            [\n              14.4140625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -2.10889866\n            ],\n            [\n              14.4140625,\n              -1.75753681\n            ],\n            [\n              14.765625,\n              -1.75753681\n            ],\n            [\n              14.765625,\n              -2.10889866\n            ],\n            [\n              14.4140625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -2.46018118\n            ],\n            [\n              14.4140625,\n              -2.10889866\n            ],\n            [\n              14.765625,\n              -2.10889866\n            ],\n            [\n              14.765625,\n              -2.46018118\n            ],\n            [\n              14.4140625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -2.81137119\n            ],\n            [\n              14.4140625,\n              -2.46018118\n            ],\n            [\n              14.765625,\n              -2.46018118\n            ],\n            [\n              14.765625,\n              -2.81137119\n            ],\n            [\n              14.4140625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -3.16245553\n            ],\n            [\n              14.4140625,\n              -2.81137119\n            ],\n            [\n              14.765625,\n              -2.81137119\n            ],\n            [\n              14.765625,\n              -3.16245553\n            ],\n            [\n              14.4140625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              -3.51342105\n            ],\n            [\n              14.4140625,\n              -3.16245553\n            ],\n            [\n              14.765625,\n              -3.16245553\n            ],\n            [\n              14.765625,\n              -3.51342105\n            ],\n            [\n              14.4140625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              0\n            ],\n            [\n              14.4140625,\n              0.35156029\n            ],\n            [\n              14.765625,\n              0.35156029\n            ],\n            [\n              14.765625,\n              0\n            ],\n            [\n              14.4140625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              0.35156029\n            ],\n            [\n              14.4140625,\n              0.70310735\n            ],\n            [\n              14.765625,\n              0.70310735\n            ],\n            [\n              14.765625,\n              0.35156029\n            ],\n            [\n              14.4140625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              0.70310735\n            ],\n            [\n              14.4140625,\n              1.05462794\n            ],\n            [\n              14.765625,\n              1.05462794\n            ],\n            [\n              14.765625,\n              0.70310735\n            ],\n            [\n              14.4140625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              1.05462794\n            ],\n            [\n              14.4140625,\n              1.40610884\n            ],\n            [\n              14.765625,\n              1.40610884\n            ],\n            [\n              14.765625,\n              1.05462794\n            ],\n            [\n              14.4140625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              1.40610884\n            ],\n            [\n              14.4140625,\n              1.75753681\n            ],\n            [\n              14.765625,\n              1.75753681\n            ],\n            [\n              14.765625,\n              1.40610884\n            ],\n            [\n              14.4140625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              1.75753681\n            ],\n            [\n              14.4140625,\n              2.10889866\n            ],\n            [\n              14.765625,\n              2.10889866\n            ],\n            [\n              14.765625,\n              1.75753681\n            ],\n            [\n              14.4140625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              2.10889866\n            ],\n            [\n              14.4140625,\n              2.46018118\n            ],\n            [\n              14.765625,\n              2.46018118\n            ],\n            [\n              14.765625,\n              2.10889866\n            ],\n            [\n              14.4140625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              2.46018118\n            ],\n            [\n              14.4140625,\n              2.81137119\n            ],\n            [\n              14.765625,\n              2.81137119\n            ],\n            [\n              14.765625,\n              2.46018118\n            ],\n            [\n              14.4140625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              2.81137119\n            ],\n            [\n              14.4140625,\n              3.16245553\n            ],\n            [\n              14.765625,\n              3.16245553\n            ],\n            [\n              14.765625,\n              2.81137119\n            ],\n            [\n              14.4140625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              3.16245553\n            ],\n            [\n              14.4140625,\n              3.51342105\n            ],\n            [\n              14.765625,\n              3.51342105\n            ],\n            [\n              14.765625,\n              3.16245553\n            ],\n            [\n              14.4140625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              3.51342105\n            ],\n            [\n              14.4140625,\n              3.86425462\n            ],\n            [\n              14.765625,\n              3.86425462\n            ],\n            [\n              14.765625,\n              3.51342105\n            ],\n            [\n              14.4140625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              3.86425462\n            ],\n            [\n              14.4140625,\n              4.21494314\n            ],\n            [\n              14.765625,\n              4.21494314\n            ],\n            [\n              14.765625,\n              3.86425462\n            ],\n            [\n              14.4140625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              4.21494314\n            ],\n            [\n              14.4140625,\n              4.56547355\n            ],\n            [\n              14.765625,\n              4.56547355\n            ],\n            [\n              14.765625,\n              4.21494314\n            ],\n            [\n              14.4140625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              4.56547355\n            ],\n            [\n              14.4140625,\n              4.9158328\n            ],\n            [\n              14.765625,\n              4.9158328\n            ],\n            [\n              14.765625,\n              4.56547355\n            ],\n            [\n              14.4140625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              4.9158328\n            ],\n            [\n              14.4140625,\n              5.26600788\n            ],\n            [\n              14.765625,\n              5.26600788\n            ],\n            [\n              14.765625,\n              4.9158328\n            ],\n            [\n              14.4140625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.4140625,\n              5.26600788\n            ],\n            [\n              14.4140625,\n              5.61598582\n            ],\n            [\n              14.765625,\n              5.61598582\n            ],\n            [\n              14.765625,\n              5.26600788\n            ],\n            [\n              14.4140625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -0.35156029\n            ],\n            [\n              14.765625,\n              0\n            ],\n            [\n              15.1171875,\n              0\n            ],\n            [\n              15.1171875,\n              -0.35156029\n            ],\n            [\n              14.765625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -0.70310735\n            ],\n            [\n              14.765625,\n              -0.35156029\n            ],\n            [\n              15.1171875,\n              -0.35156029\n            ],\n            [\n              15.1171875,\n              -0.70310735\n            ],\n            [\n              14.765625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -1.05462794\n            ],\n            [\n              14.765625,\n              -0.70310735\n            ],\n            [\n              15.1171875,\n              -0.70310735\n            ],\n            [\n              15.1171875,\n              -1.05462794\n            ],\n            [\n              14.765625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -1.40610884\n            ],\n            [\n              14.765625,\n              -1.05462794\n            ],\n            [\n              15.1171875,\n              -1.05462794\n            ],\n            [\n              15.1171875,\n              -1.40610884\n            ],\n            [\n              14.765625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -1.75753681\n            ],\n            [\n              14.765625,\n              -1.40610884\n            ],\n            [\n              15.1171875,\n              -1.40610884\n            ],\n            [\n              15.1171875,\n              -1.75753681\n            ],\n            [\n              14.765625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -2.10889866\n            ],\n            [\n              14.765625,\n              -1.75753681\n            ],\n            [\n              15.1171875,\n              -1.75753681\n            ],\n            [\n              15.1171875,\n              -2.10889866\n            ],\n            [\n              14.765625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -2.46018118\n            ],\n            [\n              14.765625,\n              -2.10889866\n            ],\n            [\n              15.1171875,\n              -2.10889866\n            ],\n            [\n              15.1171875,\n              -2.46018118\n            ],\n            [\n              14.765625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -2.81137119\n            ],\n            [\n              14.765625,\n              -2.46018118\n            ],\n            [\n              15.1171875,\n              -2.46018118\n            ],\n            [\n              15.1171875,\n              -2.81137119\n            ],\n            [\n              14.765625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -3.16245553\n            ],\n            [\n              14.765625,\n              -2.81137119\n            ],\n            [\n              15.1171875,\n              -2.81137119\n            ],\n            [\n              15.1171875,\n              -3.16245553\n            ],\n            [\n              14.765625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -3.51342105\n            ],\n            [\n              14.765625,\n              -3.16245553\n            ],\n            [\n              15.1171875,\n              -3.16245553\n            ],\n            [\n              15.1171875,\n              -3.51342105\n            ],\n            [\n              14.765625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -3.86425462\n            ],\n            [\n              14.765625,\n              -3.51342105\n            ],\n            [\n              15.1171875,\n              -3.51342105\n            ],\n            [\n              15.1171875,\n              -3.86425462\n            ],\n            [\n              14.765625,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -4.21494314\n            ],\n            [\n              14.765625,\n              -3.86425462\n            ],\n            [\n              15.1171875,\n              -3.86425462\n            ],\n            [\n              15.1171875,\n              -4.21494314\n            ],\n            [\n              14.765625,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -4.56547355\n            ],\n            [\n              14.765625,\n              -4.21494314\n            ],\n            [\n              15.1171875,\n              -4.21494314\n            ],\n            [\n              15.1171875,\n              -4.56547355\n            ],\n            [\n              14.765625,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -4.9158328\n            ],\n            [\n              14.765625,\n              -4.56547355\n            ],\n            [\n              15.1171875,\n              -4.56547355\n            ],\n            [\n              15.1171875,\n              -4.9158328\n            ],\n            [\n              14.765625,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              -5.26600788\n            ],\n            [\n              14.765625,\n              -4.9158328\n            ],\n            [\n              15.1171875,\n              -4.9158328\n            ],\n            [\n              15.1171875,\n              -5.26600788\n            ],\n            [\n              14.765625,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              0\n            ],\n            [\n              14.765625,\n              0.35156029\n            ],\n            [\n              15.1171875,\n              0.35156029\n            ],\n            [\n              15.1171875,\n              0\n            ],\n            [\n              14.765625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              0.35156029\n            ],\n            [\n              14.765625,\n              0.70310735\n            ],\n            [\n              15.1171875,\n              0.70310735\n            ],\n            [\n              15.1171875,\n              0.35156029\n            ],\n            [\n              14.765625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              0.70310735\n            ],\n            [\n              14.765625,\n              1.05462794\n            ],\n            [\n              15.1171875,\n              1.05462794\n            ],\n            [\n              15.1171875,\n              0.70310735\n            ],\n            [\n              14.765625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              1.05462794\n            ],\n            [\n              14.765625,\n              1.40610884\n            ],\n            [\n              15.1171875,\n              1.40610884\n            ],\n            [\n              15.1171875,\n              1.05462794\n            ],\n            [\n              14.765625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              1.40610884\n            ],\n            [\n              14.765625,\n              1.75753681\n            ],\n            [\n              15.1171875,\n              1.75753681\n            ],\n            [\n              15.1171875,\n              1.40610884\n            ],\n            [\n              14.765625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              1.75753681\n            ],\n            [\n              14.765625,\n              2.10889866\n            ],\n            [\n              15.1171875,\n              2.10889866\n            ],\n            [\n              15.1171875,\n              1.75753681\n            ],\n            [\n              14.765625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              2.10889866\n            ],\n            [\n              14.765625,\n              2.46018118\n            ],\n            [\n              15.1171875,\n              2.46018118\n            ],\n            [\n              15.1171875,\n              2.10889866\n            ],\n            [\n              14.765625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              2.46018118\n            ],\n            [\n              14.765625,\n              2.81137119\n            ],\n            [\n              15.1171875,\n              2.81137119\n            ],\n            [\n              15.1171875,\n              2.46018118\n            ],\n            [\n              14.765625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              2.81137119\n            ],\n            [\n              14.765625,\n              3.16245553\n            ],\n            [\n              15.1171875,\n              3.16245553\n            ],\n            [\n              15.1171875,\n              2.81137119\n            ],\n            [\n              14.765625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              3.16245553\n            ],\n            [\n              14.765625,\n              3.51342105\n            ],\n            [\n              15.1171875,\n              3.51342105\n            ],\n            [\n              15.1171875,\n              3.16245553\n            ],\n            [\n              14.765625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              3.51342105\n            ],\n            [\n              14.765625,\n              3.86425462\n            ],\n            [\n              15.1171875,\n              3.86425462\n            ],\n            [\n              15.1171875,\n              3.51342105\n            ],\n            [\n              14.765625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              3.86425462\n            ],\n            [\n              14.765625,\n              4.21494314\n            ],\n            [\n              15.1171875,\n              4.21494314\n            ],\n            [\n              15.1171875,\n              3.86425462\n            ],\n            [\n              14.765625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              4.21494314\n            ],\n            [\n              14.765625,\n              4.56547355\n            ],\n            [\n              15.1171875,\n              4.56547355\n            ],\n            [\n              15.1171875,\n              4.21494314\n            ],\n            [\n              14.765625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              4.56547355\n            ],\n            [\n              14.765625,\n              4.9158328\n            ],\n            [\n              15.1171875,\n              4.9158328\n            ],\n            [\n              15.1171875,\n              4.56547355\n            ],\n            [\n              14.765625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              4.9158328\n            ],\n            [\n              14.765625,\n              5.26600788\n            ],\n            [\n              15.1171875,\n              5.26600788\n            ],\n            [\n              15.1171875,\n              4.9158328\n            ],\n            [\n              14.765625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              5.26600788\n            ],\n            [\n              14.765625,\n              5.61598582\n            ],\n            [\n              15.1171875,\n              5.61598582\n            ],\n            [\n              15.1171875,\n              5.26600788\n            ],\n            [\n              14.765625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              5.61598582\n            ],\n            [\n              14.765625,\n              5.96575367\n            ],\n            [\n              15.1171875,\n              5.96575367\n            ],\n            [\n              15.1171875,\n              5.61598582\n            ],\n            [\n              14.765625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.765625,\n              5.96575367\n            ],\n            [\n              14.765625,\n              6.31529854\n            ],\n            [\n              15.1171875,\n              6.31529854\n            ],\n            [\n              15.1171875,\n              5.96575367\n            ],\n            [\n              14.765625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -0.35156029\n            ],\n            [\n              15.1171875,\n              0\n            ],\n            [\n              15.46875,\n              0\n            ],\n            [\n              15.46875,\n              -0.35156029\n            ],\n            [\n              15.1171875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -0.70310735\n            ],\n            [\n              15.1171875,\n              -0.35156029\n            ],\n            [\n              15.46875,\n              -0.35156029\n            ],\n            [\n              15.46875,\n              -0.70310735\n            ],\n            [\n              15.1171875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -1.05462794\n            ],\n            [\n              15.1171875,\n              -0.70310735\n            ],\n            [\n              15.46875,\n              -0.70310735\n            ],\n            [\n              15.46875,\n              -1.05462794\n            ],\n            [\n              15.1171875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -1.40610884\n            ],\n            [\n              15.1171875,\n              -1.05462794\n            ],\n            [\n              15.46875,\n              -1.05462794\n            ],\n            [\n              15.46875,\n              -1.40610884\n            ],\n            [\n              15.1171875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -1.75753681\n            ],\n            [\n              15.1171875,\n              -1.40610884\n            ],\n            [\n              15.46875,\n              -1.40610884\n            ],\n            [\n              15.46875,\n              -1.75753681\n            ],\n            [\n              15.1171875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -2.10889866\n            ],\n            [\n              15.1171875,\n              -1.75753681\n            ],\n            [\n              15.46875,\n              -1.75753681\n            ],\n            [\n              15.46875,\n              -2.10889866\n            ],\n            [\n              15.1171875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -2.46018118\n            ],\n            [\n              15.1171875,\n              -2.10889866\n            ],\n            [\n              15.46875,\n              -2.10889866\n            ],\n            [\n              15.46875,\n              -2.46018118\n            ],\n            [\n              15.1171875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -2.81137119\n            ],\n            [\n              15.1171875,\n              -2.46018118\n            ],\n            [\n              15.46875,\n              -2.46018118\n            ],\n            [\n              15.46875,\n              -2.81137119\n            ],\n            [\n              15.1171875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -3.16245553\n            ],\n            [\n              15.1171875,\n              -2.81137119\n            ],\n            [\n              15.46875,\n              -2.81137119\n            ],\n            [\n              15.46875,\n              -3.16245553\n            ],\n            [\n              15.1171875,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -3.51342105\n            ],\n            [\n              15.1171875,\n              -3.16245553\n            ],\n            [\n              15.46875,\n              -3.16245553\n            ],\n            [\n              15.46875,\n              -3.51342105\n            ],\n            [\n              15.1171875,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -3.86425462\n            ],\n            [\n              15.1171875,\n              -3.51342105\n            ],\n            [\n              15.46875,\n              -3.51342105\n            ],\n            [\n              15.46875,\n              -3.86425462\n            ],\n            [\n              15.1171875,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -4.21494314\n            ],\n            [\n              15.1171875,\n              -3.86425462\n            ],\n            [\n              15.46875,\n              -3.86425462\n            ],\n            [\n              15.46875,\n              -4.21494314\n            ],\n            [\n              15.1171875,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -4.56547355\n            ],\n            [\n              15.1171875,\n              -4.21494314\n            ],\n            [\n              15.46875,\n              -4.21494314\n            ],\n            [\n              15.46875,\n              -4.56547355\n            ],\n            [\n              15.1171875,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -4.9158328\n            ],\n            [\n              15.1171875,\n              -4.56547355\n            ],\n            [\n              15.46875,\n              -4.56547355\n            ],\n            [\n              15.46875,\n              -4.9158328\n            ],\n            [\n              15.1171875,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -5.26600788\n            ],\n            [\n              15.1171875,\n              -4.9158328\n            ],\n            [\n              15.46875,\n              -4.9158328\n            ],\n            [\n              15.46875,\n              -5.26600788\n            ],\n            [\n              15.1171875,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -5.61598582\n            ],\n            [\n              15.1171875,\n              -5.26600788\n            ],\n            [\n              15.46875,\n              -5.26600788\n            ],\n            [\n              15.46875,\n              -5.61598582\n            ],\n            [\n              15.1171875,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -5.96575367\n            ],\n            [\n              15.1171875,\n              -5.61598582\n            ],\n            [\n              15.46875,\n              -5.61598582\n            ],\n            [\n              15.46875,\n              -5.96575367\n            ],\n            [\n              15.1171875,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              -6.31529854\n            ],\n            [\n              15.1171875,\n              -5.96575367\n            ],\n            [\n              15.46875,\n              -5.96575367\n            ],\n            [\n              15.46875,\n              -6.31529854\n            ],\n            [\n              15.1171875,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              0\n            ],\n            [\n              15.1171875,\n              0.35156029\n            ],\n            [\n              15.46875,\n              0.35156029\n            ],\n            [\n              15.46875,\n              0\n            ],\n            [\n              15.1171875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              0.35156029\n            ],\n            [\n              15.1171875,\n              0.70310735\n            ],\n            [\n              15.46875,\n              0.70310735\n            ],\n            [\n              15.46875,\n              0.35156029\n            ],\n            [\n              15.1171875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              0.70310735\n            ],\n            [\n              15.1171875,\n              1.05462794\n            ],\n            [\n              15.46875,\n              1.05462794\n            ],\n            [\n              15.46875,\n              0.70310735\n            ],\n            [\n              15.1171875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              1.05462794\n            ],\n            [\n              15.1171875,\n              1.40610884\n            ],\n            [\n              15.46875,\n              1.40610884\n            ],\n            [\n              15.46875,\n              1.05462794\n            ],\n            [\n              15.1171875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              1.40610884\n            ],\n            [\n              15.1171875,\n              1.75753681\n            ],\n            [\n              15.46875,\n              1.75753681\n            ],\n            [\n              15.46875,\n              1.40610884\n            ],\n            [\n              15.1171875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              1.75753681\n            ],\n            [\n              15.1171875,\n              2.10889866\n            ],\n            [\n              15.46875,\n              2.10889866\n            ],\n            [\n              15.46875,\n              1.75753681\n            ],\n            [\n              15.1171875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              2.10889866\n            ],\n            [\n              15.1171875,\n              2.46018118\n            ],\n            [\n              15.46875,\n              2.46018118\n            ],\n            [\n              15.46875,\n              2.10889866\n            ],\n            [\n              15.1171875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              2.46018118\n            ],\n            [\n              15.1171875,\n              2.81137119\n            ],\n            [\n              15.46875,\n              2.81137119\n            ],\n            [\n              15.46875,\n              2.46018118\n            ],\n            [\n              15.1171875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              2.81137119\n            ],\n            [\n              15.1171875,\n              3.16245553\n            ],\n            [\n              15.46875,\n              3.16245553\n            ],\n            [\n              15.46875,\n              2.81137119\n            ],\n            [\n              15.1171875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              3.16245553\n            ],\n            [\n              15.1171875,\n              3.51342105\n            ],\n            [\n              15.46875,\n              3.51342105\n            ],\n            [\n              15.46875,\n              3.16245553\n            ],\n            [\n              15.1171875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              3.51342105\n            ],\n            [\n              15.1171875,\n              3.86425462\n            ],\n            [\n              15.46875,\n              3.86425462\n            ],\n            [\n              15.46875,\n              3.51342105\n            ],\n            [\n              15.1171875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              3.86425462\n            ],\n            [\n              15.1171875,\n              4.21494314\n            ],\n            [\n              15.46875,\n              4.21494314\n            ],\n            [\n              15.46875,\n              3.86425462\n            ],\n            [\n              15.1171875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              4.21494314\n            ],\n            [\n              15.1171875,\n              4.56547355\n            ],\n            [\n              15.46875,\n              4.56547355\n            ],\n            [\n              15.46875,\n              4.21494314\n            ],\n            [\n              15.1171875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              4.56547355\n            ],\n            [\n              15.1171875,\n              4.9158328\n            ],\n            [\n              15.46875,\n              4.9158328\n            ],\n            [\n              15.46875,\n              4.56547355\n            ],\n            [\n              15.1171875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              4.9158328\n            ],\n            [\n              15.1171875,\n              5.26600788\n            ],\n            [\n              15.46875,\n              5.26600788\n            ],\n            [\n              15.46875,\n              4.9158328\n            ],\n            [\n              15.1171875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              5.26600788\n            ],\n            [\n              15.1171875,\n              5.61598582\n            ],\n            [\n              15.46875,\n              5.61598582\n            ],\n            [\n              15.46875,\n              5.26600788\n            ],\n            [\n              15.1171875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              5.61598582\n            ],\n            [\n              15.1171875,\n              5.96575367\n            ],\n            [\n              15.46875,\n              5.96575367\n            ],\n            [\n              15.46875,\n              5.61598582\n            ],\n            [\n              15.1171875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              5.96575367\n            ],\n            [\n              15.1171875,\n              6.31529854\n            ],\n            [\n              15.46875,\n              6.31529854\n            ],\n            [\n              15.46875,\n              5.96575367\n            ],\n            [\n              15.1171875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              6.31529854\n            ],\n            [\n              15.1171875,\n              6.66460756\n            ],\n            [\n              15.46875,\n              6.66460756\n            ],\n            [\n              15.46875,\n              6.31529854\n            ],\n            [\n              15.1171875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.1171875,\n              6.66460756\n            ],\n            [\n              15.1171875,\n              7.01366793\n            ],\n            [\n              15.46875,\n              7.01366793\n            ],\n            [\n              15.46875,\n              6.66460756\n            ],\n            [\n              15.1171875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -0.35156029\n            ],\n            [\n              15.46875,\n              0\n            ],\n            [\n              15.8203125,\n              0\n            ],\n            [\n              15.8203125,\n              -0.35156029\n            ],\n            [\n              15.46875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -0.70310735\n            ],\n            [\n              15.46875,\n              -0.35156029\n            ],\n            [\n              15.8203125,\n              -0.35156029\n            ],\n            [\n              15.8203125,\n              -0.70310735\n            ],\n            [\n              15.46875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -1.05462794\n            ],\n            [\n              15.46875,\n              -0.70310735\n            ],\n            [\n              15.8203125,\n              -0.70310735\n            ],\n            [\n              15.8203125,\n              -1.05462794\n            ],\n            [\n              15.46875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -1.40610884\n            ],\n            [\n              15.46875,\n              -1.05462794\n            ],\n            [\n              15.8203125,\n              -1.05462794\n            ],\n            [\n              15.8203125,\n              -1.40610884\n            ],\n            [\n              15.46875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -1.75753681\n            ],\n            [\n              15.46875,\n              -1.40610884\n            ],\n            [\n              15.8203125,\n              -1.40610884\n            ],\n            [\n              15.8203125,\n              -1.75753681\n            ],\n            [\n              15.46875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -2.10889866\n            ],\n            [\n              15.46875,\n              -1.75753681\n            ],\n            [\n              15.8203125,\n              -1.75753681\n            ],\n            [\n              15.8203125,\n              -2.10889866\n            ],\n            [\n              15.46875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -2.46018118\n            ],\n            [\n              15.46875,\n              -2.10889866\n            ],\n            [\n              15.8203125,\n              -2.10889866\n            ],\n            [\n              15.8203125,\n              -2.46018118\n            ],\n            [\n              15.46875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -2.81137119\n            ],\n            [\n              15.46875,\n              -2.46018118\n            ],\n            [\n              15.8203125,\n              -2.46018118\n            ],\n            [\n              15.8203125,\n              -2.81137119\n            ],\n            [\n              15.46875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -3.16245553\n            ],\n            [\n              15.46875,\n              -2.81137119\n            ],\n            [\n              15.8203125,\n              -2.81137119\n            ],\n            [\n              15.8203125,\n              -3.16245553\n            ],\n            [\n              15.46875,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -3.51342105\n            ],\n            [\n              15.46875,\n              -3.16245553\n            ],\n            [\n              15.8203125,\n              -3.16245553\n            ],\n            [\n              15.8203125,\n              -3.51342105\n            ],\n            [\n              15.46875,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -3.86425462\n            ],\n            [\n              15.46875,\n              -3.51342105\n            ],\n            [\n              15.8203125,\n              -3.51342105\n            ],\n            [\n              15.8203125,\n              -3.86425462\n            ],\n            [\n              15.46875,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -4.21494314\n            ],\n            [\n              15.46875,\n              -3.86425462\n            ],\n            [\n              15.8203125,\n              -3.86425462\n            ],\n            [\n              15.8203125,\n              -4.21494314\n            ],\n            [\n              15.46875,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -4.56547355\n            ],\n            [\n              15.46875,\n              -4.21494314\n            ],\n            [\n              15.8203125,\n              -4.21494314\n            ],\n            [\n              15.8203125,\n              -4.56547355\n            ],\n            [\n              15.46875,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -4.9158328\n            ],\n            [\n              15.46875,\n              -4.56547355\n            ],\n            [\n              15.8203125,\n              -4.56547355\n            ],\n            [\n              15.8203125,\n              -4.9158328\n            ],\n            [\n              15.46875,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -5.26600788\n            ],\n            [\n              15.46875,\n              -4.9158328\n            ],\n            [\n              15.8203125,\n              -4.9158328\n            ],\n            [\n              15.8203125,\n              -5.26600788\n            ],\n            [\n              15.46875,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              -5.61598582\n            ],\n            [\n              15.46875,\n              -5.26600788\n            ],\n            [\n              15.8203125,\n              -5.26600788\n            ],\n            [\n              15.8203125,\n              -5.61598582\n            ],\n            [\n              15.46875,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              0\n            ],\n            [\n              15.46875,\n              0.35156029\n            ],\n            [\n              15.8203125,\n              0.35156029\n            ],\n            [\n              15.8203125,\n              0\n            ],\n            [\n              15.46875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              0.35156029\n            ],\n            [\n              15.46875,\n              0.70310735\n            ],\n            [\n              15.8203125,\n              0.70310735\n            ],\n            [\n              15.8203125,\n              0.35156029\n            ],\n            [\n              15.46875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              0.70310735\n            ],\n            [\n              15.46875,\n              1.05462794\n            ],\n            [\n              15.8203125,\n              1.05462794\n            ],\n            [\n              15.8203125,\n              0.70310735\n            ],\n            [\n              15.46875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              1.05462794\n            ],\n            [\n              15.46875,\n              1.40610884\n            ],\n            [\n              15.8203125,\n              1.40610884\n            ],\n            [\n              15.8203125,\n              1.05462794\n            ],\n            [\n              15.46875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              1.40610884\n            ],\n            [\n              15.46875,\n              1.75753681\n            ],\n            [\n              15.8203125,\n              1.75753681\n            ],\n            [\n              15.8203125,\n              1.40610884\n            ],\n            [\n              15.46875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              1.75753681\n            ],\n            [\n              15.46875,\n              2.10889866\n            ],\n            [\n              15.8203125,\n              2.10889866\n            ],\n            [\n              15.8203125,\n              1.75753681\n            ],\n            [\n              15.46875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              2.10889866\n            ],\n            [\n              15.46875,\n              2.46018118\n            ],\n            [\n              15.8203125,\n              2.46018118\n            ],\n            [\n              15.8203125,\n              2.10889866\n            ],\n            [\n              15.46875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              2.46018118\n            ],\n            [\n              15.46875,\n              2.81137119\n            ],\n            [\n              15.8203125,\n              2.81137119\n            ],\n            [\n              15.8203125,\n              2.46018118\n            ],\n            [\n              15.46875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              2.81137119\n            ],\n            [\n              15.46875,\n              3.16245553\n            ],\n            [\n              15.8203125,\n              3.16245553\n            ],\n            [\n              15.8203125,\n              2.81137119\n            ],\n            [\n              15.46875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              3.16245553\n            ],\n            [\n              15.46875,\n              3.51342105\n            ],\n            [\n              15.8203125,\n              3.51342105\n            ],\n            [\n              15.8203125,\n              3.16245553\n            ],\n            [\n              15.46875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              3.51342105\n            ],\n            [\n              15.46875,\n              3.86425462\n            ],\n            [\n              15.8203125,\n              3.86425462\n            ],\n            [\n              15.8203125,\n              3.51342105\n            ],\n            [\n              15.46875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              3.86425462\n            ],\n            [\n              15.46875,\n              4.21494314\n            ],\n            [\n              15.8203125,\n              4.21494314\n            ],\n            [\n              15.8203125,\n              3.86425462\n            ],\n            [\n              15.46875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              4.21494314\n            ],\n            [\n              15.46875,\n              4.56547355\n            ],\n            [\n              15.8203125,\n              4.56547355\n            ],\n            [\n              15.8203125,\n              4.21494314\n            ],\n            [\n              15.46875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              4.56547355\n            ],\n            [\n              15.46875,\n              4.9158328\n            ],\n            [\n              15.8203125,\n              4.9158328\n            ],\n            [\n              15.8203125,\n              4.56547355\n            ],\n            [\n              15.46875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              4.9158328\n            ],\n            [\n              15.46875,\n              5.26600788\n            ],\n            [\n              15.8203125,\n              5.26600788\n            ],\n            [\n              15.8203125,\n              4.9158328\n            ],\n            [\n              15.46875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              5.26600788\n            ],\n            [\n              15.46875,\n              5.61598582\n            ],\n            [\n              15.8203125,\n              5.61598582\n            ],\n            [\n              15.8203125,\n              5.26600788\n            ],\n            [\n              15.46875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              5.61598582\n            ],\n            [\n              15.46875,\n              5.96575367\n            ],\n            [\n              15.8203125,\n              5.96575367\n            ],\n            [\n              15.8203125,\n              5.61598582\n            ],\n            [\n              15.46875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              5.96575367\n            ],\n            [\n              15.46875,\n              6.31529854\n            ],\n            [\n              15.8203125,\n              6.31529854\n            ],\n            [\n              15.8203125,\n              5.96575367\n            ],\n            [\n              15.46875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              6.31529854\n            ],\n            [\n              15.46875,\n              6.66460756\n            ],\n            [\n              15.8203125,\n              6.66460756\n            ],\n            [\n              15.8203125,\n              6.31529854\n            ],\n            [\n              15.46875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              6.66460756\n            ],\n            [\n              15.46875,\n              7.01366793\n            ],\n            [\n              15.8203125,\n              7.01366793\n            ],\n            [\n              15.8203125,\n              6.66460756\n            ],\n            [\n              15.46875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.46875,\n              7.01366793\n            ],\n            [\n              15.46875,\n              7.36246687\n            ],\n            [\n              15.8203125,\n              7.36246687\n            ],\n            [\n              15.8203125,\n              7.01366793\n            ],\n            [\n              15.46875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -0.35156029\n            ],\n            [\n              15.8203125,\n              0\n            ],\n            [\n              16.171875,\n              0\n            ],\n            [\n              16.171875,\n              -0.35156029\n            ],\n            [\n              15.8203125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -0.70310735\n            ],\n            [\n              15.8203125,\n              -0.35156029\n            ],\n            [\n              16.171875,\n              -0.35156029\n            ],\n            [\n              16.171875,\n              -0.70310735\n            ],\n            [\n              15.8203125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -1.05462794\n            ],\n            [\n              15.8203125,\n              -0.70310735\n            ],\n            [\n              16.171875,\n              -0.70310735\n            ],\n            [\n              16.171875,\n              -1.05462794\n            ],\n            [\n              15.8203125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -1.40610884\n            ],\n            [\n              15.8203125,\n              -1.05462794\n            ],\n            [\n              16.171875,\n              -1.05462794\n            ],\n            [\n              16.171875,\n              -1.40610884\n            ],\n            [\n              15.8203125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -1.75753681\n            ],\n            [\n              15.8203125,\n              -1.40610884\n            ],\n            [\n              16.171875,\n              -1.40610884\n            ],\n            [\n              16.171875,\n              -1.75753681\n            ],\n            [\n              15.8203125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -2.10889866\n            ],\n            [\n              15.8203125,\n              -1.75753681\n            ],\n            [\n              16.171875,\n              -1.75753681\n            ],\n            [\n              16.171875,\n              -2.10889866\n            ],\n            [\n              15.8203125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -2.46018118\n            ],\n            [\n              15.8203125,\n              -2.10889866\n            ],\n            [\n              16.171875,\n              -2.10889866\n            ],\n            [\n              16.171875,\n              -2.46018118\n            ],\n            [\n              15.8203125,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -2.81137119\n            ],\n            [\n              15.8203125,\n              -2.46018118\n            ],\n            [\n              16.171875,\n              -2.46018118\n            ],\n            [\n              16.171875,\n              -2.81137119\n            ],\n            [\n              15.8203125,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -3.16245553\n            ],\n            [\n              15.8203125,\n              -2.81137119\n            ],\n            [\n              16.171875,\n              -2.81137119\n            ],\n            [\n              16.171875,\n              -3.16245553\n            ],\n            [\n              15.8203125,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -3.51342105\n            ],\n            [\n              15.8203125,\n              -3.16245553\n            ],\n            [\n              16.171875,\n              -3.16245553\n            ],\n            [\n              16.171875,\n              -3.51342105\n            ],\n            [\n              15.8203125,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              -3.86425462\n            ],\n            [\n              15.8203125,\n              -3.51342105\n            ],\n            [\n              16.171875,\n              -3.51342105\n            ],\n            [\n              16.171875,\n              -3.86425462\n            ],\n            [\n              15.8203125,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              0\n            ],\n            [\n              15.8203125,\n              0.35156029\n            ],\n            [\n              16.171875,\n              0.35156029\n            ],\n            [\n              16.171875,\n              0\n            ],\n            [\n              15.8203125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              0.35156029\n            ],\n            [\n              15.8203125,\n              0.70310735\n            ],\n            [\n              16.171875,\n              0.70310735\n            ],\n            [\n              16.171875,\n              0.35156029\n            ],\n            [\n              15.8203125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              0.70310735\n            ],\n            [\n              15.8203125,\n              1.05462794\n            ],\n            [\n              16.171875,\n              1.05462794\n            ],\n            [\n              16.171875,\n              0.70310735\n            ],\n            [\n              15.8203125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              1.05462794\n            ],\n            [\n              15.8203125,\n              1.40610884\n            ],\n            [\n              16.171875,\n              1.40610884\n            ],\n            [\n              16.171875,\n              1.05462794\n            ],\n            [\n              15.8203125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              1.40610884\n            ],\n            [\n              15.8203125,\n              1.75753681\n            ],\n            [\n              16.171875,\n              1.75753681\n            ],\n            [\n              16.171875,\n              1.40610884\n            ],\n            [\n              15.8203125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              1.75753681\n            ],\n            [\n              15.8203125,\n              2.10889866\n            ],\n            [\n              16.171875,\n              2.10889866\n            ],\n            [\n              16.171875,\n              1.75753681\n            ],\n            [\n              15.8203125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              2.10889866\n            ],\n            [\n              15.8203125,\n              2.46018118\n            ],\n            [\n              16.171875,\n              2.46018118\n            ],\n            [\n              16.171875,\n              2.10889866\n            ],\n            [\n              15.8203125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              2.46018118\n            ],\n            [\n              15.8203125,\n              2.81137119\n            ],\n            [\n              16.171875,\n              2.81137119\n            ],\n            [\n              16.171875,\n              2.46018118\n            ],\n            [\n              15.8203125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              2.81137119\n            ],\n            [\n              15.8203125,\n              3.16245553\n            ],\n            [\n              16.171875,\n              3.16245553\n            ],\n            [\n              16.171875,\n              2.81137119\n            ],\n            [\n              15.8203125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              3.16245553\n            ],\n            [\n              15.8203125,\n              3.51342105\n            ],\n            [\n              16.171875,\n              3.51342105\n            ],\n            [\n              16.171875,\n              3.16245553\n            ],\n            [\n              15.8203125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              3.51342105\n            ],\n            [\n              15.8203125,\n              3.86425462\n            ],\n            [\n              16.171875,\n              3.86425462\n            ],\n            [\n              16.171875,\n              3.51342105\n            ],\n            [\n              15.8203125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              3.86425462\n            ],\n            [\n              15.8203125,\n              4.21494314\n            ],\n            [\n              16.171875,\n              4.21494314\n            ],\n            [\n              16.171875,\n              3.86425462\n            ],\n            [\n              15.8203125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              4.21494314\n            ],\n            [\n              15.8203125,\n              4.56547355\n            ],\n            [\n              16.171875,\n              4.56547355\n            ],\n            [\n              16.171875,\n              4.21494314\n            ],\n            [\n              15.8203125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              4.56547355\n            ],\n            [\n              15.8203125,\n              4.9158328\n            ],\n            [\n              16.171875,\n              4.9158328\n            ],\n            [\n              16.171875,\n              4.56547355\n            ],\n            [\n              15.8203125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              4.9158328\n            ],\n            [\n              15.8203125,\n              5.26600788\n            ],\n            [\n              16.171875,\n              5.26600788\n            ],\n            [\n              16.171875,\n              4.9158328\n            ],\n            [\n              15.8203125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              5.26600788\n            ],\n            [\n              15.8203125,\n              5.61598582\n            ],\n            [\n              16.171875,\n              5.61598582\n            ],\n            [\n              16.171875,\n              5.26600788\n            ],\n            [\n              15.8203125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              5.61598582\n            ],\n            [\n              15.8203125,\n              5.96575367\n            ],\n            [\n              16.171875,\n              5.96575367\n            ],\n            [\n              16.171875,\n              5.61598582\n            ],\n            [\n              15.8203125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              5.96575367\n            ],\n            [\n              15.8203125,\n              6.31529854\n            ],\n            [\n              16.171875,\n              6.31529854\n            ],\n            [\n              16.171875,\n              5.96575367\n            ],\n            [\n              15.8203125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              6.31529854\n            ],\n            [\n              15.8203125,\n              6.66460756\n            ],\n            [\n              16.171875,\n              6.66460756\n            ],\n            [\n              16.171875,\n              6.31529854\n            ],\n            [\n              15.8203125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              6.66460756\n            ],\n            [\n              15.8203125,\n              7.01366793\n            ],\n            [\n              16.171875,\n              7.01366793\n            ],\n            [\n              16.171875,\n              6.66460756\n            ],\n            [\n              15.8203125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              7.01366793\n            ],\n            [\n              15.8203125,\n              7.36246687\n            ],\n            [\n              16.171875,\n              7.36246687\n            ],\n            [\n              16.171875,\n              7.01366793\n            ],\n            [\n              15.8203125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              7.36246687\n            ],\n            [\n              15.8203125,\n              7.71099166\n            ],\n            [\n              16.171875,\n              7.71099166\n            ],\n            [\n              16.171875,\n              7.36246687\n            ],\n            [\n              15.8203125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.8203125,\n              7.71099166\n            ],\n            [\n              15.8203125,\n              8.05922963\n            ],\n            [\n              16.171875,\n              8.05922963\n            ],\n            [\n              16.171875,\n              7.71099166\n            ],\n            [\n              15.8203125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              -0.35156029\n            ],\n            [\n              16.171875,\n              0\n            ],\n            [\n              16.5234375,\n              0\n            ],\n            [\n              16.5234375,\n              -0.35156029\n            ],\n            [\n              16.171875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              -0.70310735\n            ],\n            [\n              16.171875,\n              -0.35156029\n            ],\n            [\n              16.5234375,\n              -0.35156029\n            ],\n            [\n              16.5234375,\n              -0.70310735\n            ],\n            [\n              16.171875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              -1.05462794\n            ],\n            [\n              16.171875,\n              -0.70310735\n            ],\n            [\n              16.5234375,\n              -0.70310735\n            ],\n            [\n              16.5234375,\n              -1.05462794\n            ],\n            [\n              16.171875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              -1.40610884\n            ],\n            [\n              16.171875,\n              -1.05462794\n            ],\n            [\n              16.5234375,\n              -1.05462794\n            ],\n            [\n              16.5234375,\n              -1.40610884\n            ],\n            [\n              16.171875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              -1.75753681\n            ],\n            [\n              16.171875,\n              -1.40610884\n            ],\n            [\n              16.5234375,\n              -1.40610884\n            ],\n            [\n              16.5234375,\n              -1.75753681\n            ],\n            [\n              16.171875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              -2.10889866\n            ],\n            [\n              16.171875,\n              -1.75753681\n            ],\n            [\n              16.5234375,\n              -1.75753681\n            ],\n            [\n              16.5234375,\n              -2.10889866\n            ],\n            [\n              16.171875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              0\n            ],\n            [\n              16.171875,\n              0.35156029\n            ],\n            [\n              16.5234375,\n              0.35156029\n            ],\n            [\n              16.5234375,\n              0\n            ],\n            [\n              16.171875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              0.35156029\n            ],\n            [\n              16.171875,\n              0.70310735\n            ],\n            [\n              16.5234375,\n              0.70310735\n            ],\n            [\n              16.5234375,\n              0.35156029\n            ],\n            [\n              16.171875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              0.70310735\n            ],\n            [\n              16.171875,\n              1.05462794\n            ],\n            [\n              16.5234375,\n              1.05462794\n            ],\n            [\n              16.5234375,\n              0.70310735\n            ],\n            [\n              16.171875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              1.05462794\n            ],\n            [\n              16.171875,\n              1.40610884\n            ],\n            [\n              16.5234375,\n              1.40610884\n            ],\n            [\n              16.5234375,\n              1.05462794\n            ],\n            [\n              16.171875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              1.40610884\n            ],\n            [\n              16.171875,\n              1.75753681\n            ],\n            [\n              16.5234375,\n              1.75753681\n            ],\n            [\n              16.5234375,\n              1.40610884\n            ],\n            [\n              16.171875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              1.75753681\n            ],\n            [\n              16.171875,\n              2.10889866\n            ],\n            [\n              16.5234375,\n              2.10889866\n            ],\n            [\n              16.5234375,\n              1.75753681\n            ],\n            [\n              16.171875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              2.10889866\n            ],\n            [\n              16.171875,\n              2.46018118\n            ],\n            [\n              16.5234375,\n              2.46018118\n            ],\n            [\n              16.5234375,\n              2.10889866\n            ],\n            [\n              16.171875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              2.46018118\n            ],\n            [\n              16.171875,\n              2.81137119\n            ],\n            [\n              16.5234375,\n              2.81137119\n            ],\n            [\n              16.5234375,\n              2.46018118\n            ],\n            [\n              16.171875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              2.81137119\n            ],\n            [\n              16.171875,\n              3.16245553\n            ],\n            [\n              16.5234375,\n              3.16245553\n            ],\n            [\n              16.5234375,\n              2.81137119\n            ],\n            [\n              16.171875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              3.16245553\n            ],\n            [\n              16.171875,\n              3.51342105\n            ],\n            [\n              16.5234375,\n              3.51342105\n            ],\n            [\n              16.5234375,\n              3.16245553\n            ],\n            [\n              16.171875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              3.51342105\n            ],\n            [\n              16.171875,\n              3.86425462\n            ],\n            [\n              16.5234375,\n              3.86425462\n            ],\n            [\n              16.5234375,\n              3.51342105\n            ],\n            [\n              16.171875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              3.86425462\n            ],\n            [\n              16.171875,\n              4.21494314\n            ],\n            [\n              16.5234375,\n              4.21494314\n            ],\n            [\n              16.5234375,\n              3.86425462\n            ],\n            [\n              16.171875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              4.21494314\n            ],\n            [\n              16.171875,\n              4.56547355\n            ],\n            [\n              16.5234375,\n              4.56547355\n            ],\n            [\n              16.5234375,\n              4.21494314\n            ],\n            [\n              16.171875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              4.56547355\n            ],\n            [\n              16.171875,\n              4.9158328\n            ],\n            [\n              16.5234375,\n              4.9158328\n            ],\n            [\n              16.5234375,\n              4.56547355\n            ],\n            [\n              16.171875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              4.9158328\n            ],\n            [\n              16.171875,\n              5.26600788\n            ],\n            [\n              16.5234375,\n              5.26600788\n            ],\n            [\n              16.5234375,\n              4.9158328\n            ],\n            [\n              16.171875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              5.26600788\n            ],\n            [\n              16.171875,\n              5.61598582\n            ],\n            [\n              16.5234375,\n              5.61598582\n            ],\n            [\n              16.5234375,\n              5.26600788\n            ],\n            [\n              16.171875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              5.61598582\n            ],\n            [\n              16.171875,\n              5.96575367\n            ],\n            [\n              16.5234375,\n              5.96575367\n            ],\n            [\n              16.5234375,\n              5.61598582\n            ],\n            [\n              16.171875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              5.96575367\n            ],\n            [\n              16.171875,\n              6.31529854\n            ],\n            [\n              16.5234375,\n              6.31529854\n            ],\n            [\n              16.5234375,\n              5.96575367\n            ],\n            [\n              16.171875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              6.31529854\n            ],\n            [\n              16.171875,\n              6.66460756\n            ],\n            [\n              16.5234375,\n              6.66460756\n            ],\n            [\n              16.5234375,\n              6.31529854\n            ],\n            [\n              16.171875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              6.66460756\n            ],\n            [\n              16.171875,\n              7.01366793\n            ],\n            [\n              16.5234375,\n              7.01366793\n            ],\n            [\n              16.5234375,\n              6.66460756\n            ],\n            [\n              16.171875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              7.01366793\n            ],\n            [\n              16.171875,\n              7.36246687\n            ],\n            [\n              16.5234375,\n              7.36246687\n            ],\n            [\n              16.5234375,\n              7.01366793\n            ],\n            [\n              16.171875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              7.36246687\n            ],\n            [\n              16.171875,\n              7.71099166\n            ],\n            [\n              16.5234375,\n              7.71099166\n            ],\n            [\n              16.5234375,\n              7.36246687\n            ],\n            [\n              16.171875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              7.71099166\n            ],\n            [\n              16.171875,\n              8.05922963\n            ],\n            [\n              16.5234375,\n              8.05922963\n            ],\n            [\n              16.5234375,\n              7.71099166\n            ],\n            [\n              16.171875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              8.05922963\n            ],\n            [\n              16.171875,\n              8.40716816\n            ],\n            [\n              16.5234375,\n              8.40716816\n            ],\n            [\n              16.5234375,\n              8.05922963\n            ],\n            [\n              16.171875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.171875,\n              8.40716816\n            ],\n            [\n              16.171875,\n              8.7547947\n            ],\n            [\n              16.5234375,\n              8.7547947\n            ],\n            [\n              16.5234375,\n              8.40716816\n            ],\n            [\n              16.171875,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              -0.35156029\n            ],\n            [\n              16.5234375,\n              0\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              16.875,\n              -0.35156029\n            ],\n            [\n              16.5234375,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              0\n            ],\n            [\n              16.5234375,\n              0.35156029\n            ],\n            [\n              16.875,\n              0.35156029\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              16.5234375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              0.35156029\n            ],\n            [\n              16.5234375,\n              0.70310735\n            ],\n            [\n              16.875,\n              0.70310735\n            ],\n            [\n              16.875,\n              0.35156029\n            ],\n            [\n              16.5234375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              0.70310735\n            ],\n            [\n              16.5234375,\n              1.05462794\n            ],\n            [\n              16.875,\n              1.05462794\n            ],\n            [\n              16.875,\n              0.70310735\n            ],\n            [\n              16.5234375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              1.05462794\n            ],\n            [\n              16.5234375,\n              1.40610884\n            ],\n            [\n              16.875,\n              1.40610884\n            ],\n            [\n              16.875,\n              1.05462794\n            ],\n            [\n              16.5234375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              1.40610884\n            ],\n            [\n              16.5234375,\n              1.75753681\n            ],\n            [\n              16.875,\n              1.75753681\n            ],\n            [\n              16.875,\n              1.40610884\n            ],\n            [\n              16.5234375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              1.75753681\n            ],\n            [\n              16.5234375,\n              2.10889866\n            ],\n            [\n              16.875,\n              2.10889866\n            ],\n            [\n              16.875,\n              1.75753681\n            ],\n            [\n              16.5234375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              2.10889866\n            ],\n            [\n              16.5234375,\n              2.46018118\n            ],\n            [\n              16.875,\n              2.46018118\n            ],\n            [\n              16.875,\n              2.10889866\n            ],\n            [\n              16.5234375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              2.46018118\n            ],\n            [\n              16.5234375,\n              2.81137119\n            ],\n            [\n              16.875,\n              2.81137119\n            ],\n            [\n              16.875,\n              2.46018118\n            ],\n            [\n              16.5234375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              2.81137119\n            ],\n            [\n              16.5234375,\n              3.16245553\n            ],\n            [\n              16.875,\n              3.16245553\n            ],\n            [\n              16.875,\n              2.81137119\n            ],\n            [\n              16.5234375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              3.16245553\n            ],\n            [\n              16.5234375,\n              3.51342105\n            ],\n            [\n              16.875,\n              3.51342105\n            ],\n            [\n              16.875,\n              3.16245553\n            ],\n            [\n              16.5234375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              3.51342105\n            ],\n            [\n              16.5234375,\n              3.86425462\n            ],\n            [\n              16.875,\n              3.86425462\n            ],\n            [\n              16.875,\n              3.51342105\n            ],\n            [\n              16.5234375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              3.86425462\n            ],\n            [\n              16.5234375,\n              4.21494314\n            ],\n            [\n              16.875,\n              4.21494314\n            ],\n            [\n              16.875,\n              3.86425462\n            ],\n            [\n              16.5234375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              4.21494314\n            ],\n            [\n              16.5234375,\n              4.56547355\n            ],\n            [\n              16.875,\n              4.56547355\n            ],\n            [\n              16.875,\n              4.21494314\n            ],\n            [\n              16.5234375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              4.56547355\n            ],\n            [\n              16.5234375,\n              4.9158328\n            ],\n            [\n              16.875,\n              4.9158328\n            ],\n            [\n              16.875,\n              4.56547355\n            ],\n            [\n              16.5234375,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              4.9158328\n            ],\n            [\n              16.5234375,\n              5.26600788\n            ],\n            [\n              16.875,\n              5.26600788\n            ],\n            [\n              16.875,\n              4.9158328\n            ],\n            [\n              16.5234375,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              5.26600788\n            ],\n            [\n              16.5234375,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.26600788\n            ],\n            [\n              16.5234375,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              5.61598582\n            ],\n            [\n              16.5234375,\n              5.96575367\n            ],\n            [\n              16.875,\n              5.96575367\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              16.5234375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              5.96575367\n            ],\n            [\n              16.5234375,\n              6.31529854\n            ],\n            [\n              16.875,\n              6.31529854\n            ],\n            [\n              16.875,\n              5.96575367\n            ],\n            [\n              16.5234375,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              6.31529854\n            ],\n            [\n              16.5234375,\n              6.66460756\n            ],\n            [\n              16.875,\n              6.66460756\n            ],\n            [\n              16.875,\n              6.31529854\n            ],\n            [\n              16.5234375,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              6.66460756\n            ],\n            [\n              16.5234375,\n              7.01366793\n            ],\n            [\n              16.875,\n              7.01366793\n            ],\n            [\n              16.875,\n              6.66460756\n            ],\n            [\n              16.5234375,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              7.01366793\n            ],\n            [\n              16.5234375,\n              7.36246687\n            ],\n            [\n              16.875,\n              7.36246687\n            ],\n            [\n              16.875,\n              7.01366793\n            ],\n            [\n              16.5234375,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              7.36246687\n            ],\n            [\n              16.5234375,\n              7.71099166\n            ],\n            [\n              16.875,\n              7.71099166\n            ],\n            [\n              16.875,\n              7.36246687\n            ],\n            [\n              16.5234375,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              7.71099166\n            ],\n            [\n              16.5234375,\n              8.05922963\n            ],\n            [\n              16.875,\n              8.05922963\n            ],\n            [\n              16.875,\n              7.71099166\n            ],\n            [\n              16.5234375,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              8.05922963\n            ],\n            [\n              16.5234375,\n              8.40716816\n            ],\n            [\n              16.875,\n              8.40716816\n            ],\n            [\n              16.875,\n              8.05922963\n            ],\n            [\n              16.5234375,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              8.40716816\n            ],\n            [\n              16.5234375,\n              8.7547947\n            ],\n            [\n              16.875,\n              8.7547947\n            ],\n            [\n              16.875,\n              8.40716816\n            ],\n            [\n              16.5234375,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              8.7547947\n            ],\n            [\n              16.5234375,\n              9.10209674\n            ],\n            [\n              16.875,\n              9.10209674\n            ],\n            [\n              16.875,\n              8.7547947\n            ],\n            [\n              16.5234375,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              9.10209674\n            ],\n            [\n              16.5234375,\n              9.44906183\n            ],\n            [\n              16.875,\n              9.44906183\n            ],\n            [\n              16.875,\n              9.10209674\n            ],\n            [\n              16.5234375,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              9.44906183\n            ],\n            [\n              16.5234375,\n              9.79567758\n            ],\n            [\n              16.875,\n              9.79567758\n            ],\n            [\n              16.875,\n              9.44906183\n            ],\n            [\n              16.5234375,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -0.35156029\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              17.2265625,\n              0\n            ],\n            [\n              17.2265625,\n              -0.35156029\n            ],\n            [\n              16.875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -0.70310735\n            ],\n            [\n              16.875,\n              -0.35156029\n            ],\n            [\n              17.2265625,\n              -0.35156029\n            ],\n            [\n              17.2265625,\n              -0.70310735\n            ],\n            [\n              16.875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -1.05462794\n            ],\n            [\n              16.875,\n              -0.70310735\n            ],\n            [\n              17.2265625,\n              -0.70310735\n            ],\n            [\n              17.2265625,\n              -1.05462794\n            ],\n            [\n              16.875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -1.40610884\n            ],\n            [\n              16.875,\n              -1.05462794\n            ],\n            [\n              17.2265625,\n              -1.05462794\n            ],\n            [\n              17.2265625,\n              -1.40610884\n            ],\n            [\n              16.875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -1.75753681\n            ],\n            [\n              16.875,\n              -1.40610884\n            ],\n            [\n              17.2265625,\n              -1.40610884\n            ],\n            [\n              17.2265625,\n              -1.75753681\n            ],\n            [\n              16.875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -2.10889866\n            ],\n            [\n              16.875,\n              -1.75753681\n            ],\n            [\n              17.2265625,\n              -1.75753681\n            ],\n            [\n              17.2265625,\n              -2.10889866\n            ],\n            [\n              16.875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -2.46018118\n            ],\n            [\n              16.875,\n              -2.10889866\n            ],\n            [\n              17.2265625,\n              -2.10889866\n            ],\n            [\n              17.2265625,\n              -2.46018118\n            ],\n            [\n              16.875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -2.81137119\n            ],\n            [\n              16.875,\n              -2.46018118\n            ],\n            [\n              17.2265625,\n              -2.46018118\n            ],\n            [\n              17.2265625,\n              -2.81137119\n            ],\n            [\n              16.875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              0\n            ],\n            [\n              16.875,\n              0.35156029\n            ],\n            [\n              17.2265625,\n              0.35156029\n            ],\n            [\n              17.2265625,\n              0\n            ],\n            [\n              16.875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              0.35156029\n            ],\n            [\n              16.875,\n              0.70310735\n            ],\n            [\n              17.2265625,\n              0.70310735\n            ],\n            [\n              17.2265625,\n              0.35156029\n            ],\n            [\n              16.875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              0.70310735\n            ],\n            [\n              16.875,\n              1.05462794\n            ],\n            [\n              17.2265625,\n              1.05462794\n            ],\n            [\n              17.2265625,\n              0.70310735\n            ],\n            [\n              16.875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              1.05462794\n            ],\n            [\n              16.875,\n              1.40610884\n            ],\n            [\n              17.2265625,\n              1.40610884\n            ],\n            [\n              17.2265625,\n              1.05462794\n            ],\n            [\n              16.875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              1.40610884\n            ],\n            [\n              16.875,\n              1.75753681\n            ],\n            [\n              17.2265625,\n              1.75753681\n            ],\n            [\n              17.2265625,\n              1.40610884\n            ],\n            [\n              16.875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              1.75753681\n            ],\n            [\n              16.875,\n              2.10889866\n            ],\n            [\n              17.2265625,\n              2.10889866\n            ],\n            [\n              17.2265625,\n              1.75753681\n            ],\n            [\n              16.875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              10.14193169\n            ],\n            [\n              16.875,\n              10.48781188\n            ],\n            [\n              17.2265625,\n              10.48781188\n            ],\n            [\n              17.2265625,\n              10.14193169\n            ],\n            [\n              16.875,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              10.48781188\n            ],\n            [\n              16.875,\n              10.83330598\n            ],\n            [\n              17.2265625,\n              10.83330598\n            ],\n            [\n              17.2265625,\n              10.48781188\n            ],\n            [\n              16.875,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              10.83330598\n            ],\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              17.2265625,\n              11.17840187\n            ],\n            [\n              17.2265625,\n              10.83330598\n            ],\n            [\n              16.875,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              2.10889866\n            ],\n            [\n              16.875,\n              2.46018118\n            ],\n            [\n              17.2265625,\n              2.46018118\n            ],\n            [\n              17.2265625,\n              2.10889866\n            ],\n            [\n              16.875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              2.46018118\n            ],\n            [\n              16.875,\n              2.81137119\n            ],\n            [\n              17.2265625,\n              2.81137119\n            ],\n            [\n              17.2265625,\n              2.46018118\n            ],\n            [\n              16.875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              2.81137119\n            ],\n            [\n              16.875,\n              3.16245553\n            ],\n            [\n              17.2265625,\n              3.16245553\n            ],\n            [\n              17.2265625,\n              2.81137119\n            ],\n            [\n              16.875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              3.16245553\n            ],\n            [\n              16.875,\n              3.51342105\n            ],\n            [\n              17.2265625,\n              3.51342105\n            ],\n            [\n              17.2265625,\n              3.16245553\n            ],\n            [\n              16.875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              3.51342105\n            ],\n            [\n              16.875,\n              3.86425462\n            ],\n            [\n              17.2265625,\n              3.86425462\n            ],\n            [\n              17.2265625,\n              3.51342105\n            ],\n            [\n              16.875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              3.86425462\n            ],\n            [\n              16.875,\n              4.21494314\n            ],\n            [\n              17.2265625,\n              4.21494314\n            ],\n            [\n              17.2265625,\n              3.86425462\n            ],\n            [\n              16.875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              4.21494314\n            ],\n            [\n              16.875,\n              4.56547355\n            ],\n            [\n              17.2265625,\n              4.56547355\n            ],\n            [\n              17.2265625,\n              4.21494314\n            ],\n            [\n              16.875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              4.56547355\n            ],\n            [\n              16.875,\n              4.9158328\n            ],\n            [\n              17.2265625,\n              4.9158328\n            ],\n            [\n              17.2265625,\n              4.56547355\n            ],\n            [\n              16.875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              4.9158328\n            ],\n            [\n              16.875,\n              5.26600788\n            ],\n            [\n              17.2265625,\n              5.26600788\n            ],\n            [\n              17.2265625,\n              4.9158328\n            ],\n            [\n              16.875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              5.26600788\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              17.2265625,\n              5.61598582\n            ],\n            [\n              17.2265625,\n              5.26600788\n            ],\n            [\n              16.875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.96575367\n            ],\n            [\n              17.2265625,\n              5.96575367\n            ],\n            [\n              17.2265625,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              5.96575367\n            ],\n            [\n              16.875,\n              6.31529854\n            ],\n            [\n              17.2265625,\n              6.31529854\n            ],\n            [\n              17.2265625,\n              5.96575367\n            ],\n            [\n              16.875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              6.31529854\n            ],\n            [\n              16.875,\n              6.66460756\n            ],\n            [\n              17.2265625,\n              6.66460756\n            ],\n            [\n              17.2265625,\n              6.31529854\n            ],\n            [\n              16.875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              6.66460756\n            ],\n            [\n              16.875,\n              7.01366793\n            ],\n            [\n              17.2265625,\n              7.01366793\n            ],\n            [\n              17.2265625,\n              6.66460756\n            ],\n            [\n              16.875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              7.01366793\n            ],\n            [\n              16.875,\n              7.36246687\n            ],\n            [\n              17.2265625,\n              7.36246687\n            ],\n            [\n              17.2265625,\n              7.01366793\n            ],\n            [\n              16.875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              7.36246687\n            ],\n            [\n              16.875,\n              7.71099166\n            ],\n            [\n              17.2265625,\n              7.71099166\n            ],\n            [\n              17.2265625,\n              7.36246687\n            ],\n            [\n              16.875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              7.71099166\n            ],\n            [\n              16.875,\n              8.05922963\n            ],\n            [\n              17.2265625,\n              8.05922963\n            ],\n            [\n              17.2265625,\n              7.71099166\n            ],\n            [\n              16.875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              8.05922963\n            ],\n            [\n              16.875,\n              8.40716816\n            ],\n            [\n              17.2265625,\n              8.40716816\n            ],\n            [\n              17.2265625,\n              8.05922963\n            ],\n            [\n              16.875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              8.40716816\n            ],\n            [\n              16.875,\n              8.7547947\n            ],\n            [\n              17.2265625,\n              8.7547947\n            ],\n            [\n              17.2265625,\n              8.40716816\n            ],\n            [\n              16.875,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              8.7547947\n            ],\n            [\n              16.875,\n              9.10209674\n            ],\n            [\n              17.2265625,\n              9.10209674\n            ],\n            [\n              17.2265625,\n              8.7547947\n            ],\n            [\n              16.875,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              9.10209674\n            ],\n            [\n              16.875,\n              9.44906183\n            ],\n            [\n              17.2265625,\n              9.44906183\n            ],\n            [\n              17.2265625,\n              9.10209674\n            ],\n            [\n              16.875,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              9.44906183\n            ],\n            [\n              16.875,\n              9.79567758\n            ],\n            [\n              17.2265625,\n              9.79567758\n            ],\n            [\n              17.2265625,\n              9.44906183\n            ],\n            [\n              16.875,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              9.79567758\n            ],\n            [\n              16.875,\n              10.14193169\n            ],\n            [\n              17.2265625,\n              10.14193169\n            ],\n            [\n              17.2265625,\n              9.79567758\n            ],\n            [\n              16.875,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -0.35156029\n            ],\n            [\n              17.2265625,\n              0\n            ],\n            [\n              17.578125,\n              0\n            ],\n            [\n              17.578125,\n              -0.35156029\n            ],\n            [\n              17.2265625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -0.70310735\n            ],\n            [\n              17.2265625,\n              -0.35156029\n            ],\n            [\n              17.578125,\n              -0.35156029\n            ],\n            [\n              17.578125,\n              -0.70310735\n            ],\n            [\n              17.2265625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -1.05462794\n            ],\n            [\n              17.2265625,\n              -0.70310735\n            ],\n            [\n              17.578125,\n              -0.70310735\n            ],\n            [\n              17.578125,\n              -1.05462794\n            ],\n            [\n              17.2265625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -1.40610884\n            ],\n            [\n              17.2265625,\n              -1.05462794\n            ],\n            [\n              17.578125,\n              -1.05462794\n            ],\n            [\n              17.578125,\n              -1.40610884\n            ],\n            [\n              17.2265625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -1.75753681\n            ],\n            [\n              17.2265625,\n              -1.40610884\n            ],\n            [\n              17.578125,\n              -1.40610884\n            ],\n            [\n              17.578125,\n              -1.75753681\n            ],\n            [\n              17.2265625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -2.10889866\n            ],\n            [\n              17.2265625,\n              -1.75753681\n            ],\n            [\n              17.578125,\n              -1.75753681\n            ],\n            [\n              17.578125,\n              -2.10889866\n            ],\n            [\n              17.2265625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -2.46018118\n            ],\n            [\n              17.2265625,\n              -2.10889866\n            ],\n            [\n              17.578125,\n              -2.10889866\n            ],\n            [\n              17.578125,\n              -2.46018118\n            ],\n            [\n              17.2265625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -2.81137119\n            ],\n            [\n              17.2265625,\n              -2.46018118\n            ],\n            [\n              17.578125,\n              -2.46018118\n            ],\n            [\n              17.578125,\n              -2.81137119\n            ],\n            [\n              17.2265625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -3.16245553\n            ],\n            [\n              17.2265625,\n              -2.81137119\n            ],\n            [\n              17.578125,\n              -2.81137119\n            ],\n            [\n              17.578125,\n              -3.16245553\n            ],\n            [\n              17.2265625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -3.51342105\n            ],\n            [\n              17.2265625,\n              -3.16245553\n            ],\n            [\n              17.578125,\n              -3.16245553\n            ],\n            [\n              17.578125,\n              -3.51342105\n            ],\n            [\n              17.2265625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -3.86425462\n            ],\n            [\n              17.2265625,\n              -3.51342105\n            ],\n            [\n              17.578125,\n              -3.51342105\n            ],\n            [\n              17.578125,\n              -3.86425462\n            ],\n            [\n              17.2265625,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -4.21494314\n            ],\n            [\n              17.2265625,\n              -3.86425462\n            ],\n            [\n              17.578125,\n              -3.86425462\n            ],\n            [\n              17.578125,\n              -4.21494314\n            ],\n            [\n              17.2265625,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -4.56547355\n            ],\n            [\n              17.2265625,\n              -4.21494314\n            ],\n            [\n              17.578125,\n              -4.21494314\n            ],\n            [\n              17.578125,\n              -4.56547355\n            ],\n            [\n              17.2265625,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -4.9158328\n            ],\n            [\n              17.2265625,\n              -4.56547355\n            ],\n            [\n              17.578125,\n              -4.56547355\n            ],\n            [\n              17.578125,\n              -4.9158328\n            ],\n            [\n              17.2265625,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -5.26600788\n            ],\n            [\n              17.2265625,\n              -4.9158328\n            ],\n            [\n              17.578125,\n              -4.9158328\n            ],\n            [\n              17.578125,\n              -5.26600788\n            ],\n            [\n              17.2265625,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              -5.61598582\n            ],\n            [\n              17.2265625,\n              -5.26600788\n            ],\n            [\n              17.578125,\n              -5.26600788\n            ],\n            [\n              17.578125,\n              -5.61598582\n            ],\n            [\n              17.2265625,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              0\n            ],\n            [\n              17.2265625,\n              0.35156029\n            ],\n            [\n              17.578125,\n              0.35156029\n            ],\n            [\n              17.578125,\n              0\n            ],\n            [\n              17.2265625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              0.35156029\n            ],\n            [\n              17.2265625,\n              0.70310735\n            ],\n            [\n              17.578125,\n              0.70310735\n            ],\n            [\n              17.578125,\n              0.35156029\n            ],\n            [\n              17.2265625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              0.70310735\n            ],\n            [\n              17.2265625,\n              1.05462794\n            ],\n            [\n              17.578125,\n              1.05462794\n            ],\n            [\n              17.578125,\n              0.70310735\n            ],\n            [\n              17.2265625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              1.05462794\n            ],\n            [\n              17.2265625,\n              1.40610884\n            ],\n            [\n              17.578125,\n              1.40610884\n            ],\n            [\n              17.578125,\n              1.05462794\n            ],\n            [\n              17.2265625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              1.40610884\n            ],\n            [\n              17.2265625,\n              1.75753681\n            ],\n            [\n              17.578125,\n              1.75753681\n            ],\n            [\n              17.578125,\n              1.40610884\n            ],\n            [\n              17.2265625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              1.75753681\n            ],\n            [\n              17.2265625,\n              2.10889866\n            ],\n            [\n              17.578125,\n              2.10889866\n            ],\n            [\n              17.578125,\n              1.75753681\n            ],\n            [\n              17.2265625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              10.14193169\n            ],\n            [\n              17.2265625,\n              10.48781188\n            ],\n            [\n              17.578125,\n              10.48781188\n            ],\n            [\n              17.578125,\n              10.14193169\n            ],\n            [\n              17.2265625,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              10.48781188\n            ],\n            [\n              17.2265625,\n              10.83330598\n            ],\n            [\n              17.578125,\n              10.83330598\n            ],\n            [\n              17.578125,\n              10.48781188\n            ],\n            [\n              17.2265625,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              10.83330598\n            ],\n            [\n              17.2265625,\n              11.17840187\n            ],\n            [\n              17.578125,\n              11.17840187\n            ],\n            [\n              17.578125,\n              10.83330598\n            ],\n            [\n              17.2265625,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              11.17840187\n            ],\n            [\n              17.2265625,\n              11.52308751\n            ],\n            [\n              17.578125,\n              11.52308751\n            ],\n            [\n              17.578125,\n              11.17840187\n            ],\n            [\n              17.2265625,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              11.52308751\n            ],\n            [\n              17.2265625,\n              11.86735091\n            ],\n            [\n              17.578125,\n              11.86735091\n            ],\n            [\n              17.578125,\n              11.52308751\n            ],\n            [\n              17.2265625,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              11.86735091\n            ],\n            [\n              17.2265625,\n              12.21118019\n            ],\n            [\n              17.578125,\n              12.21118019\n            ],\n            [\n              17.578125,\n              11.86735091\n            ],\n            [\n              17.2265625,\n              11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              2.10889866\n            ],\n            [\n              17.2265625,\n              2.46018118\n            ],\n            [\n              17.578125,\n              2.46018118\n            ],\n            [\n              17.578125,\n              2.10889866\n            ],\n            [\n              17.2265625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              2.46018118\n            ],\n            [\n              17.2265625,\n              2.81137119\n            ],\n            [\n              17.578125,\n              2.81137119\n            ],\n            [\n              17.578125,\n              2.46018118\n            ],\n            [\n              17.2265625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              2.81137119\n            ],\n            [\n              17.2265625,\n              3.16245553\n            ],\n            [\n              17.578125,\n              3.16245553\n            ],\n            [\n              17.578125,\n              2.81137119\n            ],\n            [\n              17.2265625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              3.16245553\n            ],\n            [\n              17.2265625,\n              3.51342105\n            ],\n            [\n              17.578125,\n              3.51342105\n            ],\n            [\n              17.578125,\n              3.16245553\n            ],\n            [\n              17.2265625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              3.51342105\n            ],\n            [\n              17.2265625,\n              3.86425462\n            ],\n            [\n              17.578125,\n              3.86425462\n            ],\n            [\n              17.578125,\n              3.51342105\n            ],\n            [\n              17.2265625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              3.86425462\n            ],\n            [\n              17.2265625,\n              4.21494314\n            ],\n            [\n              17.578125,\n              4.21494314\n            ],\n            [\n              17.578125,\n              3.86425462\n            ],\n            [\n              17.2265625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              4.21494314\n            ],\n            [\n              17.2265625,\n              4.56547355\n            ],\n            [\n              17.578125,\n              4.56547355\n            ],\n            [\n              17.578125,\n              4.21494314\n            ],\n            [\n              17.2265625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              4.56547355\n            ],\n            [\n              17.2265625,\n              4.9158328\n            ],\n            [\n              17.578125,\n              4.9158328\n            ],\n            [\n              17.578125,\n              4.56547355\n            ],\n            [\n              17.2265625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              4.9158328\n            ],\n            [\n              17.2265625,\n              5.26600788\n            ],\n            [\n              17.578125,\n              5.26600788\n            ],\n            [\n              17.578125,\n              4.9158328\n            ],\n            [\n              17.2265625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              5.26600788\n            ],\n            [\n              17.2265625,\n              5.61598582\n            ],\n            [\n              17.578125,\n              5.61598582\n            ],\n            [\n              17.578125,\n              5.26600788\n            ],\n            [\n              17.2265625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              5.61598582\n            ],\n            [\n              17.2265625,\n              5.96575367\n            ],\n            [\n              17.578125,\n              5.96575367\n            ],\n            [\n              17.578125,\n              5.61598582\n            ],\n            [\n              17.2265625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              5.96575367\n            ],\n            [\n              17.2265625,\n              6.31529854\n            ],\n            [\n              17.578125,\n              6.31529854\n            ],\n            [\n              17.578125,\n              5.96575367\n            ],\n            [\n              17.2265625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              6.31529854\n            ],\n            [\n              17.2265625,\n              6.66460756\n            ],\n            [\n              17.578125,\n              6.66460756\n            ],\n            [\n              17.578125,\n              6.31529854\n            ],\n            [\n              17.2265625,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              6.66460756\n            ],\n            [\n              17.2265625,\n              7.01366793\n            ],\n            [\n              17.578125,\n              7.01366793\n            ],\n            [\n              17.578125,\n              6.66460756\n            ],\n            [\n              17.2265625,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              7.01366793\n            ],\n            [\n              17.2265625,\n              7.36246687\n            ],\n            [\n              17.578125,\n              7.36246687\n            ],\n            [\n              17.578125,\n              7.01366793\n            ],\n            [\n              17.2265625,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              7.36246687\n            ],\n            [\n              17.2265625,\n              7.71099166\n            ],\n            [\n              17.578125,\n              7.71099166\n            ],\n            [\n              17.578125,\n              7.36246687\n            ],\n            [\n              17.2265625,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              7.71099166\n            ],\n            [\n              17.2265625,\n              8.05922963\n            ],\n            [\n              17.578125,\n              8.05922963\n            ],\n            [\n              17.578125,\n              7.71099166\n            ],\n            [\n              17.2265625,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              8.05922963\n            ],\n            [\n              17.2265625,\n              8.40716816\n            ],\n            [\n              17.578125,\n              8.40716816\n            ],\n            [\n              17.578125,\n              8.05922963\n            ],\n            [\n              17.2265625,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              8.40716816\n            ],\n            [\n              17.2265625,\n              8.7547947\n            ],\n            [\n              17.578125,\n              8.7547947\n            ],\n            [\n              17.578125,\n              8.40716816\n            ],\n            [\n              17.2265625,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              8.7547947\n            ],\n            [\n              17.2265625,\n              9.10209674\n            ],\n            [\n              17.578125,\n              9.10209674\n            ],\n            [\n              17.578125,\n              8.7547947\n            ],\n            [\n              17.2265625,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              9.10209674\n            ],\n            [\n              17.2265625,\n              9.44906183\n            ],\n            [\n              17.578125,\n              9.44906183\n            ],\n            [\n              17.578125,\n              9.10209674\n            ],\n            [\n              17.2265625,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              9.44906183\n            ],\n            [\n              17.2265625,\n              9.79567758\n            ],\n            [\n              17.578125,\n              9.79567758\n            ],\n            [\n              17.578125,\n              9.44906183\n            ],\n            [\n              17.2265625,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              9.79567758\n            ],\n            [\n              17.2265625,\n              10.14193169\n            ],\n            [\n              17.578125,\n              10.14193169\n            ],\n            [\n              17.578125,\n              9.79567758\n            ],\n            [\n              17.2265625,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -0.35156029\n            ],\n            [\n              17.578125,\n              0\n            ],\n            [\n              17.9296875,\n              0\n            ],\n            [\n              17.9296875,\n              -0.35156029\n            ],\n            [\n              17.578125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -0.70310735\n            ],\n            [\n              17.578125,\n              -0.35156029\n            ],\n            [\n              17.9296875,\n              -0.35156029\n            ],\n            [\n              17.9296875,\n              -0.70310735\n            ],\n            [\n              17.578125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -1.05462794\n            ],\n            [\n              17.578125,\n              -0.70310735\n            ],\n            [\n              17.9296875,\n              -0.70310735\n            ],\n            [\n              17.9296875,\n              -1.05462794\n            ],\n            [\n              17.578125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -1.40610884\n            ],\n            [\n              17.578125,\n              -1.05462794\n            ],\n            [\n              17.9296875,\n              -1.05462794\n            ],\n            [\n              17.9296875,\n              -1.40610884\n            ],\n            [\n              17.578125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -1.75753681\n            ],\n            [\n              17.578125,\n              -1.40610884\n            ],\n            [\n              17.9296875,\n              -1.40610884\n            ],\n            [\n              17.9296875,\n              -1.75753681\n            ],\n            [\n              17.578125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -2.10889866\n            ],\n            [\n              17.578125,\n              -1.75753681\n            ],\n            [\n              17.9296875,\n              -1.75753681\n            ],\n            [\n              17.9296875,\n              -2.10889866\n            ],\n            [\n              17.578125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -2.46018118\n            ],\n            [\n              17.578125,\n              -2.10889866\n            ],\n            [\n              17.9296875,\n              -2.10889866\n            ],\n            [\n              17.9296875,\n              -2.46018118\n            ],\n            [\n              17.578125,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -2.81137119\n            ],\n            [\n              17.578125,\n              -2.46018118\n            ],\n            [\n              17.9296875,\n              -2.46018118\n            ],\n            [\n              17.9296875,\n              -2.81137119\n            ],\n            [\n              17.578125,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -3.16245553\n            ],\n            [\n              17.578125,\n              -2.81137119\n            ],\n            [\n              17.9296875,\n              -2.81137119\n            ],\n            [\n              17.9296875,\n              -3.16245553\n            ],\n            [\n              17.578125,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -3.51342105\n            ],\n            [\n              17.578125,\n              -3.16245553\n            ],\n            [\n              17.9296875,\n              -3.16245553\n            ],\n            [\n              17.9296875,\n              -3.51342105\n            ],\n            [\n              17.578125,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -3.86425462\n            ],\n            [\n              17.578125,\n              -3.51342105\n            ],\n            [\n              17.9296875,\n              -3.51342105\n            ],\n            [\n              17.9296875,\n              -3.86425462\n            ],\n            [\n              17.578125,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -4.21494314\n            ],\n            [\n              17.578125,\n              -3.86425462\n            ],\n            [\n              17.9296875,\n              -3.86425462\n            ],\n            [\n              17.9296875,\n              -4.21494314\n            ],\n            [\n              17.578125,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -4.56547355\n            ],\n            [\n              17.578125,\n              -4.21494314\n            ],\n            [\n              17.9296875,\n              -4.21494314\n            ],\n            [\n              17.9296875,\n              -4.56547355\n            ],\n            [\n              17.578125,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -4.9158328\n            ],\n            [\n              17.578125,\n              -4.56547355\n            ],\n            [\n              17.9296875,\n              -4.56547355\n            ],\n            [\n              17.9296875,\n              -4.9158328\n            ],\n            [\n              17.578125,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -5.26600788\n            ],\n            [\n              17.578125,\n              -4.9158328\n            ],\n            [\n              17.9296875,\n              -4.9158328\n            ],\n            [\n              17.9296875,\n              -5.26600788\n            ],\n            [\n              17.578125,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -5.61598582\n            ],\n            [\n              17.578125,\n              -5.26600788\n            ],\n            [\n              17.9296875,\n              -5.26600788\n            ],\n            [\n              17.9296875,\n              -5.61598582\n            ],\n            [\n              17.578125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -5.96575367\n            ],\n            [\n              17.578125,\n              -5.61598582\n            ],\n            [\n              17.9296875,\n              -5.61598582\n            ],\n            [\n              17.9296875,\n              -5.96575367\n            ],\n            [\n              17.578125,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -6.31529854\n            ],\n            [\n              17.578125,\n              -5.96575367\n            ],\n            [\n              17.9296875,\n              -5.96575367\n            ],\n            [\n              17.9296875,\n              -6.31529854\n            ],\n            [\n              17.578125,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -6.66460756\n            ],\n            [\n              17.578125,\n              -6.31529854\n            ],\n            [\n              17.9296875,\n              -6.31529854\n            ],\n            [\n              17.9296875,\n              -6.66460756\n            ],\n            [\n              17.578125,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -7.01366793\n            ],\n            [\n              17.578125,\n              -6.66460756\n            ],\n            [\n              17.9296875,\n              -6.66460756\n            ],\n            [\n              17.9296875,\n              -7.01366793\n            ],\n            [\n              17.578125,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -7.36246687\n            ],\n            [\n              17.578125,\n              -7.01366793\n            ],\n            [\n              17.9296875,\n              -7.01366793\n            ],\n            [\n              17.9296875,\n              -7.36246687\n            ],\n            [\n              17.578125,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -7.71099166\n            ],\n            [\n              17.578125,\n              -7.36246687\n            ],\n            [\n              17.9296875,\n              -7.36246687\n            ],\n            [\n              17.9296875,\n              -7.71099166\n            ],\n            [\n              17.578125,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -8.05922963\n            ],\n            [\n              17.578125,\n              -7.71099166\n            ],\n            [\n              17.9296875,\n              -7.71099166\n            ],\n            [\n              17.9296875,\n              -8.05922963\n            ],\n            [\n              17.578125,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              -8.40716816\n            ],\n            [\n              17.578125,\n              -8.05922963\n            ],\n            [\n              17.9296875,\n              -8.05922963\n            ],\n            [\n              17.9296875,\n              -8.40716816\n            ],\n            [\n              17.578125,\n              -8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              0\n            ],\n            [\n              17.578125,\n              0.35156029\n            ],\n            [\n              17.9296875,\n              0.35156029\n            ],\n            [\n              17.9296875,\n              0\n            ],\n            [\n              17.578125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              0.35156029\n            ],\n            [\n              17.578125,\n              0.70310735\n            ],\n            [\n              17.9296875,\n              0.70310735\n            ],\n            [\n              17.9296875,\n              0.35156029\n            ],\n            [\n              17.578125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              0.70310735\n            ],\n            [\n              17.578125,\n              1.05462794\n            ],\n            [\n              17.9296875,\n              1.05462794\n            ],\n            [\n              17.9296875,\n              0.70310735\n            ],\n            [\n              17.578125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              1.05462794\n            ],\n            [\n              17.578125,\n              1.40610884\n            ],\n            [\n              17.9296875,\n              1.40610884\n            ],\n            [\n              17.9296875,\n              1.05462794\n            ],\n            [\n              17.578125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              1.40610884\n            ],\n            [\n              17.578125,\n              1.75753681\n            ],\n            [\n              17.9296875,\n              1.75753681\n            ],\n            [\n              17.9296875,\n              1.40610884\n            ],\n            [\n              17.578125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              1.75753681\n            ],\n            [\n              17.578125,\n              2.10889866\n            ],\n            [\n              17.9296875,\n              2.10889866\n            ],\n            [\n              17.9296875,\n              1.75753681\n            ],\n            [\n              17.578125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              10.14193169\n            ],\n            [\n              17.578125,\n              10.48781188\n            ],\n            [\n              17.9296875,\n              10.48781188\n            ],\n            [\n              17.9296875,\n              10.14193169\n            ],\n            [\n              17.578125,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              10.48781188\n            ],\n            [\n              17.578125,\n              10.83330598\n            ],\n            [\n              17.9296875,\n              10.83330598\n            ],\n            [\n              17.9296875,\n              10.48781188\n            ],\n            [\n              17.578125,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              10.83330598\n            ],\n            [\n              17.578125,\n              11.17840187\n            ],\n            [\n              17.9296875,\n              11.17840187\n            ],\n            [\n              17.9296875,\n              10.83330598\n            ],\n            [\n              17.578125,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              11.17840187\n            ],\n            [\n              17.578125,\n              11.52308751\n            ],\n            [\n              17.9296875,\n              11.52308751\n            ],\n            [\n              17.9296875,\n              11.17840187\n            ],\n            [\n              17.578125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              11.52308751\n            ],\n            [\n              17.578125,\n              11.86735091\n            ],\n            [\n              17.9296875,\n              11.86735091\n            ],\n            [\n              17.9296875,\n              11.52308751\n            ],\n            [\n              17.578125,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              11.86735091\n            ],\n            [\n              17.578125,\n              12.21118019\n            ],\n            [\n              17.9296875,\n              12.21118019\n            ],\n            [\n              17.9296875,\n              11.86735091\n            ],\n            [\n              17.578125,\n              11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              12.21118019\n            ],\n            [\n              17.578125,\n              12.55456353\n            ],\n            [\n              17.9296875,\n              12.55456353\n            ],\n            [\n              17.9296875,\n              12.21118019\n            ],\n            [\n              17.578125,\n              12.21118019\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              12.55456353\n            ],\n            [\n              17.578125,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              12.55456353\n            ],\n            [\n              17.578125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              12.89748918\n            ],\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              17.578125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.578125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              2.10889866\n            ],\n            [\n              17.578125,\n              2.46018118\n            ],\n            [\n              17.9296875,\n              2.46018118\n            ],\n            [\n              17.9296875,\n              2.10889866\n            ],\n            [\n              17.578125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              2.46018118\n            ],\n            [\n              17.578125,\n              2.81137119\n            ],\n            [\n              17.9296875,\n              2.81137119\n            ],\n            [\n              17.9296875,\n              2.46018118\n            ],\n            [\n              17.578125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              2.81137119\n            ],\n            [\n              17.578125,\n              3.16245553\n            ],\n            [\n              17.9296875,\n              3.16245553\n            ],\n            [\n              17.9296875,\n              2.81137119\n            ],\n            [\n              17.578125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              3.16245553\n            ],\n            [\n              17.578125,\n              3.51342105\n            ],\n            [\n              17.9296875,\n              3.51342105\n            ],\n            [\n              17.9296875,\n              3.16245553\n            ],\n            [\n              17.578125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              3.51342105\n            ],\n            [\n              17.578125,\n              3.86425462\n            ],\n            [\n              17.9296875,\n              3.86425462\n            ],\n            [\n              17.9296875,\n              3.51342105\n            ],\n            [\n              17.578125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              3.86425462\n            ],\n            [\n              17.578125,\n              4.21494314\n            ],\n            [\n              17.9296875,\n              4.21494314\n            ],\n            [\n              17.9296875,\n              3.86425462\n            ],\n            [\n              17.578125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              4.21494314\n            ],\n            [\n              17.578125,\n              4.56547355\n            ],\n            [\n              17.9296875,\n              4.56547355\n            ],\n            [\n              17.9296875,\n              4.21494314\n            ],\n            [\n              17.578125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              4.56547355\n            ],\n            [\n              17.578125,\n              4.9158328\n            ],\n            [\n              17.9296875,\n              4.9158328\n            ],\n            [\n              17.9296875,\n              4.56547355\n            ],\n            [\n              17.578125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              4.9158328\n            ],\n            [\n              17.578125,\n              5.26600788\n            ],\n            [\n              17.9296875,\n              5.26600788\n            ],\n            [\n              17.9296875,\n              4.9158328\n            ],\n            [\n              17.578125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              5.26600788\n            ],\n            [\n              17.578125,\n              5.61598582\n            ],\n            [\n              17.9296875,\n              5.61598582\n            ],\n            [\n              17.9296875,\n              5.26600788\n            ],\n            [\n              17.578125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              5.61598582\n            ],\n            [\n              17.578125,\n              5.96575367\n            ],\n            [\n              17.9296875,\n              5.96575367\n            ],\n            [\n              17.9296875,\n              5.61598582\n            ],\n            [\n              17.578125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              5.96575367\n            ],\n            [\n              17.578125,\n              6.31529854\n            ],\n            [\n              17.9296875,\n              6.31529854\n            ],\n            [\n              17.9296875,\n              5.96575367\n            ],\n            [\n              17.578125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              6.31529854\n            ],\n            [\n              17.578125,\n              6.66460756\n            ],\n            [\n              17.9296875,\n              6.66460756\n            ],\n            [\n              17.9296875,\n              6.31529854\n            ],\n            [\n              17.578125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              6.66460756\n            ],\n            [\n              17.578125,\n              7.01366793\n            ],\n            [\n              17.9296875,\n              7.01366793\n            ],\n            [\n              17.9296875,\n              6.66460756\n            ],\n            [\n              17.578125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              7.01366793\n            ],\n            [\n              17.578125,\n              7.36246687\n            ],\n            [\n              17.9296875,\n              7.36246687\n            ],\n            [\n              17.9296875,\n              7.01366793\n            ],\n            [\n              17.578125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              7.36246687\n            ],\n            [\n              17.578125,\n              7.71099166\n            ],\n            [\n              17.9296875,\n              7.71099166\n            ],\n            [\n              17.9296875,\n              7.36246687\n            ],\n            [\n              17.578125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              7.71099166\n            ],\n            [\n              17.578125,\n              8.05922963\n            ],\n            [\n              17.9296875,\n              8.05922963\n            ],\n            [\n              17.9296875,\n              7.71099166\n            ],\n            [\n              17.578125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              8.05922963\n            ],\n            [\n              17.578125,\n              8.40716816\n            ],\n            [\n              17.9296875,\n              8.40716816\n            ],\n            [\n              17.9296875,\n              8.05922963\n            ],\n            [\n              17.578125,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              8.40716816\n            ],\n            [\n              17.578125,\n              8.7547947\n            ],\n            [\n              17.9296875,\n              8.7547947\n            ],\n            [\n              17.9296875,\n              8.40716816\n            ],\n            [\n              17.578125,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              8.7547947\n            ],\n            [\n              17.578125,\n              9.10209674\n            ],\n            [\n              17.9296875,\n              9.10209674\n            ],\n            [\n              17.9296875,\n              8.7547947\n            ],\n            [\n              17.578125,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              9.10209674\n            ],\n            [\n              17.578125,\n              9.44906183\n            ],\n            [\n              17.9296875,\n              9.44906183\n            ],\n            [\n              17.9296875,\n              9.10209674\n            ],\n            [\n              17.578125,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              9.44906183\n            ],\n            [\n              17.578125,\n              9.79567758\n            ],\n            [\n              17.9296875,\n              9.79567758\n            ],\n            [\n              17.9296875,\n              9.44906183\n            ],\n            [\n              17.578125,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              9.79567758\n            ],\n            [\n              17.578125,\n              10.14193169\n            ],\n            [\n              17.9296875,\n              10.14193169\n            ],\n            [\n              17.9296875,\n              9.79567758\n            ],\n            [\n              17.578125,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -0.35156029\n            ],\n            [\n              17.9296875,\n              0\n            ],\n            [\n              18.28125,\n              0\n            ],\n            [\n              18.28125,\n              -0.35156029\n            ],\n            [\n              17.9296875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -0.70310735\n            ],\n            [\n              17.9296875,\n              -0.35156029\n            ],\n            [\n              18.28125,\n              -0.35156029\n            ],\n            [\n              18.28125,\n              -0.70310735\n            ],\n            [\n              17.9296875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -1.05462794\n            ],\n            [\n              17.9296875,\n              -0.70310735\n            ],\n            [\n              18.28125,\n              -0.70310735\n            ],\n            [\n              18.28125,\n              -1.05462794\n            ],\n            [\n              17.9296875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -1.40610884\n            ],\n            [\n              17.9296875,\n              -1.05462794\n            ],\n            [\n              18.28125,\n              -1.05462794\n            ],\n            [\n              18.28125,\n              -1.40610884\n            ],\n            [\n              17.9296875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -1.75753681\n            ],\n            [\n              17.9296875,\n              -1.40610884\n            ],\n            [\n              18.28125,\n              -1.40610884\n            ],\n            [\n              18.28125,\n              -1.75753681\n            ],\n            [\n              17.9296875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -10.14193169\n            ],\n            [\n              17.9296875,\n              -9.79567758\n            ],\n            [\n              18.28125,\n              -9.79567758\n            ],\n            [\n              18.28125,\n              -10.14193169\n            ],\n            [\n              17.9296875,\n              -10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -10.48781188\n            ],\n            [\n              17.9296875,\n              -10.14193169\n            ],\n            [\n              18.28125,\n              -10.14193169\n            ],\n            [\n              18.28125,\n              -10.48781188\n            ],\n            [\n              17.9296875,\n              -10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -2.10889866\n            ],\n            [\n              17.9296875,\n              -1.75753681\n            ],\n            [\n              18.28125,\n              -1.75753681\n            ],\n            [\n              18.28125,\n              -2.10889866\n            ],\n            [\n              17.9296875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -2.46018118\n            ],\n            [\n              17.9296875,\n              -2.10889866\n            ],\n            [\n              18.28125,\n              -2.10889866\n            ],\n            [\n              18.28125,\n              -2.46018118\n            ],\n            [\n              17.9296875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -2.81137119\n            ],\n            [\n              17.9296875,\n              -2.46018118\n            ],\n            [\n              18.28125,\n              -2.46018118\n            ],\n            [\n              18.28125,\n              -2.81137119\n            ],\n            [\n              17.9296875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -3.16245553\n            ],\n            [\n              17.9296875,\n              -2.81137119\n            ],\n            [\n              18.28125,\n              -2.81137119\n            ],\n            [\n              18.28125,\n              -3.16245553\n            ],\n            [\n              17.9296875,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -3.51342105\n            ],\n            [\n              17.9296875,\n              -3.16245553\n            ],\n            [\n              18.28125,\n              -3.16245553\n            ],\n            [\n              18.28125,\n              -3.51342105\n            ],\n            [\n              17.9296875,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -3.86425462\n            ],\n            [\n              17.9296875,\n              -3.51342105\n            ],\n            [\n              18.28125,\n              -3.51342105\n            ],\n            [\n              18.28125,\n              -3.86425462\n            ],\n            [\n              17.9296875,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -4.21494314\n            ],\n            [\n              17.9296875,\n              -3.86425462\n            ],\n            [\n              18.28125,\n              -3.86425462\n            ],\n            [\n              18.28125,\n              -4.21494314\n            ],\n            [\n              17.9296875,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -4.56547355\n            ],\n            [\n              17.9296875,\n              -4.21494314\n            ],\n            [\n              18.28125,\n              -4.21494314\n            ],\n            [\n              18.28125,\n              -4.56547355\n            ],\n            [\n              17.9296875,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -4.9158328\n            ],\n            [\n              17.9296875,\n              -4.56547355\n            ],\n            [\n              18.28125,\n              -4.56547355\n            ],\n            [\n              18.28125,\n              -4.9158328\n            ],\n            [\n              17.9296875,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -5.26600788\n            ],\n            [\n              17.9296875,\n              -4.9158328\n            ],\n            [\n              18.28125,\n              -4.9158328\n            ],\n            [\n              18.28125,\n              -5.26600788\n            ],\n            [\n              17.9296875,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -5.61598582\n            ],\n            [\n              17.9296875,\n              -5.26600788\n            ],\n            [\n              18.28125,\n              -5.26600788\n            ],\n            [\n              18.28125,\n              -5.61598582\n            ],\n            [\n              17.9296875,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -5.96575367\n            ],\n            [\n              17.9296875,\n              -5.61598582\n            ],\n            [\n              18.28125,\n              -5.61598582\n            ],\n            [\n              18.28125,\n              -5.96575367\n            ],\n            [\n              17.9296875,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -6.31529854\n            ],\n            [\n              17.9296875,\n              -5.96575367\n            ],\n            [\n              18.28125,\n              -5.96575367\n            ],\n            [\n              18.28125,\n              -6.31529854\n            ],\n            [\n              17.9296875,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -6.66460756\n            ],\n            [\n              17.9296875,\n              -6.31529854\n            ],\n            [\n              18.28125,\n              -6.31529854\n            ],\n            [\n              18.28125,\n              -6.66460756\n            ],\n            [\n              17.9296875,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -7.01366793\n            ],\n            [\n              17.9296875,\n              -6.66460756\n            ],\n            [\n              18.28125,\n              -6.66460756\n            ],\n            [\n              18.28125,\n              -7.01366793\n            ],\n            [\n              17.9296875,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -7.36246687\n            ],\n            [\n              17.9296875,\n              -7.01366793\n            ],\n            [\n              18.28125,\n              -7.01366793\n            ],\n            [\n              18.28125,\n              -7.36246687\n            ],\n            [\n              17.9296875,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -7.71099166\n            ],\n            [\n              17.9296875,\n              -7.36246687\n            ],\n            [\n              18.28125,\n              -7.36246687\n            ],\n            [\n              18.28125,\n              -7.71099166\n            ],\n            [\n              17.9296875,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -8.05922963\n            ],\n            [\n              17.9296875,\n              -7.71099166\n            ],\n            [\n              18.28125,\n              -7.71099166\n            ],\n            [\n              18.28125,\n              -8.05922963\n            ],\n            [\n              17.9296875,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -8.40716816\n            ],\n            [\n              17.9296875,\n              -8.05922963\n            ],\n            [\n              18.28125,\n              -8.05922963\n            ],\n            [\n              18.28125,\n              -8.40716816\n            ],\n            [\n              17.9296875,\n              -8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -8.7547947\n            ],\n            [\n              17.9296875,\n              -8.40716816\n            ],\n            [\n              18.28125,\n              -8.40716816\n            ],\n            [\n              18.28125,\n              -8.7547947\n            ],\n            [\n              17.9296875,\n              -8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -9.10209674\n            ],\n            [\n              17.9296875,\n              -8.7547947\n            ],\n            [\n              18.28125,\n              -8.7547947\n            ],\n            [\n              18.28125,\n              -9.10209674\n            ],\n            [\n              17.9296875,\n              -9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -9.44906183\n            ],\n            [\n              17.9296875,\n              -9.10209674\n            ],\n            [\n              18.28125,\n              -9.10209674\n            ],\n            [\n              18.28125,\n              -9.44906183\n            ],\n            [\n              17.9296875,\n              -9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              -9.79567758\n            ],\n            [\n              17.9296875,\n              -9.44906183\n            ],\n            [\n              18.28125,\n              -9.44906183\n            ],\n            [\n              18.28125,\n              -9.79567758\n            ],\n            [\n              17.9296875,\n              -9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              0\n            ],\n            [\n              17.9296875,\n              0.35156029\n            ],\n            [\n              18.28125,\n              0.35156029\n            ],\n            [\n              18.28125,\n              0\n            ],\n            [\n              17.9296875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              0.35156029\n            ],\n            [\n              17.9296875,\n              0.70310735\n            ],\n            [\n              18.28125,\n              0.70310735\n            ],\n            [\n              18.28125,\n              0.35156029\n            ],\n            [\n              17.9296875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              0.70310735\n            ],\n            [\n              17.9296875,\n              1.05462794\n            ],\n            [\n              18.28125,\n              1.05462794\n            ],\n            [\n              18.28125,\n              0.70310735\n            ],\n            [\n              17.9296875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              1.05462794\n            ],\n            [\n              17.9296875,\n              1.40610884\n            ],\n            [\n              18.28125,\n              1.40610884\n            ],\n            [\n              18.28125,\n              1.05462794\n            ],\n            [\n              17.9296875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              1.40610884\n            ],\n            [\n              17.9296875,\n              1.75753681\n            ],\n            [\n              18.28125,\n              1.75753681\n            ],\n            [\n              18.28125,\n              1.40610884\n            ],\n            [\n              17.9296875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              1.75753681\n            ],\n            [\n              17.9296875,\n              2.10889866\n            ],\n            [\n              18.28125,\n              2.10889866\n            ],\n            [\n              18.28125,\n              1.75753681\n            ],\n            [\n              17.9296875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              10.14193169\n            ],\n            [\n              17.9296875,\n              10.48781188\n            ],\n            [\n              18.28125,\n              10.48781188\n            ],\n            [\n              18.28125,\n              10.14193169\n            ],\n            [\n              17.9296875,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              10.48781188\n            ],\n            [\n              17.9296875,\n              10.83330598\n            ],\n            [\n              18.28125,\n              10.83330598\n            ],\n            [\n              18.28125,\n              10.48781188\n            ],\n            [\n              17.9296875,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              10.83330598\n            ],\n            [\n              17.9296875,\n              11.17840187\n            ],\n            [\n              18.28125,\n              11.17840187\n            ],\n            [\n              18.28125,\n              10.83330598\n            ],\n            [\n              17.9296875,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              11.17840187\n            ],\n            [\n              17.9296875,\n              11.52308751\n            ],\n            [\n              18.28125,\n              11.52308751\n            ],\n            [\n              18.28125,\n              11.17840187\n            ],\n            [\n              17.9296875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              11.52308751\n            ],\n            [\n              17.9296875,\n              11.86735091\n            ],\n            [\n              18.28125,\n              11.86735091\n            ],\n            [\n              18.28125,\n              11.52308751\n            ],\n            [\n              17.9296875,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              11.86735091\n            ],\n            [\n              17.9296875,\n              12.21118019\n            ],\n            [\n              18.28125,\n              12.21118019\n            ],\n            [\n              18.28125,\n              11.86735091\n            ],\n            [\n              17.9296875,\n              11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              12.21118019\n            ],\n            [\n              17.9296875,\n              12.55456353\n            ],\n            [\n              18.28125,\n              12.55456353\n            ],\n            [\n              18.28125,\n              12.21118019\n            ],\n            [\n              17.9296875,\n              12.21118019\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              12.55456353\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              18.28125,\n              12.55456353\n            ],\n            [\n              17.9296875,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              2.10889866\n            ],\n            [\n              17.9296875,\n              2.46018118\n            ],\n            [\n              18.28125,\n              2.46018118\n            ],\n            [\n              18.28125,\n              2.10889866\n            ],\n            [\n              17.9296875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              2.46018118\n            ],\n            [\n              17.9296875,\n              2.81137119\n            ],\n            [\n              18.28125,\n              2.81137119\n            ],\n            [\n              18.28125,\n              2.46018118\n            ],\n            [\n              17.9296875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              2.81137119\n            ],\n            [\n              17.9296875,\n              3.16245553\n            ],\n            [\n              18.28125,\n              3.16245553\n            ],\n            [\n              18.28125,\n              2.81137119\n            ],\n            [\n              17.9296875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              3.16245553\n            ],\n            [\n              17.9296875,\n              3.51342105\n            ],\n            [\n              18.28125,\n              3.51342105\n            ],\n            [\n              18.28125,\n              3.16245553\n            ],\n            [\n              17.9296875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              3.51342105\n            ],\n            [\n              17.9296875,\n              3.86425462\n            ],\n            [\n              18.28125,\n              3.86425462\n            ],\n            [\n              18.28125,\n              3.51342105\n            ],\n            [\n              17.9296875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              3.86425462\n            ],\n            [\n              17.9296875,\n              4.21494314\n            ],\n            [\n              18.28125,\n              4.21494314\n            ],\n            [\n              18.28125,\n              3.86425462\n            ],\n            [\n              17.9296875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              4.21494314\n            ],\n            [\n              17.9296875,\n              4.56547355\n            ],\n            [\n              18.28125,\n              4.56547355\n            ],\n            [\n              18.28125,\n              4.21494314\n            ],\n            [\n              17.9296875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              4.56547355\n            ],\n            [\n              17.9296875,\n              4.9158328\n            ],\n            [\n              18.28125,\n              4.9158328\n            ],\n            [\n              18.28125,\n              4.56547355\n            ],\n            [\n              17.9296875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              4.9158328\n            ],\n            [\n              17.9296875,\n              5.26600788\n            ],\n            [\n              18.28125,\n              5.26600788\n            ],\n            [\n              18.28125,\n              4.9158328\n            ],\n            [\n              17.9296875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              5.26600788\n            ],\n            [\n              17.9296875,\n              5.61598582\n            ],\n            [\n              18.28125,\n              5.61598582\n            ],\n            [\n              18.28125,\n              5.26600788\n            ],\n            [\n              17.9296875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              5.61598582\n            ],\n            [\n              17.9296875,\n              5.96575367\n            ],\n            [\n              18.28125,\n              5.96575367\n            ],\n            [\n              18.28125,\n              5.61598582\n            ],\n            [\n              17.9296875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              5.96575367\n            ],\n            [\n              17.9296875,\n              6.31529854\n            ],\n            [\n              18.28125,\n              6.31529854\n            ],\n            [\n              18.28125,\n              5.96575367\n            ],\n            [\n              17.9296875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              6.31529854\n            ],\n            [\n              17.9296875,\n              6.66460756\n            ],\n            [\n              18.28125,\n              6.66460756\n            ],\n            [\n              18.28125,\n              6.31529854\n            ],\n            [\n              17.9296875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              6.66460756\n            ],\n            [\n              17.9296875,\n              7.01366793\n            ],\n            [\n              18.28125,\n              7.01366793\n            ],\n            [\n              18.28125,\n              6.66460756\n            ],\n            [\n              17.9296875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              7.01366793\n            ],\n            [\n              17.9296875,\n              7.36246687\n            ],\n            [\n              18.28125,\n              7.36246687\n            ],\n            [\n              18.28125,\n              7.01366793\n            ],\n            [\n              17.9296875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              7.36246687\n            ],\n            [\n              17.9296875,\n              7.71099166\n            ],\n            [\n              18.28125,\n              7.71099166\n            ],\n            [\n              18.28125,\n              7.36246687\n            ],\n            [\n              17.9296875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              7.71099166\n            ],\n            [\n              17.9296875,\n              8.05922963\n            ],\n            [\n              18.28125,\n              8.05922963\n            ],\n            [\n              18.28125,\n              7.71099166\n            ],\n            [\n              17.9296875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              8.05922963\n            ],\n            [\n              17.9296875,\n              8.40716816\n            ],\n            [\n              18.28125,\n              8.40716816\n            ],\n            [\n              18.28125,\n              8.05922963\n            ],\n            [\n              17.9296875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              8.40716816\n            ],\n            [\n              17.9296875,\n              8.7547947\n            ],\n            [\n              18.28125,\n              8.7547947\n            ],\n            [\n              18.28125,\n              8.40716816\n            ],\n            [\n              17.9296875,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              8.7547947\n            ],\n            [\n              17.9296875,\n              9.10209674\n            ],\n            [\n              18.28125,\n              9.10209674\n            ],\n            [\n              18.28125,\n              8.7547947\n            ],\n            [\n              17.9296875,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              9.10209674\n            ],\n            [\n              17.9296875,\n              9.44906183\n            ],\n            [\n              18.28125,\n              9.44906183\n            ],\n            [\n              18.28125,\n              9.10209674\n            ],\n            [\n              17.9296875,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              9.44906183\n            ],\n            [\n              17.9296875,\n              9.79567758\n            ],\n            [\n              18.28125,\n              9.79567758\n            ],\n            [\n              18.28125,\n              9.44906183\n            ],\n            [\n              17.9296875,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              9.79567758\n            ],\n            [\n              17.9296875,\n              10.14193169\n            ],\n            [\n              18.28125,\n              10.14193169\n            ],\n            [\n              18.28125,\n              9.79567758\n            ],\n            [\n              17.9296875,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -0.35156029\n            ],\n            [\n              18.28125,\n              0\n            ],\n            [\n              18.6328125,\n              0\n            ],\n            [\n              18.6328125,\n              -0.35156029\n            ],\n            [\n              18.28125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -0.70310735\n            ],\n            [\n              18.28125,\n              -0.35156029\n            ],\n            [\n              18.6328125,\n              -0.35156029\n            ],\n            [\n              18.6328125,\n              -0.70310735\n            ],\n            [\n              18.28125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -1.05462794\n            ],\n            [\n              18.28125,\n              -0.70310735\n            ],\n            [\n              18.6328125,\n              -0.70310735\n            ],\n            [\n              18.6328125,\n              -1.05462794\n            ],\n            [\n              18.28125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -1.40610884\n            ],\n            [\n              18.28125,\n              -1.05462794\n            ],\n            [\n              18.6328125,\n              -1.05462794\n            ],\n            [\n              18.6328125,\n              -1.40610884\n            ],\n            [\n              18.28125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -1.75753681\n            ],\n            [\n              18.28125,\n              -1.40610884\n            ],\n            [\n              18.6328125,\n              -1.40610884\n            ],\n            [\n              18.6328125,\n              -1.75753681\n            ],\n            [\n              18.28125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -2.10889866\n            ],\n            [\n              18.28125,\n              -1.75753681\n            ],\n            [\n              18.6328125,\n              -1.75753681\n            ],\n            [\n              18.6328125,\n              -2.10889866\n            ],\n            [\n              18.28125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -2.46018118\n            ],\n            [\n              18.28125,\n              -2.10889866\n            ],\n            [\n              18.6328125,\n              -2.10889866\n            ],\n            [\n              18.6328125,\n              -2.46018118\n            ],\n            [\n              18.28125,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -2.81137119\n            ],\n            [\n              18.28125,\n              -2.46018118\n            ],\n            [\n              18.6328125,\n              -2.46018118\n            ],\n            [\n              18.6328125,\n              -2.81137119\n            ],\n            [\n              18.28125,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -3.16245553\n            ],\n            [\n              18.28125,\n              -2.81137119\n            ],\n            [\n              18.6328125,\n              -2.81137119\n            ],\n            [\n              18.6328125,\n              -3.16245553\n            ],\n            [\n              18.28125,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -3.51342105\n            ],\n            [\n              18.28125,\n              -3.16245553\n            ],\n            [\n              18.6328125,\n              -3.16245553\n            ],\n            [\n              18.6328125,\n              -3.51342105\n            ],\n            [\n              18.28125,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -3.86425462\n            ],\n            [\n              18.28125,\n              -3.51342105\n            ],\n            [\n              18.6328125,\n              -3.51342105\n            ],\n            [\n              18.6328125,\n              -3.86425462\n            ],\n            [\n              18.28125,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -4.21494314\n            ],\n            [\n              18.28125,\n              -3.86425462\n            ],\n            [\n              18.6328125,\n              -3.86425462\n            ],\n            [\n              18.6328125,\n              -4.21494314\n            ],\n            [\n              18.28125,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -4.56547355\n            ],\n            [\n              18.28125,\n              -4.21494314\n            ],\n            [\n              18.6328125,\n              -4.21494314\n            ],\n            [\n              18.6328125,\n              -4.56547355\n            ],\n            [\n              18.28125,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -4.9158328\n            ],\n            [\n              18.28125,\n              -4.56547355\n            ],\n            [\n              18.6328125,\n              -4.56547355\n            ],\n            [\n              18.6328125,\n              -4.9158328\n            ],\n            [\n              18.28125,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -5.26600788\n            ],\n            [\n              18.28125,\n              -4.9158328\n            ],\n            [\n              18.6328125,\n              -4.9158328\n            ],\n            [\n              18.6328125,\n              -5.26600788\n            ],\n            [\n              18.28125,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -5.61598582\n            ],\n            [\n              18.28125,\n              -5.26600788\n            ],\n            [\n              18.6328125,\n              -5.26600788\n            ],\n            [\n              18.6328125,\n              -5.61598582\n            ],\n            [\n              18.28125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -5.96575367\n            ],\n            [\n              18.28125,\n              -5.61598582\n            ],\n            [\n              18.6328125,\n              -5.61598582\n            ],\n            [\n              18.6328125,\n              -5.96575367\n            ],\n            [\n              18.28125,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -6.31529854\n            ],\n            [\n              18.28125,\n              -5.96575367\n            ],\n            [\n              18.6328125,\n              -5.96575367\n            ],\n            [\n              18.6328125,\n              -6.31529854\n            ],\n            [\n              18.28125,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -6.66460756\n            ],\n            [\n              18.28125,\n              -6.31529854\n            ],\n            [\n              18.6328125,\n              -6.31529854\n            ],\n            [\n              18.6328125,\n              -6.66460756\n            ],\n            [\n              18.28125,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -7.01366793\n            ],\n            [\n              18.28125,\n              -6.66460756\n            ],\n            [\n              18.6328125,\n              -6.66460756\n            ],\n            [\n              18.6328125,\n              -7.01366793\n            ],\n            [\n              18.28125,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -7.36246687\n            ],\n            [\n              18.28125,\n              -7.01366793\n            ],\n            [\n              18.6328125,\n              -7.01366793\n            ],\n            [\n              18.6328125,\n              -7.36246687\n            ],\n            [\n              18.28125,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -7.71099166\n            ],\n            [\n              18.28125,\n              -7.36246687\n            ],\n            [\n              18.6328125,\n              -7.36246687\n            ],\n            [\n              18.6328125,\n              -7.71099166\n            ],\n            [\n              18.28125,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -8.05922963\n            ],\n            [\n              18.28125,\n              -7.71099166\n            ],\n            [\n              18.6328125,\n              -7.71099166\n            ],\n            [\n              18.6328125,\n              -8.05922963\n            ],\n            [\n              18.28125,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -8.40716816\n            ],\n            [\n              18.28125,\n              -8.05922963\n            ],\n            [\n              18.6328125,\n              -8.05922963\n            ],\n            [\n              18.6328125,\n              -8.40716816\n            ],\n            [\n              18.28125,\n              -8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -8.7547947\n            ],\n            [\n              18.28125,\n              -8.40716816\n            ],\n            [\n              18.6328125,\n              -8.40716816\n            ],\n            [\n              18.6328125,\n              -8.7547947\n            ],\n            [\n              18.28125,\n              -8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -9.10209674\n            ],\n            [\n              18.28125,\n              -8.7547947\n            ],\n            [\n              18.6328125,\n              -8.7547947\n            ],\n            [\n              18.6328125,\n              -9.10209674\n            ],\n            [\n              18.28125,\n              -9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -9.44906183\n            ],\n            [\n              18.28125,\n              -9.10209674\n            ],\n            [\n              18.6328125,\n              -9.10209674\n            ],\n            [\n              18.6328125,\n              -9.44906183\n            ],\n            [\n              18.28125,\n              -9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              -9.79567758\n            ],\n            [\n              18.28125,\n              -9.44906183\n            ],\n            [\n              18.6328125,\n              -9.44906183\n            ],\n            [\n              18.6328125,\n              -9.79567758\n            ],\n            [\n              18.28125,\n              -9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              0\n            ],\n            [\n              18.28125,\n              0.35156029\n            ],\n            [\n              18.6328125,\n              0.35156029\n            ],\n            [\n              18.6328125,\n              0\n            ],\n            [\n              18.28125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              0.35156029\n            ],\n            [\n              18.28125,\n              0.70310735\n            ],\n            [\n              18.6328125,\n              0.70310735\n            ],\n            [\n              18.6328125,\n              0.35156029\n            ],\n            [\n              18.28125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              0.70310735\n            ],\n            [\n              18.28125,\n              1.05462794\n            ],\n            [\n              18.6328125,\n              1.05462794\n            ],\n            [\n              18.6328125,\n              0.70310735\n            ],\n            [\n              18.28125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              1.05462794\n            ],\n            [\n              18.28125,\n              1.40610884\n            ],\n            [\n              18.6328125,\n              1.40610884\n            ],\n            [\n              18.6328125,\n              1.05462794\n            ],\n            [\n              18.28125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              1.40610884\n            ],\n            [\n              18.28125,\n              1.75753681\n            ],\n            [\n              18.6328125,\n              1.75753681\n            ],\n            [\n              18.6328125,\n              1.40610884\n            ],\n            [\n              18.28125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              1.75753681\n            ],\n            [\n              18.28125,\n              2.10889866\n            ],\n            [\n              18.6328125,\n              2.10889866\n            ],\n            [\n              18.6328125,\n              1.75753681\n            ],\n            [\n              18.28125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              10.14193169\n            ],\n            [\n              18.28125,\n              10.48781188\n            ],\n            [\n              18.6328125,\n              10.48781188\n            ],\n            [\n              18.6328125,\n              10.14193169\n            ],\n            [\n              18.28125,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              10.48781188\n            ],\n            [\n              18.28125,\n              10.83330598\n            ],\n            [\n              18.6328125,\n              10.83330598\n            ],\n            [\n              18.6328125,\n              10.48781188\n            ],\n            [\n              18.28125,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              10.83330598\n            ],\n            [\n              18.28125,\n              11.17840187\n            ],\n            [\n              18.6328125,\n              11.17840187\n            ],\n            [\n              18.6328125,\n              10.83330598\n            ],\n            [\n              18.28125,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              11.17840187\n            ],\n            [\n              18.28125,\n              11.52308751\n            ],\n            [\n              18.6328125,\n              11.52308751\n            ],\n            [\n              18.6328125,\n              11.17840187\n            ],\n            [\n              18.28125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              11.52308751\n            ],\n            [\n              18.28125,\n              11.86735091\n            ],\n            [\n              18.6328125,\n              11.86735091\n            ],\n            [\n              18.6328125,\n              11.52308751\n            ],\n            [\n              18.28125,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              11.86735091\n            ],\n            [\n              18.28125,\n              12.21118019\n            ],\n            [\n              18.6328125,\n              12.21118019\n            ],\n            [\n              18.6328125,\n              11.86735091\n            ],\n            [\n              18.28125,\n              11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              12.21118019\n            ],\n            [\n              18.28125,\n              12.55456353\n            ],\n            [\n              18.6328125,\n              12.55456353\n            ],\n            [\n              18.6328125,\n              12.21118019\n            ],\n            [\n              18.28125,\n              12.21118019\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              12.55456353\n            ],\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              12.55456353\n            ],\n            [\n              18.28125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.28125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              2.10889866\n            ],\n            [\n              18.28125,\n              2.46018118\n            ],\n            [\n              18.6328125,\n              2.46018118\n            ],\n            [\n              18.6328125,\n              2.10889866\n            ],\n            [\n              18.28125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              2.46018118\n            ],\n            [\n              18.28125,\n              2.81137119\n            ],\n            [\n              18.6328125,\n              2.81137119\n            ],\n            [\n              18.6328125,\n              2.46018118\n            ],\n            [\n              18.28125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              2.81137119\n            ],\n            [\n              18.28125,\n              3.16245553\n            ],\n            [\n              18.6328125,\n              3.16245553\n            ],\n            [\n              18.6328125,\n              2.81137119\n            ],\n            [\n              18.28125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              3.16245553\n            ],\n            [\n              18.28125,\n              3.51342105\n            ],\n            [\n              18.6328125,\n              3.51342105\n            ],\n            [\n              18.6328125,\n              3.16245553\n            ],\n            [\n              18.28125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              3.51342105\n            ],\n            [\n              18.28125,\n              3.86425462\n            ],\n            [\n              18.6328125,\n              3.86425462\n            ],\n            [\n              18.6328125,\n              3.51342105\n            ],\n            [\n              18.28125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              3.86425462\n            ],\n            [\n              18.28125,\n              4.21494314\n            ],\n            [\n              18.6328125,\n              4.21494314\n            ],\n            [\n              18.6328125,\n              3.86425462\n            ],\n            [\n              18.28125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              4.21494314\n            ],\n            [\n              18.28125,\n              4.56547355\n            ],\n            [\n              18.6328125,\n              4.56547355\n            ],\n            [\n              18.6328125,\n              4.21494314\n            ],\n            [\n              18.28125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              4.56547355\n            ],\n            [\n              18.28125,\n              4.9158328\n            ],\n            [\n              18.6328125,\n              4.9158328\n            ],\n            [\n              18.6328125,\n              4.56547355\n            ],\n            [\n              18.28125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              4.9158328\n            ],\n            [\n              18.28125,\n              5.26600788\n            ],\n            [\n              18.6328125,\n              5.26600788\n            ],\n            [\n              18.6328125,\n              4.9158328\n            ],\n            [\n              18.28125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              5.26600788\n            ],\n            [\n              18.28125,\n              5.61598582\n            ],\n            [\n              18.6328125,\n              5.61598582\n            ],\n            [\n              18.6328125,\n              5.26600788\n            ],\n            [\n              18.28125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              5.61598582\n            ],\n            [\n              18.28125,\n              5.96575367\n            ],\n            [\n              18.6328125,\n              5.96575367\n            ],\n            [\n              18.6328125,\n              5.61598582\n            ],\n            [\n              18.28125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              5.96575367\n            ],\n            [\n              18.28125,\n              6.31529854\n            ],\n            [\n              18.6328125,\n              6.31529854\n            ],\n            [\n              18.6328125,\n              5.96575367\n            ],\n            [\n              18.28125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              6.31529854\n            ],\n            [\n              18.28125,\n              6.66460756\n            ],\n            [\n              18.6328125,\n              6.66460756\n            ],\n            [\n              18.6328125,\n              6.31529854\n            ],\n            [\n              18.28125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              6.66460756\n            ],\n            [\n              18.28125,\n              7.01366793\n            ],\n            [\n              18.6328125,\n              7.01366793\n            ],\n            [\n              18.6328125,\n              6.66460756\n            ],\n            [\n              18.28125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              7.01366793\n            ],\n            [\n              18.28125,\n              7.36246687\n            ],\n            [\n              18.6328125,\n              7.36246687\n            ],\n            [\n              18.6328125,\n              7.01366793\n            ],\n            [\n              18.28125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              7.36246687\n            ],\n            [\n              18.28125,\n              7.71099166\n            ],\n            [\n              18.6328125,\n              7.71099166\n            ],\n            [\n              18.6328125,\n              7.36246687\n            ],\n            [\n              18.28125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              7.71099166\n            ],\n            [\n              18.28125,\n              8.05922963\n            ],\n            [\n              18.6328125,\n              8.05922963\n            ],\n            [\n              18.6328125,\n              7.71099166\n            ],\n            [\n              18.28125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              8.05922963\n            ],\n            [\n              18.28125,\n              8.40716816\n            ],\n            [\n              18.6328125,\n              8.40716816\n            ],\n            [\n              18.6328125,\n              8.05922963\n            ],\n            [\n              18.28125,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              8.40716816\n            ],\n            [\n              18.28125,\n              8.7547947\n            ],\n            [\n              18.6328125,\n              8.7547947\n            ],\n            [\n              18.6328125,\n              8.40716816\n            ],\n            [\n              18.28125,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              8.7547947\n            ],\n            [\n              18.28125,\n              9.10209674\n            ],\n            [\n              18.6328125,\n              9.10209674\n            ],\n            [\n              18.6328125,\n              8.7547947\n            ],\n            [\n              18.28125,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              9.10209674\n            ],\n            [\n              18.28125,\n              9.44906183\n            ],\n            [\n              18.6328125,\n              9.44906183\n            ],\n            [\n              18.6328125,\n              9.10209674\n            ],\n            [\n              18.28125,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              9.44906183\n            ],\n            [\n              18.28125,\n              9.79567758\n            ],\n            [\n              18.6328125,\n              9.79567758\n            ],\n            [\n              18.6328125,\n              9.44906183\n            ],\n            [\n              18.28125,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              9.79567758\n            ],\n            [\n              18.28125,\n              10.14193169\n            ],\n            [\n              18.6328125,\n              10.14193169\n            ],\n            [\n              18.6328125,\n              9.79567758\n            ],\n            [\n              18.28125,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -0.35156029\n            ],\n            [\n              18.6328125,\n              0\n            ],\n            [\n              18.984375,\n              0\n            ],\n            [\n              18.984375,\n              -0.35156029\n            ],\n            [\n              18.6328125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -0.70310735\n            ],\n            [\n              18.6328125,\n              -0.35156029\n            ],\n            [\n              18.984375,\n              -0.35156029\n            ],\n            [\n              18.984375,\n              -0.70310735\n            ],\n            [\n              18.6328125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -1.05462794\n            ],\n            [\n              18.6328125,\n              -0.70310735\n            ],\n            [\n              18.984375,\n              -0.70310735\n            ],\n            [\n              18.984375,\n              -1.05462794\n            ],\n            [\n              18.6328125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -1.40610884\n            ],\n            [\n              18.6328125,\n              -1.05462794\n            ],\n            [\n              18.984375,\n              -1.05462794\n            ],\n            [\n              18.984375,\n              -1.40610884\n            ],\n            [\n              18.6328125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -1.75753681\n            ],\n            [\n              18.6328125,\n              -1.40610884\n            ],\n            [\n              18.984375,\n              -1.40610884\n            ],\n            [\n              18.984375,\n              -1.75753681\n            ],\n            [\n              18.6328125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -2.10889866\n            ],\n            [\n              18.6328125,\n              -1.75753681\n            ],\n            [\n              18.984375,\n              -1.75753681\n            ],\n            [\n              18.984375,\n              -2.10889866\n            ],\n            [\n              18.6328125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -2.46018118\n            ],\n            [\n              18.6328125,\n              -2.10889866\n            ],\n            [\n              18.984375,\n              -2.10889866\n            ],\n            [\n              18.984375,\n              -2.46018118\n            ],\n            [\n              18.6328125,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -2.81137119\n            ],\n            [\n              18.6328125,\n              -2.46018118\n            ],\n            [\n              18.984375,\n              -2.46018118\n            ],\n            [\n              18.984375,\n              -2.81137119\n            ],\n            [\n              18.6328125,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -3.16245553\n            ],\n            [\n              18.6328125,\n              -2.81137119\n            ],\n            [\n              18.984375,\n              -2.81137119\n            ],\n            [\n              18.984375,\n              -3.16245553\n            ],\n            [\n              18.6328125,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -3.51342105\n            ],\n            [\n              18.6328125,\n              -3.16245553\n            ],\n            [\n              18.984375,\n              -3.16245553\n            ],\n            [\n              18.984375,\n              -3.51342105\n            ],\n            [\n              18.6328125,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -3.86425462\n            ],\n            [\n              18.6328125,\n              -3.51342105\n            ],\n            [\n              18.984375,\n              -3.51342105\n            ],\n            [\n              18.984375,\n              -3.86425462\n            ],\n            [\n              18.6328125,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -4.21494314\n            ],\n            [\n              18.6328125,\n              -3.86425462\n            ],\n            [\n              18.984375,\n              -3.86425462\n            ],\n            [\n              18.984375,\n              -4.21494314\n            ],\n            [\n              18.6328125,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -4.56547355\n            ],\n            [\n              18.6328125,\n              -4.21494314\n            ],\n            [\n              18.984375,\n              -4.21494314\n            ],\n            [\n              18.984375,\n              -4.56547355\n            ],\n            [\n              18.6328125,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -4.9158328\n            ],\n            [\n              18.6328125,\n              -4.56547355\n            ],\n            [\n              18.984375,\n              -4.56547355\n            ],\n            [\n              18.984375,\n              -4.9158328\n            ],\n            [\n              18.6328125,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -5.26600788\n            ],\n            [\n              18.6328125,\n              -4.9158328\n            ],\n            [\n              18.984375,\n              -4.9158328\n            ],\n            [\n              18.984375,\n              -5.26600788\n            ],\n            [\n              18.6328125,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -5.61598582\n            ],\n            [\n              18.6328125,\n              -5.26600788\n            ],\n            [\n              18.984375,\n              -5.26600788\n            ],\n            [\n              18.984375,\n              -5.61598582\n            ],\n            [\n              18.6328125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -5.96575367\n            ],\n            [\n              18.6328125,\n              -5.61598582\n            ],\n            [\n              18.984375,\n              -5.61598582\n            ],\n            [\n              18.984375,\n              -5.96575367\n            ],\n            [\n              18.6328125,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -6.31529854\n            ],\n            [\n              18.6328125,\n              -5.96575367\n            ],\n            [\n              18.984375,\n              -5.96575367\n            ],\n            [\n              18.984375,\n              -6.31529854\n            ],\n            [\n              18.6328125,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              -6.66460756\n            ],\n            [\n              18.6328125,\n              -6.31529854\n            ],\n            [\n              18.984375,\n              -6.31529854\n            ],\n            [\n              18.984375,\n              -6.66460756\n            ],\n            [\n              18.6328125,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              0\n            ],\n            [\n              18.6328125,\n              0.35156029\n            ],\n            [\n              18.984375,\n              0.35156029\n            ],\n            [\n              18.984375,\n              0\n            ],\n            [\n              18.6328125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              0.35156029\n            ],\n            [\n              18.6328125,\n              0.70310735\n            ],\n            [\n              18.984375,\n              0.70310735\n            ],\n            [\n              18.984375,\n              0.35156029\n            ],\n            [\n              18.6328125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              0.70310735\n            ],\n            [\n              18.6328125,\n              1.05462794\n            ],\n            [\n              18.984375,\n              1.05462794\n            ],\n            [\n              18.984375,\n              0.70310735\n            ],\n            [\n              18.6328125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              1.05462794\n            ],\n            [\n              18.6328125,\n              1.40610884\n            ],\n            [\n              18.984375,\n              1.40610884\n            ],\n            [\n              18.984375,\n              1.05462794\n            ],\n            [\n              18.6328125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              1.40610884\n            ],\n            [\n              18.6328125,\n              1.75753681\n            ],\n            [\n              18.984375,\n              1.75753681\n            ],\n            [\n              18.984375,\n              1.40610884\n            ],\n            [\n              18.6328125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              1.75753681\n            ],\n            [\n              18.6328125,\n              2.10889866\n            ],\n            [\n              18.984375,\n              2.10889866\n            ],\n            [\n              18.984375,\n              1.75753681\n            ],\n            [\n              18.6328125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              10.14193169\n            ],\n            [\n              18.6328125,\n              10.48781188\n            ],\n            [\n              18.984375,\n              10.48781188\n            ],\n            [\n              18.984375,\n              10.14193169\n            ],\n            [\n              18.6328125,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              10.48781188\n            ],\n            [\n              18.6328125,\n              10.83330598\n            ],\n            [\n              18.984375,\n              10.83330598\n            ],\n            [\n              18.984375,\n              10.48781188\n            ],\n            [\n              18.6328125,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              10.83330598\n            ],\n            [\n              18.6328125,\n              11.17840187\n            ],\n            [\n              18.984375,\n              11.17840187\n            ],\n            [\n              18.984375,\n              10.83330598\n            ],\n            [\n              18.6328125,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              11.17840187\n            ],\n            [\n              18.6328125,\n              11.52308751\n            ],\n            [\n              18.984375,\n              11.52308751\n            ],\n            [\n              18.984375,\n              11.17840187\n            ],\n            [\n              18.6328125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              11.52308751\n            ],\n            [\n              18.6328125,\n              11.86735091\n            ],\n            [\n              18.984375,\n              11.86735091\n            ],\n            [\n              18.984375,\n              11.52308751\n            ],\n            [\n              18.6328125,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              11.86735091\n            ],\n            [\n              18.6328125,\n              12.21118019\n            ],\n            [\n              18.984375,\n              12.21118019\n            ],\n            [\n              18.984375,\n              11.86735091\n            ],\n            [\n              18.6328125,\n              11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              12.21118019\n            ],\n            [\n              18.6328125,\n              12.55456353\n            ],\n            [\n              18.984375,\n              12.55456353\n            ],\n            [\n              18.984375,\n              12.21118019\n            ],\n            [\n              18.6328125,\n              12.21118019\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              12.55456353\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              18.984375,\n              12.55456353\n            ],\n            [\n              18.6328125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              2.10889866\n            ],\n            [\n              18.6328125,\n              2.46018118\n            ],\n            [\n              18.984375,\n              2.46018118\n            ],\n            [\n              18.984375,\n              2.10889866\n            ],\n            [\n              18.6328125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              2.46018118\n            ],\n            [\n              18.6328125,\n              2.81137119\n            ],\n            [\n              18.984375,\n              2.81137119\n            ],\n            [\n              18.984375,\n              2.46018118\n            ],\n            [\n              18.6328125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              2.81137119\n            ],\n            [\n              18.6328125,\n              3.16245553\n            ],\n            [\n              18.984375,\n              3.16245553\n            ],\n            [\n              18.984375,\n              2.81137119\n            ],\n            [\n              18.6328125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              3.16245553\n            ],\n            [\n              18.6328125,\n              3.51342105\n            ],\n            [\n              18.984375,\n              3.51342105\n            ],\n            [\n              18.984375,\n              3.16245553\n            ],\n            [\n              18.6328125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              3.51342105\n            ],\n            [\n              18.6328125,\n              3.86425462\n            ],\n            [\n              18.984375,\n              3.86425462\n            ],\n            [\n              18.984375,\n              3.51342105\n            ],\n            [\n              18.6328125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              3.86425462\n            ],\n            [\n              18.6328125,\n              4.21494314\n            ],\n            [\n              18.984375,\n              4.21494314\n            ],\n            [\n              18.984375,\n              3.86425462\n            ],\n            [\n              18.6328125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              4.21494314\n            ],\n            [\n              18.6328125,\n              4.56547355\n            ],\n            [\n              18.984375,\n              4.56547355\n            ],\n            [\n              18.984375,\n              4.21494314\n            ],\n            [\n              18.6328125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              4.56547355\n            ],\n            [\n              18.6328125,\n              4.9158328\n            ],\n            [\n              18.984375,\n              4.9158328\n            ],\n            [\n              18.984375,\n              4.56547355\n            ],\n            [\n              18.6328125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              4.9158328\n            ],\n            [\n              18.6328125,\n              5.26600788\n            ],\n            [\n              18.984375,\n              5.26600788\n            ],\n            [\n              18.984375,\n              4.9158328\n            ],\n            [\n              18.6328125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              5.26600788\n            ],\n            [\n              18.6328125,\n              5.61598582\n            ],\n            [\n              18.984375,\n              5.61598582\n            ],\n            [\n              18.984375,\n              5.26600788\n            ],\n            [\n              18.6328125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              5.61598582\n            ],\n            [\n              18.6328125,\n              5.96575367\n            ],\n            [\n              18.984375,\n              5.96575367\n            ],\n            [\n              18.984375,\n              5.61598582\n            ],\n            [\n              18.6328125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              5.96575367\n            ],\n            [\n              18.6328125,\n              6.31529854\n            ],\n            [\n              18.984375,\n              6.31529854\n            ],\n            [\n              18.984375,\n              5.96575367\n            ],\n            [\n              18.6328125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              6.31529854\n            ],\n            [\n              18.6328125,\n              6.66460756\n            ],\n            [\n              18.984375,\n              6.66460756\n            ],\n            [\n              18.984375,\n              6.31529854\n            ],\n            [\n              18.6328125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              6.66460756\n            ],\n            [\n              18.6328125,\n              7.01366793\n            ],\n            [\n              18.984375,\n              7.01366793\n            ],\n            [\n              18.984375,\n              6.66460756\n            ],\n            [\n              18.6328125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              7.01366793\n            ],\n            [\n              18.6328125,\n              7.36246687\n            ],\n            [\n              18.984375,\n              7.36246687\n            ],\n            [\n              18.984375,\n              7.01366793\n            ],\n            [\n              18.6328125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              7.36246687\n            ],\n            [\n              18.6328125,\n              7.71099166\n            ],\n            [\n              18.984375,\n              7.71099166\n            ],\n            [\n              18.984375,\n              7.36246687\n            ],\n            [\n              18.6328125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              7.71099166\n            ],\n            [\n              18.6328125,\n              8.05922963\n            ],\n            [\n              18.984375,\n              8.05922963\n            ],\n            [\n              18.984375,\n              7.71099166\n            ],\n            [\n              18.6328125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              8.05922963\n            ],\n            [\n              18.6328125,\n              8.40716816\n            ],\n            [\n              18.984375,\n              8.40716816\n            ],\n            [\n              18.984375,\n              8.05922963\n            ],\n            [\n              18.6328125,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              8.40716816\n            ],\n            [\n              18.6328125,\n              8.7547947\n            ],\n            [\n              18.984375,\n              8.7547947\n            ],\n            [\n              18.984375,\n              8.40716816\n            ],\n            [\n              18.6328125,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              8.7547947\n            ],\n            [\n              18.6328125,\n              9.10209674\n            ],\n            [\n              18.984375,\n              9.10209674\n            ],\n            [\n              18.984375,\n              8.7547947\n            ],\n            [\n              18.6328125,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              9.10209674\n            ],\n            [\n              18.6328125,\n              9.44906183\n            ],\n            [\n              18.984375,\n              9.44906183\n            ],\n            [\n              18.984375,\n              9.10209674\n            ],\n            [\n              18.6328125,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              9.44906183\n            ],\n            [\n              18.6328125,\n              9.79567758\n            ],\n            [\n              18.984375,\n              9.79567758\n            ],\n            [\n              18.984375,\n              9.44906183\n            ],\n            [\n              18.6328125,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              9.79567758\n            ],\n            [\n              18.6328125,\n              10.14193169\n            ],\n            [\n              18.984375,\n              10.14193169\n            ],\n            [\n              18.984375,\n              9.79567758\n            ],\n            [\n              18.6328125,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -0.35156029\n            ],\n            [\n              18.984375,\n              0\n            ],\n            [\n              19.3359375,\n              0\n            ],\n            [\n              19.3359375,\n              -0.35156029\n            ],\n            [\n              18.984375,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -0.70310735\n            ],\n            [\n              18.984375,\n              -0.35156029\n            ],\n            [\n              19.3359375,\n              -0.35156029\n            ],\n            [\n              19.3359375,\n              -0.70310735\n            ],\n            [\n              18.984375,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -1.05462794\n            ],\n            [\n              18.984375,\n              -0.70310735\n            ],\n            [\n              19.3359375,\n              -0.70310735\n            ],\n            [\n              19.3359375,\n              -1.05462794\n            ],\n            [\n              18.984375,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -1.40610884\n            ],\n            [\n              18.984375,\n              -1.05462794\n            ],\n            [\n              19.3359375,\n              -1.05462794\n            ],\n            [\n              19.3359375,\n              -1.40610884\n            ],\n            [\n              18.984375,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -1.75753681\n            ],\n            [\n              18.984375,\n              -1.40610884\n            ],\n            [\n              19.3359375,\n              -1.40610884\n            ],\n            [\n              19.3359375,\n              -1.75753681\n            ],\n            [\n              18.984375,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -2.10889866\n            ],\n            [\n              18.984375,\n              -1.75753681\n            ],\n            [\n              19.3359375,\n              -1.75753681\n            ],\n            [\n              19.3359375,\n              -2.10889866\n            ],\n            [\n              18.984375,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -2.46018118\n            ],\n            [\n              18.984375,\n              -2.10889866\n            ],\n            [\n              19.3359375,\n              -2.10889866\n            ],\n            [\n              19.3359375,\n              -2.46018118\n            ],\n            [\n              18.984375,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -2.81137119\n            ],\n            [\n              18.984375,\n              -2.46018118\n            ],\n            [\n              19.3359375,\n              -2.46018118\n            ],\n            [\n              19.3359375,\n              -2.81137119\n            ],\n            [\n              18.984375,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -3.16245553\n            ],\n            [\n              18.984375,\n              -2.81137119\n            ],\n            [\n              19.3359375,\n              -2.81137119\n            ],\n            [\n              19.3359375,\n              -3.16245553\n            ],\n            [\n              18.984375,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -3.51342105\n            ],\n            [\n              18.984375,\n              -3.16245553\n            ],\n            [\n              19.3359375,\n              -3.16245553\n            ],\n            [\n              19.3359375,\n              -3.51342105\n            ],\n            [\n              18.984375,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              -3.86425462\n            ],\n            [\n              18.984375,\n              -3.51342105\n            ],\n            [\n              19.3359375,\n              -3.51342105\n            ],\n            [\n              19.3359375,\n              -3.86425462\n            ],\n            [\n              18.984375,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              0\n            ],\n            [\n              18.984375,\n              0.35156029\n            ],\n            [\n              19.3359375,\n              0.35156029\n            ],\n            [\n              19.3359375,\n              0\n            ],\n            [\n              18.984375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              0.35156029\n            ],\n            [\n              18.984375,\n              0.70310735\n            ],\n            [\n              19.3359375,\n              0.70310735\n            ],\n            [\n              19.3359375,\n              0.35156029\n            ],\n            [\n              18.984375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              0.70310735\n            ],\n            [\n              18.984375,\n              1.05462794\n            ],\n            [\n              19.3359375,\n              1.05462794\n            ],\n            [\n              19.3359375,\n              0.70310735\n            ],\n            [\n              18.984375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              1.05462794\n            ],\n            [\n              18.984375,\n              1.40610884\n            ],\n            [\n              19.3359375,\n              1.40610884\n            ],\n            [\n              19.3359375,\n              1.05462794\n            ],\n            [\n              18.984375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              1.40610884\n            ],\n            [\n              18.984375,\n              1.75753681\n            ],\n            [\n              19.3359375,\n              1.75753681\n            ],\n            [\n              19.3359375,\n              1.40610884\n            ],\n            [\n              18.984375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              1.75753681\n            ],\n            [\n              18.984375,\n              2.10889866\n            ],\n            [\n              19.3359375,\n              2.10889866\n            ],\n            [\n              19.3359375,\n              1.75753681\n            ],\n            [\n              18.984375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              10.14193169\n            ],\n            [\n              18.984375,\n              10.48781188\n            ],\n            [\n              19.3359375,\n              10.48781188\n            ],\n            [\n              19.3359375,\n              10.14193169\n            ],\n            [\n              18.984375,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              10.48781188\n            ],\n            [\n              18.984375,\n              10.83330598\n            ],\n            [\n              19.3359375,\n              10.83330598\n            ],\n            [\n              19.3359375,\n              10.48781188\n            ],\n            [\n              18.984375,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              10.83330598\n            ],\n            [\n              18.984375,\n              11.17840187\n            ],\n            [\n              19.3359375,\n              11.17840187\n            ],\n            [\n              19.3359375,\n              10.83330598\n            ],\n            [\n              18.984375,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              11.17840187\n            ],\n            [\n              18.984375,\n              11.52308751\n            ],\n            [\n              19.3359375,\n              11.52308751\n            ],\n            [\n              19.3359375,\n              11.17840187\n            ],\n            [\n              18.984375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              11.52308751\n            ],\n            [\n              18.984375,\n              11.86735091\n            ],\n            [\n              19.3359375,\n              11.86735091\n            ],\n            [\n              19.3359375,\n              11.52308751\n            ],\n            [\n              18.984375,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              11.86735091\n            ],\n            [\n              18.984375,\n              12.21118019\n            ],\n            [\n              19.3359375,\n              12.21118019\n            ],\n            [\n              19.3359375,\n              11.86735091\n            ],\n            [\n              18.984375,\n              11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              12.21118019\n            ],\n            [\n              18.984375,\n              12.55456353\n            ],\n            [\n              19.3359375,\n              12.55456353\n            ],\n            [\n              19.3359375,\n              12.21118019\n            ],\n            [\n              18.984375,\n              12.21118019\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              12.55456353\n            ],\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              19.3359375,\n              12.89748918\n            ],\n            [\n              19.3359375,\n              12.55456353\n            ],\n            [\n              18.984375,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              2.10889866\n            ],\n            [\n              18.984375,\n              2.46018118\n            ],\n            [\n              19.3359375,\n              2.46018118\n            ],\n            [\n              19.3359375,\n              2.10889866\n            ],\n            [\n              18.984375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              2.46018118\n            ],\n            [\n              18.984375,\n              2.81137119\n            ],\n            [\n              19.3359375,\n              2.81137119\n            ],\n            [\n              19.3359375,\n              2.46018118\n            ],\n            [\n              18.984375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              2.81137119\n            ],\n            [\n              18.984375,\n              3.16245553\n            ],\n            [\n              19.3359375,\n              3.16245553\n            ],\n            [\n              19.3359375,\n              2.81137119\n            ],\n            [\n              18.984375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              3.16245553\n            ],\n            [\n              18.984375,\n              3.51342105\n            ],\n            [\n              19.3359375,\n              3.51342105\n            ],\n            [\n              19.3359375,\n              3.16245553\n            ],\n            [\n              18.984375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              3.51342105\n            ],\n            [\n              18.984375,\n              3.86425462\n            ],\n            [\n              19.3359375,\n              3.86425462\n            ],\n            [\n              19.3359375,\n              3.51342105\n            ],\n            [\n              18.984375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              3.86425462\n            ],\n            [\n              18.984375,\n              4.21494314\n            ],\n            [\n              19.3359375,\n              4.21494314\n            ],\n            [\n              19.3359375,\n              3.86425462\n            ],\n            [\n              18.984375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              4.21494314\n            ],\n            [\n              18.984375,\n              4.56547355\n            ],\n            [\n              19.3359375,\n              4.56547355\n            ],\n            [\n              19.3359375,\n              4.21494314\n            ],\n            [\n              18.984375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              4.56547355\n            ],\n            [\n              18.984375,\n              4.9158328\n            ],\n            [\n              19.3359375,\n              4.9158328\n            ],\n            [\n              19.3359375,\n              4.56547355\n            ],\n            [\n              18.984375,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              4.9158328\n            ],\n            [\n              18.984375,\n              5.26600788\n            ],\n            [\n              19.3359375,\n              5.26600788\n            ],\n            [\n              19.3359375,\n              4.9158328\n            ],\n            [\n              18.984375,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              5.26600788\n            ],\n            [\n              18.984375,\n              5.61598582\n            ],\n            [\n              19.3359375,\n              5.61598582\n            ],\n            [\n              19.3359375,\n              5.26600788\n            ],\n            [\n              18.984375,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              5.61598582\n            ],\n            [\n              18.984375,\n              5.96575367\n            ],\n            [\n              19.3359375,\n              5.96575367\n            ],\n            [\n              19.3359375,\n              5.61598582\n            ],\n            [\n              18.984375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              5.96575367\n            ],\n            [\n              18.984375,\n              6.31529854\n            ],\n            [\n              19.3359375,\n              6.31529854\n            ],\n            [\n              19.3359375,\n              5.96575367\n            ],\n            [\n              18.984375,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              6.31529854\n            ],\n            [\n              18.984375,\n              6.66460756\n            ],\n            [\n              19.3359375,\n              6.66460756\n            ],\n            [\n              19.3359375,\n              6.31529854\n            ],\n            [\n              18.984375,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              6.66460756\n            ],\n            [\n              18.984375,\n              7.01366793\n            ],\n            [\n              19.3359375,\n              7.01366793\n            ],\n            [\n              19.3359375,\n              6.66460756\n            ],\n            [\n              18.984375,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              7.01366793\n            ],\n            [\n              18.984375,\n              7.36246687\n            ],\n            [\n              19.3359375,\n              7.36246687\n            ],\n            [\n              19.3359375,\n              7.01366793\n            ],\n            [\n              18.984375,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              7.36246687\n            ],\n            [\n              18.984375,\n              7.71099166\n            ],\n            [\n              19.3359375,\n              7.71099166\n            ],\n            [\n              19.3359375,\n              7.36246687\n            ],\n            [\n              18.984375,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              7.71099166\n            ],\n            [\n              18.984375,\n              8.05922963\n            ],\n            [\n              19.3359375,\n              8.05922963\n            ],\n            [\n              19.3359375,\n              7.71099166\n            ],\n            [\n              18.984375,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              8.05922963\n            ],\n            [\n              18.984375,\n              8.40716816\n            ],\n            [\n              19.3359375,\n              8.40716816\n            ],\n            [\n              19.3359375,\n              8.05922963\n            ],\n            [\n              18.984375,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              8.40716816\n            ],\n            [\n              18.984375,\n              8.7547947\n            ],\n            [\n              19.3359375,\n              8.7547947\n            ],\n            [\n              19.3359375,\n              8.40716816\n            ],\n            [\n              18.984375,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              8.7547947\n            ],\n            [\n              18.984375,\n              9.10209674\n            ],\n            [\n              19.3359375,\n              9.10209674\n            ],\n            [\n              19.3359375,\n              8.7547947\n            ],\n            [\n              18.984375,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              9.10209674\n            ],\n            [\n              18.984375,\n              9.44906183\n            ],\n            [\n              19.3359375,\n              9.44906183\n            ],\n            [\n              19.3359375,\n              9.10209674\n            ],\n            [\n              18.984375,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              9.44906183\n            ],\n            [\n              18.984375,\n              9.79567758\n            ],\n            [\n              19.3359375,\n              9.79567758\n            ],\n            [\n              19.3359375,\n              9.44906183\n            ],\n            [\n              18.984375,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              9.79567758\n            ],\n            [\n              18.984375,\n              10.14193169\n            ],\n            [\n              19.3359375,\n              10.14193169\n            ],\n            [\n              19.3359375,\n              9.79567758\n            ],\n            [\n              18.984375,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              -0.35156029\n            ],\n            [\n              19.3359375,\n              0\n            ],\n            [\n              19.6875,\n              0\n            ],\n            [\n              19.6875,\n              -0.35156029\n            ],\n            [\n              19.3359375,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              -0.70310735\n            ],\n            [\n              19.3359375,\n              -0.35156029\n            ],\n            [\n              19.6875,\n              -0.35156029\n            ],\n            [\n              19.6875,\n              -0.70310735\n            ],\n            [\n              19.3359375,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              -1.05462794\n            ],\n            [\n              19.3359375,\n              -0.70310735\n            ],\n            [\n              19.6875,\n              -0.70310735\n            ],\n            [\n              19.6875,\n              -1.05462794\n            ],\n            [\n              19.3359375,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              -1.40610884\n            ],\n            [\n              19.3359375,\n              -1.05462794\n            ],\n            [\n              19.6875,\n              -1.05462794\n            ],\n            [\n              19.6875,\n              -1.40610884\n            ],\n            [\n              19.3359375,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              -1.75753681\n            ],\n            [\n              19.3359375,\n              -1.40610884\n            ],\n            [\n              19.6875,\n              -1.40610884\n            ],\n            [\n              19.6875,\n              -1.75753681\n            ],\n            [\n              19.3359375,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              -2.10889866\n            ],\n            [\n              19.3359375,\n              -1.75753681\n            ],\n            [\n              19.6875,\n              -1.75753681\n            ],\n            [\n              19.6875,\n              -2.10889866\n            ],\n            [\n              19.3359375,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              -2.46018118\n            ],\n            [\n              19.3359375,\n              -2.10889866\n            ],\n            [\n              19.6875,\n              -2.10889866\n            ],\n            [\n              19.6875,\n              -2.46018118\n            ],\n            [\n              19.3359375,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              0\n            ],\n            [\n              19.3359375,\n              0.35156029\n            ],\n            [\n              19.6875,\n              0.35156029\n            ],\n            [\n              19.6875,\n              0\n            ],\n            [\n              19.3359375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              0.35156029\n            ],\n            [\n              19.3359375,\n              0.70310735\n            ],\n            [\n              19.6875,\n              0.70310735\n            ],\n            [\n              19.6875,\n              0.35156029\n            ],\n            [\n              19.3359375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              0.70310735\n            ],\n            [\n              19.3359375,\n              1.05462794\n            ],\n            [\n              19.6875,\n              1.05462794\n            ],\n            [\n              19.6875,\n              0.70310735\n            ],\n            [\n              19.3359375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              1.05462794\n            ],\n            [\n              19.3359375,\n              1.40610884\n            ],\n            [\n              19.6875,\n              1.40610884\n            ],\n            [\n              19.6875,\n              1.05462794\n            ],\n            [\n              19.3359375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              1.40610884\n            ],\n            [\n              19.3359375,\n              1.75753681\n            ],\n            [\n              19.6875,\n              1.75753681\n            ],\n            [\n              19.6875,\n              1.40610884\n            ],\n            [\n              19.3359375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              1.75753681\n            ],\n            [\n              19.3359375,\n              2.10889866\n            ],\n            [\n              19.6875,\n              2.10889866\n            ],\n            [\n              19.6875,\n              1.75753681\n            ],\n            [\n              19.3359375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              10.14193169\n            ],\n            [\n              19.3359375,\n              10.48781188\n            ],\n            [\n              19.6875,\n              10.48781188\n            ],\n            [\n              19.6875,\n              10.14193169\n            ],\n            [\n              19.3359375,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              10.48781188\n            ],\n            [\n              19.3359375,\n              10.83330598\n            ],\n            [\n              19.6875,\n              10.83330598\n            ],\n            [\n              19.6875,\n              10.48781188\n            ],\n            [\n              19.3359375,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              10.83330598\n            ],\n            [\n              19.3359375,\n              11.17840187\n            ],\n            [\n              19.6875,\n              11.17840187\n            ],\n            [\n              19.6875,\n              10.83330598\n            ],\n            [\n              19.3359375,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              11.17840187\n            ],\n            [\n              19.3359375,\n              11.52308751\n            ],\n            [\n              19.6875,\n              11.52308751\n            ],\n            [\n              19.6875,\n              11.17840187\n            ],\n            [\n              19.3359375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              11.52308751\n            ],\n            [\n              19.3359375,\n              11.86735091\n            ],\n            [\n              19.6875,\n              11.86735091\n            ],\n            [\n              19.6875,\n              11.52308751\n            ],\n            [\n              19.3359375,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              2.10889866\n            ],\n            [\n              19.3359375,\n              2.46018118\n            ],\n            [\n              19.6875,\n              2.46018118\n            ],\n            [\n              19.6875,\n              2.10889866\n            ],\n            [\n              19.3359375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              2.46018118\n            ],\n            [\n              19.3359375,\n              2.81137119\n            ],\n            [\n              19.6875,\n              2.81137119\n            ],\n            [\n              19.6875,\n              2.46018118\n            ],\n            [\n              19.3359375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              2.81137119\n            ],\n            [\n              19.3359375,\n              3.16245553\n            ],\n            [\n              19.6875,\n              3.16245553\n            ],\n            [\n              19.6875,\n              2.81137119\n            ],\n            [\n              19.3359375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              3.16245553\n            ],\n            [\n              19.3359375,\n              3.51342105\n            ],\n            [\n              19.6875,\n              3.51342105\n            ],\n            [\n              19.6875,\n              3.16245553\n            ],\n            [\n              19.3359375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              3.51342105\n            ],\n            [\n              19.3359375,\n              3.86425462\n            ],\n            [\n              19.6875,\n              3.86425462\n            ],\n            [\n              19.6875,\n              3.51342105\n            ],\n            [\n              19.3359375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              3.86425462\n            ],\n            [\n              19.3359375,\n              4.21494314\n            ],\n            [\n              19.6875,\n              4.21494314\n            ],\n            [\n              19.6875,\n              3.86425462\n            ],\n            [\n              19.3359375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              4.21494314\n            ],\n            [\n              19.3359375,\n              4.56547355\n            ],\n            [\n              19.6875,\n              4.56547355\n            ],\n            [\n              19.6875,\n              4.21494314\n            ],\n            [\n              19.3359375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              4.56547355\n            ],\n            [\n              19.3359375,\n              4.9158328\n            ],\n            [\n              19.6875,\n              4.9158328\n            ],\n            [\n              19.6875,\n              4.56547355\n            ],\n            [\n              19.3359375,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              4.9158328\n            ],\n            [\n              19.3359375,\n              5.26600788\n            ],\n            [\n              19.6875,\n              5.26600788\n            ],\n            [\n              19.6875,\n              4.9158328\n            ],\n            [\n              19.3359375,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              5.26600788\n            ],\n            [\n              19.3359375,\n              5.61598582\n            ],\n            [\n              19.6875,\n              5.61598582\n            ],\n            [\n              19.6875,\n              5.26600788\n            ],\n            [\n              19.3359375,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              5.61598582\n            ],\n            [\n              19.3359375,\n              5.96575367\n            ],\n            [\n              19.6875,\n              5.96575367\n            ],\n            [\n              19.6875,\n              5.61598582\n            ],\n            [\n              19.3359375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              5.96575367\n            ],\n            [\n              19.3359375,\n              6.31529854\n            ],\n            [\n              19.6875,\n              6.31529854\n            ],\n            [\n              19.6875,\n              5.96575367\n            ],\n            [\n              19.3359375,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              6.31529854\n            ],\n            [\n              19.3359375,\n              6.66460756\n            ],\n            [\n              19.6875,\n              6.66460756\n            ],\n            [\n              19.6875,\n              6.31529854\n            ],\n            [\n              19.3359375,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              6.66460756\n            ],\n            [\n              19.3359375,\n              7.01366793\n            ],\n            [\n              19.6875,\n              7.01366793\n            ],\n            [\n              19.6875,\n              6.66460756\n            ],\n            [\n              19.3359375,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              7.01366793\n            ],\n            [\n              19.3359375,\n              7.36246687\n            ],\n            [\n              19.6875,\n              7.36246687\n            ],\n            [\n              19.6875,\n              7.01366793\n            ],\n            [\n              19.3359375,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              7.36246687\n            ],\n            [\n              19.3359375,\n              7.71099166\n            ],\n            [\n              19.6875,\n              7.71099166\n            ],\n            [\n              19.6875,\n              7.36246687\n            ],\n            [\n              19.3359375,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              7.71099166\n            ],\n            [\n              19.3359375,\n              8.05922963\n            ],\n            [\n              19.6875,\n              8.05922963\n            ],\n            [\n              19.6875,\n              7.71099166\n            ],\n            [\n              19.3359375,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              8.05922963\n            ],\n            [\n              19.3359375,\n              8.40716816\n            ],\n            [\n              19.6875,\n              8.40716816\n            ],\n            [\n              19.6875,\n              8.05922963\n            ],\n            [\n              19.3359375,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              8.40716816\n            ],\n            [\n              19.3359375,\n              8.7547947\n            ],\n            [\n              19.6875,\n              8.7547947\n            ],\n            [\n              19.6875,\n              8.40716816\n            ],\n            [\n              19.3359375,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              8.7547947\n            ],\n            [\n              19.3359375,\n              9.10209674\n            ],\n            [\n              19.6875,\n              9.10209674\n            ],\n            [\n              19.6875,\n              8.7547947\n            ],\n            [\n              19.3359375,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              9.10209674\n            ],\n            [\n              19.3359375,\n              9.44906183\n            ],\n            [\n              19.6875,\n              9.44906183\n            ],\n            [\n              19.6875,\n              9.10209674\n            ],\n            [\n              19.3359375,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              9.44906183\n            ],\n            [\n              19.3359375,\n              9.79567758\n            ],\n            [\n              19.6875,\n              9.79567758\n            ],\n            [\n              19.6875,\n              9.44906183\n            ],\n            [\n              19.3359375,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              9.79567758\n            ],\n            [\n              19.3359375,\n              10.14193169\n            ],\n            [\n              19.6875,\n              10.14193169\n            ],\n            [\n              19.6875,\n              9.79567758\n            ],\n            [\n              19.3359375,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -0.35156029\n            ],\n            [\n              19.6875,\n              0\n            ],\n            [\n              20.0390625,\n              0\n            ],\n            [\n              20.0390625,\n              -0.35156029\n            ],\n            [\n              19.6875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -0.70310735\n            ],\n            [\n              19.6875,\n              -0.35156029\n            ],\n            [\n              20.0390625,\n              -0.35156029\n            ],\n            [\n              20.0390625,\n              -0.70310735\n            ],\n            [\n              19.6875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -1.05462794\n            ],\n            [\n              19.6875,\n              -0.70310735\n            ],\n            [\n              20.0390625,\n              -0.70310735\n            ],\n            [\n              20.0390625,\n              -1.05462794\n            ],\n            [\n              19.6875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -1.40610884\n            ],\n            [\n              19.6875,\n              -1.05462794\n            ],\n            [\n              20.0390625,\n              -1.05462794\n            ],\n            [\n              20.0390625,\n              -1.40610884\n            ],\n            [\n              19.6875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -1.75753681\n            ],\n            [\n              19.6875,\n              -1.40610884\n            ],\n            [\n              20.0390625,\n              -1.40610884\n            ],\n            [\n              20.0390625,\n              -1.75753681\n            ],\n            [\n              19.6875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -2.10889866\n            ],\n            [\n              19.6875,\n              -1.75753681\n            ],\n            [\n              20.0390625,\n              -1.75753681\n            ],\n            [\n              20.0390625,\n              -2.10889866\n            ],\n            [\n              19.6875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -2.46018118\n            ],\n            [\n              19.6875,\n              -2.10889866\n            ],\n            [\n              20.0390625,\n              -2.10889866\n            ],\n            [\n              20.0390625,\n              -2.46018118\n            ],\n            [\n              19.6875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -2.81137119\n            ],\n            [\n              19.6875,\n              -2.46018118\n            ],\n            [\n              20.0390625,\n              -2.46018118\n            ],\n            [\n              20.0390625,\n              -2.81137119\n            ],\n            [\n              19.6875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              -3.16245553\n            ],\n            [\n              19.6875,\n              -2.81137119\n            ],\n            [\n              20.0390625,\n              -2.81137119\n            ],\n            [\n              20.0390625,\n              -3.16245553\n            ],\n            [\n              19.6875,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              0\n            ],\n            [\n              19.6875,\n              0.35156029\n            ],\n            [\n              20.0390625,\n              0.35156029\n            ],\n            [\n              20.0390625,\n              0\n            ],\n            [\n              19.6875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              0.35156029\n            ],\n            [\n              19.6875,\n              0.70310735\n            ],\n            [\n              20.0390625,\n              0.70310735\n            ],\n            [\n              20.0390625,\n              0.35156029\n            ],\n            [\n              19.6875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              0.70310735\n            ],\n            [\n              19.6875,\n              1.05462794\n            ],\n            [\n              20.0390625,\n              1.05462794\n            ],\n            [\n              20.0390625,\n              0.70310735\n            ],\n            [\n              19.6875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              1.05462794\n            ],\n            [\n              19.6875,\n              1.40610884\n            ],\n            [\n              20.0390625,\n              1.40610884\n            ],\n            [\n              20.0390625,\n              1.05462794\n            ],\n            [\n              19.6875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              1.40610884\n            ],\n            [\n              19.6875,\n              1.75753681\n            ],\n            [\n              20.0390625,\n              1.75753681\n            ],\n            [\n              20.0390625,\n              1.40610884\n            ],\n            [\n              19.6875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              1.75753681\n            ],\n            [\n              19.6875,\n              2.10889866\n            ],\n            [\n              20.0390625,\n              2.10889866\n            ],\n            [\n              20.0390625,\n              1.75753681\n            ],\n            [\n              19.6875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              10.14193169\n            ],\n            [\n              19.6875,\n              10.48781188\n            ],\n            [\n              20.0390625,\n              10.48781188\n            ],\n            [\n              20.0390625,\n              10.14193169\n            ],\n            [\n              19.6875,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              10.48781188\n            ],\n            [\n              19.6875,\n              10.83330598\n            ],\n            [\n              20.0390625,\n              10.83330598\n            ],\n            [\n              20.0390625,\n              10.48781188\n            ],\n            [\n              19.6875,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              10.83330598\n            ],\n            [\n              19.6875,\n              11.17840187\n            ],\n            [\n              20.0390625,\n              11.17840187\n            ],\n            [\n              20.0390625,\n              10.83330598\n            ],\n            [\n              19.6875,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              2.10889866\n            ],\n            [\n              19.6875,\n              2.46018118\n            ],\n            [\n              20.0390625,\n              2.46018118\n            ],\n            [\n              20.0390625,\n              2.10889866\n            ],\n            [\n              19.6875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              2.46018118\n            ],\n            [\n              19.6875,\n              2.81137119\n            ],\n            [\n              20.0390625,\n              2.81137119\n            ],\n            [\n              20.0390625,\n              2.46018118\n            ],\n            [\n              19.6875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              2.81137119\n            ],\n            [\n              19.6875,\n              3.16245553\n            ],\n            [\n              20.0390625,\n              3.16245553\n            ],\n            [\n              20.0390625,\n              2.81137119\n            ],\n            [\n              19.6875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              3.16245553\n            ],\n            [\n              19.6875,\n              3.51342105\n            ],\n            [\n              20.0390625,\n              3.51342105\n            ],\n            [\n              20.0390625,\n              3.16245553\n            ],\n            [\n              19.6875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              3.51342105\n            ],\n            [\n              19.6875,\n              3.86425462\n            ],\n            [\n              20.0390625,\n              3.86425462\n            ],\n            [\n              20.0390625,\n              3.51342105\n            ],\n            [\n              19.6875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              3.86425462\n            ],\n            [\n              19.6875,\n              4.21494314\n            ],\n            [\n              20.0390625,\n              4.21494314\n            ],\n            [\n              20.0390625,\n              3.86425462\n            ],\n            [\n              19.6875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              4.21494314\n            ],\n            [\n              19.6875,\n              4.56547355\n            ],\n            [\n              20.0390625,\n              4.56547355\n            ],\n            [\n              20.0390625,\n              4.21494314\n            ],\n            [\n              19.6875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              4.56547355\n            ],\n            [\n              19.6875,\n              4.9158328\n            ],\n            [\n              20.0390625,\n              4.9158328\n            ],\n            [\n              20.0390625,\n              4.56547355\n            ],\n            [\n              19.6875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              4.9158328\n            ],\n            [\n              19.6875,\n              5.26600788\n            ],\n            [\n              20.0390625,\n              5.26600788\n            ],\n            [\n              20.0390625,\n              4.9158328\n            ],\n            [\n              19.6875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              5.26600788\n            ],\n            [\n              19.6875,\n              5.61598582\n            ],\n            [\n              20.0390625,\n              5.61598582\n            ],\n            [\n              20.0390625,\n              5.26600788\n            ],\n            [\n              19.6875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              5.61598582\n            ],\n            [\n              19.6875,\n              5.96575367\n            ],\n            [\n              20.0390625,\n              5.96575367\n            ],\n            [\n              20.0390625,\n              5.61598582\n            ],\n            [\n              19.6875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              5.96575367\n            ],\n            [\n              19.6875,\n              6.31529854\n            ],\n            [\n              20.0390625,\n              6.31529854\n            ],\n            [\n              20.0390625,\n              5.96575367\n            ],\n            [\n              19.6875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              6.31529854\n            ],\n            [\n              19.6875,\n              6.66460756\n            ],\n            [\n              20.0390625,\n              6.66460756\n            ],\n            [\n              20.0390625,\n              6.31529854\n            ],\n            [\n              19.6875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              6.66460756\n            ],\n            [\n              19.6875,\n              7.01366793\n            ],\n            [\n              20.0390625,\n              7.01366793\n            ],\n            [\n              20.0390625,\n              6.66460756\n            ],\n            [\n              19.6875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              7.01366793\n            ],\n            [\n              19.6875,\n              7.36246687\n            ],\n            [\n              20.0390625,\n              7.36246687\n            ],\n            [\n              20.0390625,\n              7.01366793\n            ],\n            [\n              19.6875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              7.36246687\n            ],\n            [\n              19.6875,\n              7.71099166\n            ],\n            [\n              20.0390625,\n              7.71099166\n            ],\n            [\n              20.0390625,\n              7.36246687\n            ],\n            [\n              19.6875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              7.71099166\n            ],\n            [\n              19.6875,\n              8.05922963\n            ],\n            [\n              20.0390625,\n              8.05922963\n            ],\n            [\n              20.0390625,\n              7.71099166\n            ],\n            [\n              19.6875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              8.05922963\n            ],\n            [\n              19.6875,\n              8.40716816\n            ],\n            [\n              20.0390625,\n              8.40716816\n            ],\n            [\n              20.0390625,\n              8.05922963\n            ],\n            [\n              19.6875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              8.40716816\n            ],\n            [\n              19.6875,\n              8.7547947\n            ],\n            [\n              20.0390625,\n              8.7547947\n            ],\n            [\n              20.0390625,\n              8.40716816\n            ],\n            [\n              19.6875,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              8.7547947\n            ],\n            [\n              19.6875,\n              9.10209674\n            ],\n            [\n              20.0390625,\n              9.10209674\n            ],\n            [\n              20.0390625,\n              8.7547947\n            ],\n            [\n              19.6875,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              9.10209674\n            ],\n            [\n              19.6875,\n              9.44906183\n            ],\n            [\n              20.0390625,\n              9.44906183\n            ],\n            [\n              20.0390625,\n              9.10209674\n            ],\n            [\n              19.6875,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              9.44906183\n            ],\n            [\n              19.6875,\n              9.79567758\n            ],\n            [\n              20.0390625,\n              9.79567758\n            ],\n            [\n              20.0390625,\n              9.44906183\n            ],\n            [\n              19.6875,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              9.79567758\n            ],\n            [\n              19.6875,\n              10.14193169\n            ],\n            [\n              20.0390625,\n              10.14193169\n            ],\n            [\n              20.0390625,\n              9.79567758\n            ],\n            [\n              19.6875,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -0.35156029\n            ],\n            [\n              20.0390625,\n              0\n            ],\n            [\n              20.390625,\n              0\n            ],\n            [\n              20.390625,\n              -0.35156029\n            ],\n            [\n              20.0390625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -0.70310735\n            ],\n            [\n              20.0390625,\n              -0.35156029\n            ],\n            [\n              20.390625,\n              -0.35156029\n            ],\n            [\n              20.390625,\n              -0.70310735\n            ],\n            [\n              20.0390625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -1.05462794\n            ],\n            [\n              20.0390625,\n              -0.70310735\n            ],\n            [\n              20.390625,\n              -0.70310735\n            ],\n            [\n              20.390625,\n              -1.05462794\n            ],\n            [\n              20.0390625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -1.40610884\n            ],\n            [\n              20.0390625,\n              -1.05462794\n            ],\n            [\n              20.390625,\n              -1.05462794\n            ],\n            [\n              20.390625,\n              -1.40610884\n            ],\n            [\n              20.0390625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -1.75753681\n            ],\n            [\n              20.0390625,\n              -1.40610884\n            ],\n            [\n              20.390625,\n              -1.40610884\n            ],\n            [\n              20.390625,\n              -1.75753681\n            ],\n            [\n              20.0390625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -2.10889866\n            ],\n            [\n              20.0390625,\n              -1.75753681\n            ],\n            [\n              20.390625,\n              -1.75753681\n            ],\n            [\n              20.390625,\n              -2.10889866\n            ],\n            [\n              20.0390625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -2.46018118\n            ],\n            [\n              20.0390625,\n              -2.10889866\n            ],\n            [\n              20.390625,\n              -2.10889866\n            ],\n            [\n              20.390625,\n              -2.46018118\n            ],\n            [\n              20.0390625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -2.81137119\n            ],\n            [\n              20.0390625,\n              -2.46018118\n            ],\n            [\n              20.390625,\n              -2.46018118\n            ],\n            [\n              20.390625,\n              -2.81137119\n            ],\n            [\n              20.0390625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -3.16245553\n            ],\n            [\n              20.0390625,\n              -2.81137119\n            ],\n            [\n              20.390625,\n              -2.81137119\n            ],\n            [\n              20.390625,\n              -3.16245553\n            ],\n            [\n              20.0390625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -3.51342105\n            ],\n            [\n              20.0390625,\n              -3.16245553\n            ],\n            [\n              20.390625,\n              -3.16245553\n            ],\n            [\n              20.390625,\n              -3.51342105\n            ],\n            [\n              20.0390625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -3.86425462\n            ],\n            [\n              20.0390625,\n              -3.51342105\n            ],\n            [\n              20.390625,\n              -3.51342105\n            ],\n            [\n              20.390625,\n              -3.86425462\n            ],\n            [\n              20.0390625,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              -4.21494314\n            ],\n            [\n              20.0390625,\n              -3.86425462\n            ],\n            [\n              20.390625,\n              -3.86425462\n            ],\n            [\n              20.390625,\n              -4.21494314\n            ],\n            [\n              20.0390625,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              0\n            ],\n            [\n              20.0390625,\n              0.35156029\n            ],\n            [\n              20.390625,\n              0.35156029\n            ],\n            [\n              20.390625,\n              0\n            ],\n            [\n              20.0390625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              0.35156029\n            ],\n            [\n              20.0390625,\n              0.70310735\n            ],\n            [\n              20.390625,\n              0.70310735\n            ],\n            [\n              20.390625,\n              0.35156029\n            ],\n            [\n              20.0390625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              0.70310735\n            ],\n            [\n              20.0390625,\n              1.05462794\n            ],\n            [\n              20.390625,\n              1.05462794\n            ],\n            [\n              20.390625,\n              0.70310735\n            ],\n            [\n              20.0390625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              1.05462794\n            ],\n            [\n              20.0390625,\n              1.40610884\n            ],\n            [\n              20.390625,\n              1.40610884\n            ],\n            [\n              20.390625,\n              1.05462794\n            ],\n            [\n              20.0390625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              1.40610884\n            ],\n            [\n              20.0390625,\n              1.75753681\n            ],\n            [\n              20.390625,\n              1.75753681\n            ],\n            [\n              20.390625,\n              1.40610884\n            ],\n            [\n              20.0390625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              1.75753681\n            ],\n            [\n              20.0390625,\n              2.10889866\n            ],\n            [\n              20.390625,\n              2.10889866\n            ],\n            [\n              20.390625,\n              1.75753681\n            ],\n            [\n              20.0390625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              10.14193169\n            ],\n            [\n              20.0390625,\n              10.48781188\n            ],\n            [\n              20.390625,\n              10.48781188\n            ],\n            [\n              20.390625,\n              10.14193169\n            ],\n            [\n              20.0390625,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              2.10889866\n            ],\n            [\n              20.0390625,\n              2.46018118\n            ],\n            [\n              20.390625,\n              2.46018118\n            ],\n            [\n              20.390625,\n              2.10889866\n            ],\n            [\n              20.0390625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              2.46018118\n            ],\n            [\n              20.0390625,\n              2.81137119\n            ],\n            [\n              20.390625,\n              2.81137119\n            ],\n            [\n              20.390625,\n              2.46018118\n            ],\n            [\n              20.0390625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              2.81137119\n            ],\n            [\n              20.0390625,\n              3.16245553\n            ],\n            [\n              20.390625,\n              3.16245553\n            ],\n            [\n              20.390625,\n              2.81137119\n            ],\n            [\n              20.0390625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              3.16245553\n            ],\n            [\n              20.0390625,\n              3.51342105\n            ],\n            [\n              20.390625,\n              3.51342105\n            ],\n            [\n              20.390625,\n              3.16245553\n            ],\n            [\n              20.0390625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              3.51342105\n            ],\n            [\n              20.0390625,\n              3.86425462\n            ],\n            [\n              20.390625,\n              3.86425462\n            ],\n            [\n              20.390625,\n              3.51342105\n            ],\n            [\n              20.0390625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              3.86425462\n            ],\n            [\n              20.0390625,\n              4.21494314\n            ],\n            [\n              20.390625,\n              4.21494314\n            ],\n            [\n              20.390625,\n              3.86425462\n            ],\n            [\n              20.0390625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              4.21494314\n            ],\n            [\n              20.0390625,\n              4.56547355\n            ],\n            [\n              20.390625,\n              4.56547355\n            ],\n            [\n              20.390625,\n              4.21494314\n            ],\n            [\n              20.0390625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              4.56547355\n            ],\n            [\n              20.0390625,\n              4.9158328\n            ],\n            [\n              20.390625,\n              4.9158328\n            ],\n            [\n              20.390625,\n              4.56547355\n            ],\n            [\n              20.0390625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              4.9158328\n            ],\n            [\n              20.0390625,\n              5.26600788\n            ],\n            [\n              20.390625,\n              5.26600788\n            ],\n            [\n              20.390625,\n              4.9158328\n            ],\n            [\n              20.0390625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              5.26600788\n            ],\n            [\n              20.0390625,\n              5.61598582\n            ],\n            [\n              20.390625,\n              5.61598582\n            ],\n            [\n              20.390625,\n              5.26600788\n            ],\n            [\n              20.0390625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              5.61598582\n            ],\n            [\n              20.0390625,\n              5.96575367\n            ],\n            [\n              20.390625,\n              5.96575367\n            ],\n            [\n              20.390625,\n              5.61598582\n            ],\n            [\n              20.0390625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              5.96575367\n            ],\n            [\n              20.0390625,\n              6.31529854\n            ],\n            [\n              20.390625,\n              6.31529854\n            ],\n            [\n              20.390625,\n              5.96575367\n            ],\n            [\n              20.0390625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              6.31529854\n            ],\n            [\n              20.0390625,\n              6.66460756\n            ],\n            [\n              20.390625,\n              6.66460756\n            ],\n            [\n              20.390625,\n              6.31529854\n            ],\n            [\n              20.0390625,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              6.66460756\n            ],\n            [\n              20.0390625,\n              7.01366793\n            ],\n            [\n              20.390625,\n              7.01366793\n            ],\n            [\n              20.390625,\n              6.66460756\n            ],\n            [\n              20.0390625,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              7.01366793\n            ],\n            [\n              20.0390625,\n              7.36246687\n            ],\n            [\n              20.390625,\n              7.36246687\n            ],\n            [\n              20.390625,\n              7.01366793\n            ],\n            [\n              20.0390625,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              7.36246687\n            ],\n            [\n              20.0390625,\n              7.71099166\n            ],\n            [\n              20.390625,\n              7.71099166\n            ],\n            [\n              20.390625,\n              7.36246687\n            ],\n            [\n              20.0390625,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              7.71099166\n            ],\n            [\n              20.0390625,\n              8.05922963\n            ],\n            [\n              20.390625,\n              8.05922963\n            ],\n            [\n              20.390625,\n              7.71099166\n            ],\n            [\n              20.0390625,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              8.05922963\n            ],\n            [\n              20.0390625,\n              8.40716816\n            ],\n            [\n              20.390625,\n              8.40716816\n            ],\n            [\n              20.390625,\n              8.05922963\n            ],\n            [\n              20.0390625,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              8.40716816\n            ],\n            [\n              20.0390625,\n              8.7547947\n            ],\n            [\n              20.390625,\n              8.7547947\n            ],\n            [\n              20.390625,\n              8.40716816\n            ],\n            [\n              20.0390625,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              8.7547947\n            ],\n            [\n              20.0390625,\n              9.10209674\n            ],\n            [\n              20.390625,\n              9.10209674\n            ],\n            [\n              20.390625,\n              8.7547947\n            ],\n            [\n              20.0390625,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              9.10209674\n            ],\n            [\n              20.0390625,\n              9.44906183\n            ],\n            [\n              20.390625,\n              9.44906183\n            ],\n            [\n              20.390625,\n              9.10209674\n            ],\n            [\n              20.0390625,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              9.44906183\n            ],\n            [\n              20.0390625,\n              9.79567758\n            ],\n            [\n              20.390625,\n              9.79567758\n            ],\n            [\n              20.390625,\n              9.44906183\n            ],\n            [\n              20.0390625,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              9.79567758\n            ],\n            [\n              20.0390625,\n              10.14193169\n            ],\n            [\n              20.390625,\n              10.14193169\n            ],\n            [\n              20.390625,\n              9.79567758\n            ],\n            [\n              20.0390625,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -0.35156029\n            ],\n            [\n              20.390625,\n              0\n            ],\n            [\n              20.7421875,\n              0\n            ],\n            [\n              20.7421875,\n              -0.35156029\n            ],\n            [\n              20.390625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -0.70310735\n            ],\n            [\n              20.390625,\n              -0.35156029\n            ],\n            [\n              20.7421875,\n              -0.35156029\n            ],\n            [\n              20.7421875,\n              -0.70310735\n            ],\n            [\n              20.390625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -1.05462794\n            ],\n            [\n              20.390625,\n              -0.70310735\n            ],\n            [\n              20.7421875,\n              -0.70310735\n            ],\n            [\n              20.7421875,\n              -1.05462794\n            ],\n            [\n              20.390625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -1.40610884\n            ],\n            [\n              20.390625,\n              -1.05462794\n            ],\n            [\n              20.7421875,\n              -1.05462794\n            ],\n            [\n              20.7421875,\n              -1.40610884\n            ],\n            [\n              20.390625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -1.75753681\n            ],\n            [\n              20.390625,\n              -1.40610884\n            ],\n            [\n              20.7421875,\n              -1.40610884\n            ],\n            [\n              20.7421875,\n              -1.75753681\n            ],\n            [\n              20.390625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -2.10889866\n            ],\n            [\n              20.390625,\n              -1.75753681\n            ],\n            [\n              20.7421875,\n              -1.75753681\n            ],\n            [\n              20.7421875,\n              -2.10889866\n            ],\n            [\n              20.390625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -2.46018118\n            ],\n            [\n              20.390625,\n              -2.10889866\n            ],\n            [\n              20.7421875,\n              -2.10889866\n            ],\n            [\n              20.7421875,\n              -2.46018118\n            ],\n            [\n              20.390625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -2.81137119\n            ],\n            [\n              20.390625,\n              -2.46018118\n            ],\n            [\n              20.7421875,\n              -2.46018118\n            ],\n            [\n              20.7421875,\n              -2.81137119\n            ],\n            [\n              20.390625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -3.16245553\n            ],\n            [\n              20.390625,\n              -2.81137119\n            ],\n            [\n              20.7421875,\n              -2.81137119\n            ],\n            [\n              20.7421875,\n              -3.16245553\n            ],\n            [\n              20.390625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -3.51342105\n            ],\n            [\n              20.390625,\n              -3.16245553\n            ],\n            [\n              20.7421875,\n              -3.16245553\n            ],\n            [\n              20.7421875,\n              -3.51342105\n            ],\n            [\n              20.390625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -3.86425462\n            ],\n            [\n              20.390625,\n              -3.51342105\n            ],\n            [\n              20.7421875,\n              -3.51342105\n            ],\n            [\n              20.7421875,\n              -3.86425462\n            ],\n            [\n              20.390625,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -4.21494314\n            ],\n            [\n              20.390625,\n              -3.86425462\n            ],\n            [\n              20.7421875,\n              -3.86425462\n            ],\n            [\n              20.7421875,\n              -4.21494314\n            ],\n            [\n              20.390625,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -4.56547355\n            ],\n            [\n              20.390625,\n              -4.21494314\n            ],\n            [\n              20.7421875,\n              -4.21494314\n            ],\n            [\n              20.7421875,\n              -4.56547355\n            ],\n            [\n              20.390625,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              -4.9158328\n            ],\n            [\n              20.390625,\n              -4.56547355\n            ],\n            [\n              20.7421875,\n              -4.56547355\n            ],\n            [\n              20.7421875,\n              -4.9158328\n            ],\n            [\n              20.390625,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              0\n            ],\n            [\n              20.390625,\n              0.35156029\n            ],\n            [\n              20.7421875,\n              0.35156029\n            ],\n            [\n              20.7421875,\n              0\n            ],\n            [\n              20.390625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              0.35156029\n            ],\n            [\n              20.390625,\n              0.70310735\n            ],\n            [\n              20.7421875,\n              0.70310735\n            ],\n            [\n              20.7421875,\n              0.35156029\n            ],\n            [\n              20.390625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              0.70310735\n            ],\n            [\n              20.390625,\n              1.05462794\n            ],\n            [\n              20.7421875,\n              1.05462794\n            ],\n            [\n              20.7421875,\n              0.70310735\n            ],\n            [\n              20.390625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              1.05462794\n            ],\n            [\n              20.390625,\n              1.40610884\n            ],\n            [\n              20.7421875,\n              1.40610884\n            ],\n            [\n              20.7421875,\n              1.05462794\n            ],\n            [\n              20.390625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              1.40610884\n            ],\n            [\n              20.390625,\n              1.75753681\n            ],\n            [\n              20.7421875,\n              1.75753681\n            ],\n            [\n              20.7421875,\n              1.40610884\n            ],\n            [\n              20.390625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              1.75753681\n            ],\n            [\n              20.390625,\n              2.10889866\n            ],\n            [\n              20.7421875,\n              2.10889866\n            ],\n            [\n              20.7421875,\n              1.75753681\n            ],\n            [\n              20.390625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              2.10889866\n            ],\n            [\n              20.390625,\n              2.46018118\n            ],\n            [\n              20.7421875,\n              2.46018118\n            ],\n            [\n              20.7421875,\n              2.10889866\n            ],\n            [\n              20.390625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              2.46018118\n            ],\n            [\n              20.390625,\n              2.81137119\n            ],\n            [\n              20.7421875,\n              2.81137119\n            ],\n            [\n              20.7421875,\n              2.46018118\n            ],\n            [\n              20.390625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              2.81137119\n            ],\n            [\n              20.390625,\n              3.16245553\n            ],\n            [\n              20.7421875,\n              3.16245553\n            ],\n            [\n              20.7421875,\n              2.81137119\n            ],\n            [\n              20.390625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              3.16245553\n            ],\n            [\n              20.390625,\n              3.51342105\n            ],\n            [\n              20.7421875,\n              3.51342105\n            ],\n            [\n              20.7421875,\n              3.16245553\n            ],\n            [\n              20.390625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              3.51342105\n            ],\n            [\n              20.390625,\n              3.86425462\n            ],\n            [\n              20.7421875,\n              3.86425462\n            ],\n            [\n              20.7421875,\n              3.51342105\n            ],\n            [\n              20.390625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              3.86425462\n            ],\n            [\n              20.390625,\n              4.21494314\n            ],\n            [\n              20.7421875,\n              4.21494314\n            ],\n            [\n              20.7421875,\n              3.86425462\n            ],\n            [\n              20.390625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              4.21494314\n            ],\n            [\n              20.390625,\n              4.56547355\n            ],\n            [\n              20.7421875,\n              4.56547355\n            ],\n            [\n              20.7421875,\n              4.21494314\n            ],\n            [\n              20.390625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              4.56547355\n            ],\n            [\n              20.390625,\n              4.9158328\n            ],\n            [\n              20.7421875,\n              4.9158328\n            ],\n            [\n              20.7421875,\n              4.56547355\n            ],\n            [\n              20.390625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              4.9158328\n            ],\n            [\n              20.390625,\n              5.26600788\n            ],\n            [\n              20.7421875,\n              5.26600788\n            ],\n            [\n              20.7421875,\n              4.9158328\n            ],\n            [\n              20.390625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              5.26600788\n            ],\n            [\n              20.390625,\n              5.61598582\n            ],\n            [\n              20.7421875,\n              5.61598582\n            ],\n            [\n              20.7421875,\n              5.26600788\n            ],\n            [\n              20.390625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              5.61598582\n            ],\n            [\n              20.390625,\n              5.96575367\n            ],\n            [\n              20.7421875,\n              5.96575367\n            ],\n            [\n              20.7421875,\n              5.61598582\n            ],\n            [\n              20.390625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              5.96575367\n            ],\n            [\n              20.390625,\n              6.31529854\n            ],\n            [\n              20.7421875,\n              6.31529854\n            ],\n            [\n              20.7421875,\n              5.96575367\n            ],\n            [\n              20.390625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              6.31529854\n            ],\n            [\n              20.390625,\n              6.66460756\n            ],\n            [\n              20.7421875,\n              6.66460756\n            ],\n            [\n              20.7421875,\n              6.31529854\n            ],\n            [\n              20.390625,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              6.66460756\n            ],\n            [\n              20.390625,\n              7.01366793\n            ],\n            [\n              20.7421875,\n              7.01366793\n            ],\n            [\n              20.7421875,\n              6.66460756\n            ],\n            [\n              20.390625,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              7.01366793\n            ],\n            [\n              20.390625,\n              7.36246687\n            ],\n            [\n              20.7421875,\n              7.36246687\n            ],\n            [\n              20.7421875,\n              7.01366793\n            ],\n            [\n              20.390625,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              7.36246687\n            ],\n            [\n              20.390625,\n              7.71099166\n            ],\n            [\n              20.7421875,\n              7.71099166\n            ],\n            [\n              20.7421875,\n              7.36246687\n            ],\n            [\n              20.390625,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              7.71099166\n            ],\n            [\n              20.390625,\n              8.05922963\n            ],\n            [\n              20.7421875,\n              8.05922963\n            ],\n            [\n              20.7421875,\n              7.71099166\n            ],\n            [\n              20.390625,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              8.05922963\n            ],\n            [\n              20.390625,\n              8.40716816\n            ],\n            [\n              20.7421875,\n              8.40716816\n            ],\n            [\n              20.7421875,\n              8.05922963\n            ],\n            [\n              20.390625,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              8.40716816\n            ],\n            [\n              20.390625,\n              8.7547947\n            ],\n            [\n              20.7421875,\n              8.7547947\n            ],\n            [\n              20.7421875,\n              8.40716816\n            ],\n            [\n              20.390625,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              8.7547947\n            ],\n            [\n              20.390625,\n              9.10209674\n            ],\n            [\n              20.7421875,\n              9.10209674\n            ],\n            [\n              20.7421875,\n              8.7547947\n            ],\n            [\n              20.390625,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              9.10209674\n            ],\n            [\n              20.390625,\n              9.44906183\n            ],\n            [\n              20.7421875,\n              9.44906183\n            ],\n            [\n              20.7421875,\n              9.10209674\n            ],\n            [\n              20.390625,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              9.44906183\n            ],\n            [\n              20.390625,\n              9.79567758\n            ],\n            [\n              20.7421875,\n              9.79567758\n            ],\n            [\n              20.7421875,\n              9.44906183\n            ],\n            [\n              20.390625,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -0.35156029\n            ],\n            [\n              20.7421875,\n              0\n            ],\n            [\n              21.09375,\n              0\n            ],\n            [\n              21.09375,\n              -0.35156029\n            ],\n            [\n              20.7421875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -0.70310735\n            ],\n            [\n              20.7421875,\n              -0.35156029\n            ],\n            [\n              21.09375,\n              -0.35156029\n            ],\n            [\n              21.09375,\n              -0.70310735\n            ],\n            [\n              20.7421875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -1.05462794\n            ],\n            [\n              20.7421875,\n              -0.70310735\n            ],\n            [\n              21.09375,\n              -0.70310735\n            ],\n            [\n              21.09375,\n              -1.05462794\n            ],\n            [\n              20.7421875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -1.40610884\n            ],\n            [\n              20.7421875,\n              -1.05462794\n            ],\n            [\n              21.09375,\n              -1.05462794\n            ],\n            [\n              21.09375,\n              -1.40610884\n            ],\n            [\n              20.7421875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -1.75753681\n            ],\n            [\n              20.7421875,\n              -1.40610884\n            ],\n            [\n              21.09375,\n              -1.40610884\n            ],\n            [\n              21.09375,\n              -1.75753681\n            ],\n            [\n              20.7421875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -2.10889866\n            ],\n            [\n              20.7421875,\n              -1.75753681\n            ],\n            [\n              21.09375,\n              -1.75753681\n            ],\n            [\n              21.09375,\n              -2.10889866\n            ],\n            [\n              20.7421875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -2.46018118\n            ],\n            [\n              20.7421875,\n              -2.10889866\n            ],\n            [\n              21.09375,\n              -2.10889866\n            ],\n            [\n              21.09375,\n              -2.46018118\n            ],\n            [\n              20.7421875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -2.81137119\n            ],\n            [\n              20.7421875,\n              -2.46018118\n            ],\n            [\n              21.09375,\n              -2.46018118\n            ],\n            [\n              21.09375,\n              -2.81137119\n            ],\n            [\n              20.7421875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -3.16245553\n            ],\n            [\n              20.7421875,\n              -2.81137119\n            ],\n            [\n              21.09375,\n              -2.81137119\n            ],\n            [\n              21.09375,\n              -3.16245553\n            ],\n            [\n              20.7421875,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -3.51342105\n            ],\n            [\n              20.7421875,\n              -3.16245553\n            ],\n            [\n              21.09375,\n              -3.16245553\n            ],\n            [\n              21.09375,\n              -3.51342105\n            ],\n            [\n              20.7421875,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -3.86425462\n            ],\n            [\n              20.7421875,\n              -3.51342105\n            ],\n            [\n              21.09375,\n              -3.51342105\n            ],\n            [\n              21.09375,\n              -3.86425462\n            ],\n            [\n              20.7421875,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -4.21494314\n            ],\n            [\n              20.7421875,\n              -3.86425462\n            ],\n            [\n              21.09375,\n              -3.86425462\n            ],\n            [\n              21.09375,\n              -4.21494314\n            ],\n            [\n              20.7421875,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              -4.56547355\n            ],\n            [\n              20.7421875,\n              -4.21494314\n            ],\n            [\n              21.09375,\n              -4.21494314\n            ],\n            [\n              21.09375,\n              -4.56547355\n            ],\n            [\n              20.7421875,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              0\n            ],\n            [\n              20.7421875,\n              0.35156029\n            ],\n            [\n              21.09375,\n              0.35156029\n            ],\n            [\n              21.09375,\n              0\n            ],\n            [\n              20.7421875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              0.35156029\n            ],\n            [\n              20.7421875,\n              0.70310735\n            ],\n            [\n              21.09375,\n              0.70310735\n            ],\n            [\n              21.09375,\n              0.35156029\n            ],\n            [\n              20.7421875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              0.70310735\n            ],\n            [\n              20.7421875,\n              1.05462794\n            ],\n            [\n              21.09375,\n              1.05462794\n            ],\n            [\n              21.09375,\n              0.70310735\n            ],\n            [\n              20.7421875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              1.05462794\n            ],\n            [\n              20.7421875,\n              1.40610884\n            ],\n            [\n              21.09375,\n              1.40610884\n            ],\n            [\n              21.09375,\n              1.05462794\n            ],\n            [\n              20.7421875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              1.40610884\n            ],\n            [\n              20.7421875,\n              1.75753681\n            ],\n            [\n              21.09375,\n              1.75753681\n            ],\n            [\n              21.09375,\n              1.40610884\n            ],\n            [\n              20.7421875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              1.75753681\n            ],\n            [\n              20.7421875,\n              2.10889866\n            ],\n            [\n              21.09375,\n              2.10889866\n            ],\n            [\n              21.09375,\n              1.75753681\n            ],\n            [\n              20.7421875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              2.10889866\n            ],\n            [\n              20.7421875,\n              2.46018118\n            ],\n            [\n              21.09375,\n              2.46018118\n            ],\n            [\n              21.09375,\n              2.10889866\n            ],\n            [\n              20.7421875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              2.46018118\n            ],\n            [\n              20.7421875,\n              2.81137119\n            ],\n            [\n              21.09375,\n              2.81137119\n            ],\n            [\n              21.09375,\n              2.46018118\n            ],\n            [\n              20.7421875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              2.81137119\n            ],\n            [\n              20.7421875,\n              3.16245553\n            ],\n            [\n              21.09375,\n              3.16245553\n            ],\n            [\n              21.09375,\n              2.81137119\n            ],\n            [\n              20.7421875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              3.16245553\n            ],\n            [\n              20.7421875,\n              3.51342105\n            ],\n            [\n              21.09375,\n              3.51342105\n            ],\n            [\n              21.09375,\n              3.16245553\n            ],\n            [\n              20.7421875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              3.51342105\n            ],\n            [\n              20.7421875,\n              3.86425462\n            ],\n            [\n              21.09375,\n              3.86425462\n            ],\n            [\n              21.09375,\n              3.51342105\n            ],\n            [\n              20.7421875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              3.86425462\n            ],\n            [\n              20.7421875,\n              4.21494314\n            ],\n            [\n              21.09375,\n              4.21494314\n            ],\n            [\n              21.09375,\n              3.86425462\n            ],\n            [\n              20.7421875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              4.21494314\n            ],\n            [\n              20.7421875,\n              4.56547355\n            ],\n            [\n              21.09375,\n              4.56547355\n            ],\n            [\n              21.09375,\n              4.21494314\n            ],\n            [\n              20.7421875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              4.56547355\n            ],\n            [\n              20.7421875,\n              4.9158328\n            ],\n            [\n              21.09375,\n              4.9158328\n            ],\n            [\n              21.09375,\n              4.56547355\n            ],\n            [\n              20.7421875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              4.9158328\n            ],\n            [\n              20.7421875,\n              5.26600788\n            ],\n            [\n              21.09375,\n              5.26600788\n            ],\n            [\n              21.09375,\n              4.9158328\n            ],\n            [\n              20.7421875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              5.26600788\n            ],\n            [\n              20.7421875,\n              5.61598582\n            ],\n            [\n              21.09375,\n              5.61598582\n            ],\n            [\n              21.09375,\n              5.26600788\n            ],\n            [\n              20.7421875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              5.61598582\n            ],\n            [\n              20.7421875,\n              5.96575367\n            ],\n            [\n              21.09375,\n              5.96575367\n            ],\n            [\n              21.09375,\n              5.61598582\n            ],\n            [\n              20.7421875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              5.96575367\n            ],\n            [\n              20.7421875,\n              6.31529854\n            ],\n            [\n              21.09375,\n              6.31529854\n            ],\n            [\n              21.09375,\n              5.96575367\n            ],\n            [\n              20.7421875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              6.31529854\n            ],\n            [\n              20.7421875,\n              6.66460756\n            ],\n            [\n              21.09375,\n              6.66460756\n            ],\n            [\n              21.09375,\n              6.31529854\n            ],\n            [\n              20.7421875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              6.66460756\n            ],\n            [\n              20.7421875,\n              7.01366793\n            ],\n            [\n              21.09375,\n              7.01366793\n            ],\n            [\n              21.09375,\n              6.66460756\n            ],\n            [\n              20.7421875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              7.01366793\n            ],\n            [\n              20.7421875,\n              7.36246687\n            ],\n            [\n              21.09375,\n              7.36246687\n            ],\n            [\n              21.09375,\n              7.01366793\n            ],\n            [\n              20.7421875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              7.36246687\n            ],\n            [\n              20.7421875,\n              7.71099166\n            ],\n            [\n              21.09375,\n              7.71099166\n            ],\n            [\n              21.09375,\n              7.36246687\n            ],\n            [\n              20.7421875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              7.71099166\n            ],\n            [\n              20.7421875,\n              8.05922963\n            ],\n            [\n              21.09375,\n              8.05922963\n            ],\n            [\n              21.09375,\n              7.71099166\n            ],\n            [\n              20.7421875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              8.05922963\n            ],\n            [\n              20.7421875,\n              8.40716816\n            ],\n            [\n              21.09375,\n              8.40716816\n            ],\n            [\n              21.09375,\n              8.05922963\n            ],\n            [\n              20.7421875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              8.40716816\n            ],\n            [\n              20.7421875,\n              8.7547947\n            ],\n            [\n              21.09375,\n              8.7547947\n            ],\n            [\n              21.09375,\n              8.40716816\n            ],\n            [\n              20.7421875,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              8.7547947\n            ],\n            [\n              20.7421875,\n              9.10209674\n            ],\n            [\n              21.09375,\n              9.10209674\n            ],\n            [\n              21.09375,\n              8.7547947\n            ],\n            [\n              20.7421875,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -0.35156029\n            ],\n            [\n              21.09375,\n              0\n            ],\n            [\n              21.4453125,\n              0\n            ],\n            [\n              21.4453125,\n              -0.35156029\n            ],\n            [\n              21.09375,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -0.70310735\n            ],\n            [\n              21.09375,\n              -0.35156029\n            ],\n            [\n              21.4453125,\n              -0.35156029\n            ],\n            [\n              21.4453125,\n              -0.70310735\n            ],\n            [\n              21.09375,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -1.05462794\n            ],\n            [\n              21.09375,\n              -0.70310735\n            ],\n            [\n              21.4453125,\n              -0.70310735\n            ],\n            [\n              21.4453125,\n              -1.05462794\n            ],\n            [\n              21.09375,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -1.40610884\n            ],\n            [\n              21.09375,\n              -1.05462794\n            ],\n            [\n              21.4453125,\n              -1.05462794\n            ],\n            [\n              21.4453125,\n              -1.40610884\n            ],\n            [\n              21.09375,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -1.75753681\n            ],\n            [\n              21.09375,\n              -1.40610884\n            ],\n            [\n              21.4453125,\n              -1.40610884\n            ],\n            [\n              21.4453125,\n              -1.75753681\n            ],\n            [\n              21.09375,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -2.10889866\n            ],\n            [\n              21.09375,\n              -1.75753681\n            ],\n            [\n              21.4453125,\n              -1.75753681\n            ],\n            [\n              21.4453125,\n              -2.10889866\n            ],\n            [\n              21.09375,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -2.46018118\n            ],\n            [\n              21.09375,\n              -2.10889866\n            ],\n            [\n              21.4453125,\n              -2.10889866\n            ],\n            [\n              21.4453125,\n              -2.46018118\n            ],\n            [\n              21.09375,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -2.81137119\n            ],\n            [\n              21.09375,\n              -2.46018118\n            ],\n            [\n              21.4453125,\n              -2.46018118\n            ],\n            [\n              21.4453125,\n              -2.81137119\n            ],\n            [\n              21.09375,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -3.16245553\n            ],\n            [\n              21.09375,\n              -2.81137119\n            ],\n            [\n              21.4453125,\n              -2.81137119\n            ],\n            [\n              21.4453125,\n              -3.16245553\n            ],\n            [\n              21.09375,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -3.51342105\n            ],\n            [\n              21.09375,\n              -3.16245553\n            ],\n            [\n              21.4453125,\n              -3.16245553\n            ],\n            [\n              21.4453125,\n              -3.51342105\n            ],\n            [\n              21.09375,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              -3.86425462\n            ],\n            [\n              21.09375,\n              -3.51342105\n            ],\n            [\n              21.4453125,\n              -3.51342105\n            ],\n            [\n              21.4453125,\n              -3.86425462\n            ],\n            [\n              21.09375,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              0\n            ],\n            [\n              21.09375,\n              0.35156029\n            ],\n            [\n              21.4453125,\n              0.35156029\n            ],\n            [\n              21.4453125,\n              0\n            ],\n            [\n              21.09375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              0.35156029\n            ],\n            [\n              21.09375,\n              0.70310735\n            ],\n            [\n              21.4453125,\n              0.70310735\n            ],\n            [\n              21.4453125,\n              0.35156029\n            ],\n            [\n              21.09375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              0.70310735\n            ],\n            [\n              21.09375,\n              1.05462794\n            ],\n            [\n              21.4453125,\n              1.05462794\n            ],\n            [\n              21.4453125,\n              0.70310735\n            ],\n            [\n              21.09375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              1.05462794\n            ],\n            [\n              21.09375,\n              1.40610884\n            ],\n            [\n              21.4453125,\n              1.40610884\n            ],\n            [\n              21.4453125,\n              1.05462794\n            ],\n            [\n              21.09375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              1.40610884\n            ],\n            [\n              21.09375,\n              1.75753681\n            ],\n            [\n              21.4453125,\n              1.75753681\n            ],\n            [\n              21.4453125,\n              1.40610884\n            ],\n            [\n              21.09375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              1.75753681\n            ],\n            [\n              21.09375,\n              2.10889866\n            ],\n            [\n              21.4453125,\n              2.10889866\n            ],\n            [\n              21.4453125,\n              1.75753681\n            ],\n            [\n              21.09375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              10.14193169\n            ],\n            [\n              21.09375,\n              10.48781188\n            ],\n            [\n              21.4453125,\n              10.48781188\n            ],\n            [\n              21.4453125,\n              10.14193169\n            ],\n            [\n              21.09375,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              10.48781188\n            ],\n            [\n              21.09375,\n              10.83330598\n            ],\n            [\n              21.4453125,\n              10.83330598\n            ],\n            [\n              21.4453125,\n              10.48781188\n            ],\n            [\n              21.09375,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              10.83330598\n            ],\n            [\n              21.09375,\n              11.17840187\n            ],\n            [\n              21.4453125,\n              11.17840187\n            ],\n            [\n              21.4453125,\n              10.83330598\n            ],\n            [\n              21.09375,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              11.17840187\n            ],\n            [\n              21.09375,\n              11.52308751\n            ],\n            [\n              21.4453125,\n              11.52308751\n            ],\n            [\n              21.4453125,\n              11.17840187\n            ],\n            [\n              21.09375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              2.10889866\n            ],\n            [\n              21.09375,\n              2.46018118\n            ],\n            [\n              21.4453125,\n              2.46018118\n            ],\n            [\n              21.4453125,\n              2.10889866\n            ],\n            [\n              21.09375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              2.46018118\n            ],\n            [\n              21.09375,\n              2.81137119\n            ],\n            [\n              21.4453125,\n              2.81137119\n            ],\n            [\n              21.4453125,\n              2.46018118\n            ],\n            [\n              21.09375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              2.81137119\n            ],\n            [\n              21.09375,\n              3.16245553\n            ],\n            [\n              21.4453125,\n              3.16245553\n            ],\n            [\n              21.4453125,\n              2.81137119\n            ],\n            [\n              21.09375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              3.16245553\n            ],\n            [\n              21.09375,\n              3.51342105\n            ],\n            [\n              21.4453125,\n              3.51342105\n            ],\n            [\n              21.4453125,\n              3.16245553\n            ],\n            [\n              21.09375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              3.51342105\n            ],\n            [\n              21.09375,\n              3.86425462\n            ],\n            [\n              21.4453125,\n              3.86425462\n            ],\n            [\n              21.4453125,\n              3.51342105\n            ],\n            [\n              21.09375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              3.86425462\n            ],\n            [\n              21.09375,\n              4.21494314\n            ],\n            [\n              21.4453125,\n              4.21494314\n            ],\n            [\n              21.4453125,\n              3.86425462\n            ],\n            [\n              21.09375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              4.21494314\n            ],\n            [\n              21.09375,\n              4.56547355\n            ],\n            [\n              21.4453125,\n              4.56547355\n            ],\n            [\n              21.4453125,\n              4.21494314\n            ],\n            [\n              21.09375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              4.56547355\n            ],\n            [\n              21.09375,\n              4.9158328\n            ],\n            [\n              21.4453125,\n              4.9158328\n            ],\n            [\n              21.4453125,\n              4.56547355\n            ],\n            [\n              21.09375,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              4.9158328\n            ],\n            [\n              21.09375,\n              5.26600788\n            ],\n            [\n              21.4453125,\n              5.26600788\n            ],\n            [\n              21.4453125,\n              4.9158328\n            ],\n            [\n              21.09375,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              5.26600788\n            ],\n            [\n              21.09375,\n              5.61598582\n            ],\n            [\n              21.4453125,\n              5.61598582\n            ],\n            [\n              21.4453125,\n              5.26600788\n            ],\n            [\n              21.09375,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              5.61598582\n            ],\n            [\n              21.09375,\n              5.96575367\n            ],\n            [\n              21.4453125,\n              5.96575367\n            ],\n            [\n              21.4453125,\n              5.61598582\n            ],\n            [\n              21.09375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              5.96575367\n            ],\n            [\n              21.09375,\n              6.31529854\n            ],\n            [\n              21.4453125,\n              6.31529854\n            ],\n            [\n              21.4453125,\n              5.96575367\n            ],\n            [\n              21.09375,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              6.31529854\n            ],\n            [\n              21.09375,\n              6.66460756\n            ],\n            [\n              21.4453125,\n              6.66460756\n            ],\n            [\n              21.4453125,\n              6.31529854\n            ],\n            [\n              21.09375,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              6.66460756\n            ],\n            [\n              21.09375,\n              7.01366793\n            ],\n            [\n              21.4453125,\n              7.01366793\n            ],\n            [\n              21.4453125,\n              6.66460756\n            ],\n            [\n              21.09375,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              7.01366793\n            ],\n            [\n              21.09375,\n              7.36246687\n            ],\n            [\n              21.4453125,\n              7.36246687\n            ],\n            [\n              21.4453125,\n              7.01366793\n            ],\n            [\n              21.09375,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              7.36246687\n            ],\n            [\n              21.09375,\n              7.71099166\n            ],\n            [\n              21.4453125,\n              7.71099166\n            ],\n            [\n              21.4453125,\n              7.36246687\n            ],\n            [\n              21.09375,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              7.71099166\n            ],\n            [\n              21.09375,\n              8.05922963\n            ],\n            [\n              21.4453125,\n              8.05922963\n            ],\n            [\n              21.4453125,\n              7.71099166\n            ],\n            [\n              21.09375,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              8.05922963\n            ],\n            [\n              21.09375,\n              8.40716816\n            ],\n            [\n              21.4453125,\n              8.40716816\n            ],\n            [\n              21.4453125,\n              8.05922963\n            ],\n            [\n              21.09375,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              8.40716816\n            ],\n            [\n              21.09375,\n              8.7547947\n            ],\n            [\n              21.4453125,\n              8.7547947\n            ],\n            [\n              21.4453125,\n              8.40716816\n            ],\n            [\n              21.09375,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              8.7547947\n            ],\n            [\n              21.09375,\n              9.10209674\n            ],\n            [\n              21.4453125,\n              9.10209674\n            ],\n            [\n              21.4453125,\n              8.7547947\n            ],\n            [\n              21.09375,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              9.10209674\n            ],\n            [\n              21.09375,\n              9.44906183\n            ],\n            [\n              21.4453125,\n              9.44906183\n            ],\n            [\n              21.4453125,\n              9.10209674\n            ],\n            [\n              21.09375,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              9.44906183\n            ],\n            [\n              21.09375,\n              9.79567758\n            ],\n            [\n              21.4453125,\n              9.79567758\n            ],\n            [\n              21.4453125,\n              9.44906183\n            ],\n            [\n              21.09375,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              9.79567758\n            ],\n            [\n              21.09375,\n              10.14193169\n            ],\n            [\n              21.4453125,\n              10.14193169\n            ],\n            [\n              21.4453125,\n              9.79567758\n            ],\n            [\n              21.09375,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              -0.35156029\n            ],\n            [\n              21.4453125,\n              0\n            ],\n            [\n              21.796875,\n              0\n            ],\n            [\n              21.796875,\n              -0.35156029\n            ],\n            [\n              21.4453125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              -0.70310735\n            ],\n            [\n              21.4453125,\n              -0.35156029\n            ],\n            [\n              21.796875,\n              -0.35156029\n            ],\n            [\n              21.796875,\n              -0.70310735\n            ],\n            [\n              21.4453125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              -1.05462794\n            ],\n            [\n              21.4453125,\n              -0.70310735\n            ],\n            [\n              21.796875,\n              -0.70310735\n            ],\n            [\n              21.796875,\n              -1.05462794\n            ],\n            [\n              21.4453125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              -1.40610884\n            ],\n            [\n              21.4453125,\n              -1.05462794\n            ],\n            [\n              21.796875,\n              -1.05462794\n            ],\n            [\n              21.796875,\n              -1.40610884\n            ],\n            [\n              21.4453125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              -1.75753681\n            ],\n            [\n              21.4453125,\n              -1.40610884\n            ],\n            [\n              21.796875,\n              -1.40610884\n            ],\n            [\n              21.796875,\n              -1.75753681\n            ],\n            [\n              21.4453125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              -2.10889866\n            ],\n            [\n              21.4453125,\n              -1.75753681\n            ],\n            [\n              21.796875,\n              -1.75753681\n            ],\n            [\n              21.796875,\n              -2.10889866\n            ],\n            [\n              21.4453125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              -2.46018118\n            ],\n            [\n              21.4453125,\n              -2.10889866\n            ],\n            [\n              21.796875,\n              -2.10889866\n            ],\n            [\n              21.796875,\n              -2.46018118\n            ],\n            [\n              21.4453125,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              -2.81137119\n            ],\n            [\n              21.4453125,\n              -2.46018118\n            ],\n            [\n              21.796875,\n              -2.46018118\n            ],\n            [\n              21.796875,\n              -2.81137119\n            ],\n            [\n              21.4453125,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              0\n            ],\n            [\n              21.4453125,\n              0.35156029\n            ],\n            [\n              21.796875,\n              0.35156029\n            ],\n            [\n              21.796875,\n              0\n            ],\n            [\n              21.4453125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              0.35156029\n            ],\n            [\n              21.4453125,\n              0.70310735\n            ],\n            [\n              21.796875,\n              0.70310735\n            ],\n            [\n              21.796875,\n              0.35156029\n            ],\n            [\n              21.4453125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              0.70310735\n            ],\n            [\n              21.4453125,\n              1.05462794\n            ],\n            [\n              21.796875,\n              1.05462794\n            ],\n            [\n              21.796875,\n              0.70310735\n            ],\n            [\n              21.4453125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              1.05462794\n            ],\n            [\n              21.4453125,\n              1.40610884\n            ],\n            [\n              21.796875,\n              1.40610884\n            ],\n            [\n              21.796875,\n              1.05462794\n            ],\n            [\n              21.4453125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              1.40610884\n            ],\n            [\n              21.4453125,\n              1.75753681\n            ],\n            [\n              21.796875,\n              1.75753681\n            ],\n            [\n              21.796875,\n              1.40610884\n            ],\n            [\n              21.4453125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              1.75753681\n            ],\n            [\n              21.4453125,\n              2.10889866\n            ],\n            [\n              21.796875,\n              2.10889866\n            ],\n            [\n              21.796875,\n              1.75753681\n            ],\n            [\n              21.4453125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              10.14193169\n            ],\n            [\n              21.4453125,\n              10.48781188\n            ],\n            [\n              21.796875,\n              10.48781188\n            ],\n            [\n              21.796875,\n              10.14193169\n            ],\n            [\n              21.4453125,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              10.48781188\n            ],\n            [\n              21.4453125,\n              10.83330598\n            ],\n            [\n              21.796875,\n              10.83330598\n            ],\n            [\n              21.796875,\n              10.48781188\n            ],\n            [\n              21.4453125,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              10.83330598\n            ],\n            [\n              21.4453125,\n              11.17840187\n            ],\n            [\n              21.796875,\n              11.17840187\n            ],\n            [\n              21.796875,\n              10.83330598\n            ],\n            [\n              21.4453125,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              11.17840187\n            ],\n            [\n              21.4453125,\n              11.52308751\n            ],\n            [\n              21.796875,\n              11.52308751\n            ],\n            [\n              21.796875,\n              11.17840187\n            ],\n            [\n              21.4453125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              11.52308751\n            ],\n            [\n              21.4453125,\n              11.86735091\n            ],\n            [\n              21.796875,\n              11.86735091\n            ],\n            [\n              21.796875,\n              11.52308751\n            ],\n            [\n              21.4453125,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              11.86735091\n            ],\n            [\n              21.4453125,\n              12.21118019\n            ],\n            [\n              21.796875,\n              12.21118019\n            ],\n            [\n              21.796875,\n              11.86735091\n            ],\n            [\n              21.4453125,\n              11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              12.21118019\n            ],\n            [\n              21.4453125,\n              12.55456353\n            ],\n            [\n              21.796875,\n              12.55456353\n            ],\n            [\n              21.796875,\n              12.21118019\n            ],\n            [\n              21.4453125,\n              12.21118019\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              12.55456353\n            ],\n            [\n              21.4453125,\n              12.89748918\n            ],\n            [\n              21.796875,\n              12.89748918\n            ],\n            [\n              21.796875,\n              12.55456353\n            ],\n            [\n              21.4453125,\n              12.55456353\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              2.10889866\n            ],\n            [\n              21.4453125,\n              2.46018118\n            ],\n            [\n              21.796875,\n              2.46018118\n            ],\n            [\n              21.796875,\n              2.10889866\n            ],\n            [\n              21.4453125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              2.46018118\n            ],\n            [\n              21.4453125,\n              2.81137119\n            ],\n            [\n              21.796875,\n              2.81137119\n            ],\n            [\n              21.796875,\n              2.46018118\n            ],\n            [\n              21.4453125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              2.81137119\n            ],\n            [\n              21.4453125,\n              3.16245553\n            ],\n            [\n              21.796875,\n              3.16245553\n            ],\n            [\n              21.796875,\n              2.81137119\n            ],\n            [\n              21.4453125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              3.16245553\n            ],\n            [\n              21.4453125,\n              3.51342105\n            ],\n            [\n              21.796875,\n              3.51342105\n            ],\n            [\n              21.796875,\n              3.16245553\n            ],\n            [\n              21.4453125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              3.51342105\n            ],\n            [\n              21.4453125,\n              3.86425462\n            ],\n            [\n              21.796875,\n              3.86425462\n            ],\n            [\n              21.796875,\n              3.51342105\n            ],\n            [\n              21.4453125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              3.86425462\n            ],\n            [\n              21.4453125,\n              4.21494314\n            ],\n            [\n              21.796875,\n              4.21494314\n            ],\n            [\n              21.796875,\n              3.86425462\n            ],\n            [\n              21.4453125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              4.21494314\n            ],\n            [\n              21.4453125,\n              4.56547355\n            ],\n            [\n              21.796875,\n              4.56547355\n            ],\n            [\n              21.796875,\n              4.21494314\n            ],\n            [\n              21.4453125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              4.56547355\n            ],\n            [\n              21.4453125,\n              4.9158328\n            ],\n            [\n              21.796875,\n              4.9158328\n            ],\n            [\n              21.796875,\n              4.56547355\n            ],\n            [\n              21.4453125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              4.9158328\n            ],\n            [\n              21.4453125,\n              5.26600788\n            ],\n            [\n              21.796875,\n              5.26600788\n            ],\n            [\n              21.796875,\n              4.9158328\n            ],\n            [\n              21.4453125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              5.26600788\n            ],\n            [\n              21.4453125,\n              5.61598582\n            ],\n            [\n              21.796875,\n              5.61598582\n            ],\n            [\n              21.796875,\n              5.26600788\n            ],\n            [\n              21.4453125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              5.61598582\n            ],\n            [\n              21.4453125,\n              5.96575367\n            ],\n            [\n              21.796875,\n              5.96575367\n            ],\n            [\n              21.796875,\n              5.61598582\n            ],\n            [\n              21.4453125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              5.96575367\n            ],\n            [\n              21.4453125,\n              6.31529854\n            ],\n            [\n              21.796875,\n              6.31529854\n            ],\n            [\n              21.796875,\n              5.96575367\n            ],\n            [\n              21.4453125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              6.31529854\n            ],\n            [\n              21.4453125,\n              6.66460756\n            ],\n            [\n              21.796875,\n              6.66460756\n            ],\n            [\n              21.796875,\n              6.31529854\n            ],\n            [\n              21.4453125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              6.66460756\n            ],\n            [\n              21.4453125,\n              7.01366793\n            ],\n            [\n              21.796875,\n              7.01366793\n            ],\n            [\n              21.796875,\n              6.66460756\n            ],\n            [\n              21.4453125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              7.01366793\n            ],\n            [\n              21.4453125,\n              7.36246687\n            ],\n            [\n              21.796875,\n              7.36246687\n            ],\n            [\n              21.796875,\n              7.01366793\n            ],\n            [\n              21.4453125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              7.36246687\n            ],\n            [\n              21.4453125,\n              7.71099166\n            ],\n            [\n              21.796875,\n              7.71099166\n            ],\n            [\n              21.796875,\n              7.36246687\n            ],\n            [\n              21.4453125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              7.71099166\n            ],\n            [\n              21.4453125,\n              8.05922963\n            ],\n            [\n              21.796875,\n              8.05922963\n            ],\n            [\n              21.796875,\n              7.71099166\n            ],\n            [\n              21.4453125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              8.05922963\n            ],\n            [\n              21.4453125,\n              8.40716816\n            ],\n            [\n              21.796875,\n              8.40716816\n            ],\n            [\n              21.796875,\n              8.05922963\n            ],\n            [\n              21.4453125,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              8.40716816\n            ],\n            [\n              21.4453125,\n              8.7547947\n            ],\n            [\n              21.796875,\n              8.7547947\n            ],\n            [\n              21.796875,\n              8.40716816\n            ],\n            [\n              21.4453125,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              8.7547947\n            ],\n            [\n              21.4453125,\n              9.10209674\n            ],\n            [\n              21.796875,\n              9.10209674\n            ],\n            [\n              21.796875,\n              8.7547947\n            ],\n            [\n              21.4453125,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              9.10209674\n            ],\n            [\n              21.4453125,\n              9.44906183\n            ],\n            [\n              21.796875,\n              9.44906183\n            ],\n            [\n              21.796875,\n              9.10209674\n            ],\n            [\n              21.4453125,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              9.44906183\n            ],\n            [\n              21.4453125,\n              9.79567758\n            ],\n            [\n              21.796875,\n              9.79567758\n            ],\n            [\n              21.796875,\n              9.44906183\n            ],\n            [\n              21.4453125,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              9.79567758\n            ],\n            [\n              21.4453125,\n              10.14193169\n            ],\n            [\n              21.796875,\n              10.14193169\n            ],\n            [\n              21.796875,\n              9.79567758\n            ],\n            [\n              21.4453125,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              -0.35156029\n            ],\n            [\n              21.796875,\n              0\n            ],\n            [\n              22.1484375,\n              0\n            ],\n            [\n              22.1484375,\n              -0.35156029\n            ],\n            [\n              21.796875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              -0.70310735\n            ],\n            [\n              21.796875,\n              -0.35156029\n            ],\n            [\n              22.1484375,\n              -0.35156029\n            ],\n            [\n              22.1484375,\n              -0.70310735\n            ],\n            [\n              21.796875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              -1.05462794\n            ],\n            [\n              21.796875,\n              -0.70310735\n            ],\n            [\n              22.1484375,\n              -0.70310735\n            ],\n            [\n              22.1484375,\n              -1.05462794\n            ],\n            [\n              21.796875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              -1.40610884\n            ],\n            [\n              21.796875,\n              -1.05462794\n            ],\n            [\n              22.1484375,\n              -1.05462794\n            ],\n            [\n              22.1484375,\n              -1.40610884\n            ],\n            [\n              21.796875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              -1.75753681\n            ],\n            [\n              21.796875,\n              -1.40610884\n            ],\n            [\n              22.1484375,\n              -1.40610884\n            ],\n            [\n              22.1484375,\n              -1.75753681\n            ],\n            [\n              21.796875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              0\n            ],\n            [\n              21.796875,\n              0.35156029\n            ],\n            [\n              22.1484375,\n              0.35156029\n            ],\n            [\n              22.1484375,\n              0\n            ],\n            [\n              21.796875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              0.35156029\n            ],\n            [\n              21.796875,\n              0.70310735\n            ],\n            [\n              22.1484375,\n              0.70310735\n            ],\n            [\n              22.1484375,\n              0.35156029\n            ],\n            [\n              21.796875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              0.70310735\n            ],\n            [\n              21.796875,\n              1.05462794\n            ],\n            [\n              22.1484375,\n              1.05462794\n            ],\n            [\n              22.1484375,\n              0.70310735\n            ],\n            [\n              21.796875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              1.05462794\n            ],\n            [\n              21.796875,\n              1.40610884\n            ],\n            [\n              22.1484375,\n              1.40610884\n            ],\n            [\n              22.1484375,\n              1.05462794\n            ],\n            [\n              21.796875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              1.40610884\n            ],\n            [\n              21.796875,\n              1.75753681\n            ],\n            [\n              22.1484375,\n              1.75753681\n            ],\n            [\n              22.1484375,\n              1.40610884\n            ],\n            [\n              21.796875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              1.75753681\n            ],\n            [\n              21.796875,\n              2.10889866\n            ],\n            [\n              22.1484375,\n              2.10889866\n            ],\n            [\n              22.1484375,\n              1.75753681\n            ],\n            [\n              21.796875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              10.14193169\n            ],\n            [\n              21.796875,\n              10.48781188\n            ],\n            [\n              22.1484375,\n              10.48781188\n            ],\n            [\n              22.1484375,\n              10.14193169\n            ],\n            [\n              21.796875,\n              10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              10.48781188\n            ],\n            [\n              21.796875,\n              10.83330598\n            ],\n            [\n              22.1484375,\n              10.83330598\n            ],\n            [\n              22.1484375,\n              10.48781188\n            ],\n            [\n              21.796875,\n              10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              10.83330598\n            ],\n            [\n              21.796875,\n              11.17840187\n            ],\n            [\n              22.1484375,\n              11.17840187\n            ],\n            [\n              22.1484375,\n              10.83330598\n            ],\n            [\n              21.796875,\n              10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              11.17840187\n            ],\n            [\n              21.796875,\n              11.52308751\n            ],\n            [\n              22.1484375,\n              11.52308751\n            ],\n            [\n              22.1484375,\n              11.17840187\n            ],\n            [\n              21.796875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              11.52308751\n            ],\n            [\n              21.796875,\n              11.86735091\n            ],\n            [\n              22.1484375,\n              11.86735091\n            ],\n            [\n              22.1484375,\n              11.52308751\n            ],\n            [\n              21.796875,\n              11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              2.10889866\n            ],\n            [\n              21.796875,\n              2.46018118\n            ],\n            [\n              22.1484375,\n              2.46018118\n            ],\n            [\n              22.1484375,\n              2.10889866\n            ],\n            [\n              21.796875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              2.46018118\n            ],\n            [\n              21.796875,\n              2.81137119\n            ],\n            [\n              22.1484375,\n              2.81137119\n            ],\n            [\n              22.1484375,\n              2.46018118\n            ],\n            [\n              21.796875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              2.81137119\n            ],\n            [\n              21.796875,\n              3.16245553\n            ],\n            [\n              22.1484375,\n              3.16245553\n            ],\n            [\n              22.1484375,\n              2.81137119\n            ],\n            [\n              21.796875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              3.16245553\n            ],\n            [\n              21.796875,\n              3.51342105\n            ],\n            [\n              22.1484375,\n              3.51342105\n            ],\n            [\n              22.1484375,\n              3.16245553\n            ],\n            [\n              21.796875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              3.51342105\n            ],\n            [\n              21.796875,\n              3.86425462\n            ],\n            [\n              22.1484375,\n              3.86425462\n            ],\n            [\n              22.1484375,\n              3.51342105\n            ],\n            [\n              21.796875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              3.86425462\n            ],\n            [\n              21.796875,\n              4.21494314\n            ],\n            [\n              22.1484375,\n              4.21494314\n            ],\n            [\n              22.1484375,\n              3.86425462\n            ],\n            [\n              21.796875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              4.21494314\n            ],\n            [\n              21.796875,\n              4.56547355\n            ],\n            [\n              22.1484375,\n              4.56547355\n            ],\n            [\n              22.1484375,\n              4.21494314\n            ],\n            [\n              21.796875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              4.56547355\n            ],\n            [\n              21.796875,\n              4.9158328\n            ],\n            [\n              22.1484375,\n              4.9158328\n            ],\n            [\n              22.1484375,\n              4.56547355\n            ],\n            [\n              21.796875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              4.9158328\n            ],\n            [\n              21.796875,\n              5.26600788\n            ],\n            [\n              22.1484375,\n              5.26600788\n            ],\n            [\n              22.1484375,\n              4.9158328\n            ],\n            [\n              21.796875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              5.26600788\n            ],\n            [\n              21.796875,\n              5.61598582\n            ],\n            [\n              22.1484375,\n              5.61598582\n            ],\n            [\n              22.1484375,\n              5.26600788\n            ],\n            [\n              21.796875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              5.61598582\n            ],\n            [\n              21.796875,\n              5.96575367\n            ],\n            [\n              22.1484375,\n              5.96575367\n            ],\n            [\n              22.1484375,\n              5.61598582\n            ],\n            [\n              21.796875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              5.96575367\n            ],\n            [\n              21.796875,\n              6.31529854\n            ],\n            [\n              22.1484375,\n              6.31529854\n            ],\n            [\n              22.1484375,\n              5.96575367\n            ],\n            [\n              21.796875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              6.31529854\n            ],\n            [\n              21.796875,\n              6.66460756\n            ],\n            [\n              22.1484375,\n              6.66460756\n            ],\n            [\n              22.1484375,\n              6.31529854\n            ],\n            [\n              21.796875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              6.66460756\n            ],\n            [\n              21.796875,\n              7.01366793\n            ],\n            [\n              22.1484375,\n              7.01366793\n            ],\n            [\n              22.1484375,\n              6.66460756\n            ],\n            [\n              21.796875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              7.01366793\n            ],\n            [\n              21.796875,\n              7.36246687\n            ],\n            [\n              22.1484375,\n              7.36246687\n            ],\n            [\n              22.1484375,\n              7.01366793\n            ],\n            [\n              21.796875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              7.36246687\n            ],\n            [\n              21.796875,\n              7.71099166\n            ],\n            [\n              22.1484375,\n              7.71099166\n            ],\n            [\n              22.1484375,\n              7.36246687\n            ],\n            [\n              21.796875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              7.71099166\n            ],\n            [\n              21.796875,\n              8.05922963\n            ],\n            [\n              22.1484375,\n              8.05922963\n            ],\n            [\n              22.1484375,\n              7.71099166\n            ],\n            [\n              21.796875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              8.05922963\n            ],\n            [\n              21.796875,\n              8.40716816\n            ],\n            [\n              22.1484375,\n              8.40716816\n            ],\n            [\n              22.1484375,\n              8.05922963\n            ],\n            [\n              21.796875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              8.40716816\n            ],\n            [\n              21.796875,\n              8.7547947\n            ],\n            [\n              22.1484375,\n              8.7547947\n            ],\n            [\n              22.1484375,\n              8.40716816\n            ],\n            [\n              21.796875,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              8.7547947\n            ],\n            [\n              21.796875,\n              9.10209674\n            ],\n            [\n              22.1484375,\n              9.10209674\n            ],\n            [\n              22.1484375,\n              8.7547947\n            ],\n            [\n              21.796875,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              9.10209674\n            ],\n            [\n              21.796875,\n              9.44906183\n            ],\n            [\n              22.1484375,\n              9.44906183\n            ],\n            [\n              22.1484375,\n              9.10209674\n            ],\n            [\n              21.796875,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              9.44906183\n            ],\n            [\n              21.796875,\n              9.79567758\n            ],\n            [\n              22.1484375,\n              9.79567758\n            ],\n            [\n              22.1484375,\n              9.44906183\n            ],\n            [\n              21.796875,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              9.79567758\n            ],\n            [\n              21.796875,\n              10.14193169\n            ],\n            [\n              22.1484375,\n              10.14193169\n            ],\n            [\n              22.1484375,\n              9.79567758\n            ],\n            [\n              21.796875,\n              9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              -0.35156029\n            ],\n            [\n              22.1484375,\n              0\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              22.5,\n              -0.35156029\n            ],\n            [\n              22.1484375,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              -0.70310735\n            ],\n            [\n              22.1484375,\n              -0.35156029\n            ],\n            [\n              22.5,\n              -0.35156029\n            ],\n            [\n              22.5,\n              -0.70310735\n            ],\n            [\n              22.1484375,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              -1.05462794\n            ],\n            [\n              22.1484375,\n              -0.70310735\n            ],\n            [\n              22.5,\n              -0.70310735\n            ],\n            [\n              22.5,\n              -1.05462794\n            ],\n            [\n              22.1484375,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              0\n            ],\n            [\n              22.1484375,\n              0.35156029\n            ],\n            [\n              22.5,\n              0.35156029\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              22.1484375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              0.35156029\n            ],\n            [\n              22.1484375,\n              0.70310735\n            ],\n            [\n              22.5,\n              0.70310735\n            ],\n            [\n              22.5,\n              0.35156029\n            ],\n            [\n              22.1484375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              0.70310735\n            ],\n            [\n              22.1484375,\n              1.05462794\n            ],\n            [\n              22.5,\n              1.05462794\n            ],\n            [\n              22.5,\n              0.70310735\n            ],\n            [\n              22.1484375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              1.05462794\n            ],\n            [\n              22.1484375,\n              1.40610884\n            ],\n            [\n              22.5,\n              1.40610884\n            ],\n            [\n              22.5,\n              1.05462794\n            ],\n            [\n              22.1484375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              1.40610884\n            ],\n            [\n              22.1484375,\n              1.75753681\n            ],\n            [\n              22.5,\n              1.75753681\n            ],\n            [\n              22.5,\n              1.40610884\n            ],\n            [\n              22.1484375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              1.75753681\n            ],\n            [\n              22.1484375,\n              2.10889866\n            ],\n            [\n              22.5,\n              2.10889866\n            ],\n            [\n              22.5,\n              1.75753681\n            ],\n            [\n              22.1484375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              2.10889866\n            ],\n            [\n              22.1484375,\n              2.46018118\n            ],\n            [\n              22.5,\n              2.46018118\n            ],\n            [\n              22.5,\n              2.10889866\n            ],\n            [\n              22.1484375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              2.46018118\n            ],\n            [\n              22.1484375,\n              2.81137119\n            ],\n            [\n              22.5,\n              2.81137119\n            ],\n            [\n              22.5,\n              2.46018118\n            ],\n            [\n              22.1484375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              2.81137119\n            ],\n            [\n              22.1484375,\n              3.16245553\n            ],\n            [\n              22.5,\n              3.16245553\n            ],\n            [\n              22.5,\n              2.81137119\n            ],\n            [\n              22.1484375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              3.16245553\n            ],\n            [\n              22.1484375,\n              3.51342105\n            ],\n            [\n              22.5,\n              3.51342105\n            ],\n            [\n              22.5,\n              3.16245553\n            ],\n            [\n              22.1484375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              3.51342105\n            ],\n            [\n              22.1484375,\n              3.86425462\n            ],\n            [\n              22.5,\n              3.86425462\n            ],\n            [\n              22.5,\n              3.51342105\n            ],\n            [\n              22.1484375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              3.86425462\n            ],\n            [\n              22.1484375,\n              4.21494314\n            ],\n            [\n              22.5,\n              4.21494314\n            ],\n            [\n              22.5,\n              3.86425462\n            ],\n            [\n              22.1484375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              4.21494314\n            ],\n            [\n              22.1484375,\n              4.56547355\n            ],\n            [\n              22.5,\n              4.56547355\n            ],\n            [\n              22.5,\n              4.21494314\n            ],\n            [\n              22.1484375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              4.56547355\n            ],\n            [\n              22.1484375,\n              4.9158328\n            ],\n            [\n              22.5,\n              4.9158328\n            ],\n            [\n              22.5,\n              4.56547355\n            ],\n            [\n              22.1484375,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              4.9158328\n            ],\n            [\n              22.1484375,\n              5.26600788\n            ],\n            [\n              22.5,\n              5.26600788\n            ],\n            [\n              22.5,\n              4.9158328\n            ],\n            [\n              22.1484375,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              5.26600788\n            ],\n            [\n              22.1484375,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.26600788\n            ],\n            [\n              22.1484375,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              5.61598582\n            ],\n            [\n              22.1484375,\n              5.96575367\n            ],\n            [\n              22.5,\n              5.96575367\n            ],\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.1484375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              5.96575367\n            ],\n            [\n              22.1484375,\n              6.31529854\n            ],\n            [\n              22.5,\n              6.31529854\n            ],\n            [\n              22.5,\n              5.96575367\n            ],\n            [\n              22.1484375,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              6.31529854\n            ],\n            [\n              22.1484375,\n              6.66460756\n            ],\n            [\n              22.5,\n              6.66460756\n            ],\n            [\n              22.5,\n              6.31529854\n            ],\n            [\n              22.1484375,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              6.66460756\n            ],\n            [\n              22.1484375,\n              7.01366793\n            ],\n            [\n              22.5,\n              7.01366793\n            ],\n            [\n              22.5,\n              6.66460756\n            ],\n            [\n              22.1484375,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              7.01366793\n            ],\n            [\n              22.1484375,\n              7.36246687\n            ],\n            [\n              22.5,\n              7.36246687\n            ],\n            [\n              22.5,\n              7.01366793\n            ],\n            [\n              22.1484375,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              7.36246687\n            ],\n            [\n              22.1484375,\n              7.71099166\n            ],\n            [\n              22.5,\n              7.71099166\n            ],\n            [\n              22.5,\n              7.36246687\n            ],\n            [\n              22.1484375,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              7.71099166\n            ],\n            [\n              22.1484375,\n              8.05922963\n            ],\n            [\n              22.5,\n              8.05922963\n            ],\n            [\n              22.5,\n              7.71099166\n            ],\n            [\n              22.1484375,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              8.05922963\n            ],\n            [\n              22.1484375,\n              8.40716816\n            ],\n            [\n              22.5,\n              8.40716816\n            ],\n            [\n              22.5,\n              8.05922963\n            ],\n            [\n              22.1484375,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              8.40716816\n            ],\n            [\n              22.1484375,\n              8.7547947\n            ],\n            [\n              22.5,\n              8.7547947\n            ],\n            [\n              22.5,\n              8.40716816\n            ],\n            [\n              22.1484375,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              8.7547947\n            ],\n            [\n              22.1484375,\n              9.10209674\n            ],\n            [\n              22.5,\n              9.10209674\n            ],\n            [\n              22.5,\n              8.7547947\n            ],\n            [\n              22.1484375,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              9.10209674\n            ],\n            [\n              22.1484375,\n              9.44906183\n            ],\n            [\n              22.5,\n              9.44906183\n            ],\n            [\n              22.5,\n              9.10209674\n            ],\n            [\n              22.1484375,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              9.44906183\n            ],\n            [\n              22.1484375,\n              9.79567758\n            ],\n            [\n              22.5,\n              9.79567758\n            ],\n            [\n              22.5,\n              9.44906183\n            ],\n            [\n              22.1484375,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -0.35156029\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              22.8515625,\n              0\n            ],\n            [\n              22.8515625,\n              -0.35156029\n            ],\n            [\n              22.5,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -0.70310735\n            ],\n            [\n              22.5,\n              -0.35156029\n            ],\n            [\n              22.8515625,\n              -0.35156029\n            ],\n            [\n              22.8515625,\n              -0.70310735\n            ],\n            [\n              22.5,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -1.05462794\n            ],\n            [\n              22.5,\n              -0.70310735\n            ],\n            [\n              22.8515625,\n              -0.70310735\n            ],\n            [\n              22.8515625,\n              -1.05462794\n            ],\n            [\n              22.5,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -1.40610884\n            ],\n            [\n              22.5,\n              -1.05462794\n            ],\n            [\n              22.8515625,\n              -1.05462794\n            ],\n            [\n              22.8515625,\n              -1.40610884\n            ],\n            [\n              22.5,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -1.75753681\n            ],\n            [\n              22.5,\n              -1.40610884\n            ],\n            [\n              22.8515625,\n              -1.40610884\n            ],\n            [\n              22.8515625,\n              -1.75753681\n            ],\n            [\n              22.5,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              0\n            ],\n            [\n              22.5,\n              0.35156029\n            ],\n            [\n              22.8515625,\n              0.35156029\n            ],\n            [\n              22.8515625,\n              0\n            ],\n            [\n              22.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              0.35156029\n            ],\n            [\n              22.5,\n              0.70310735\n            ],\n            [\n              22.8515625,\n              0.70310735\n            ],\n            [\n              22.8515625,\n              0.35156029\n            ],\n            [\n              22.5,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              0.70310735\n            ],\n            [\n              22.5,\n              1.05462794\n            ],\n            [\n              22.8515625,\n              1.05462794\n            ],\n            [\n              22.8515625,\n              0.70310735\n            ],\n            [\n              22.5,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              1.05462794\n            ],\n            [\n              22.5,\n              1.40610884\n            ],\n            [\n              22.8515625,\n              1.40610884\n            ],\n            [\n              22.8515625,\n              1.05462794\n            ],\n            [\n              22.5,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              1.40610884\n            ],\n            [\n              22.5,\n              1.75753681\n            ],\n            [\n              22.8515625,\n              1.75753681\n            ],\n            [\n              22.8515625,\n              1.40610884\n            ],\n            [\n              22.5,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              1.75753681\n            ],\n            [\n              22.5,\n              2.10889866\n            ],\n            [\n              22.8515625,\n              2.10889866\n            ],\n            [\n              22.8515625,\n              1.75753681\n            ],\n            [\n              22.5,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              2.10889866\n            ],\n            [\n              22.5,\n              2.46018118\n            ],\n            [\n              22.8515625,\n              2.46018118\n            ],\n            [\n              22.8515625,\n              2.10889866\n            ],\n            [\n              22.5,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              2.46018118\n            ],\n            [\n              22.5,\n              2.81137119\n            ],\n            [\n              22.8515625,\n              2.81137119\n            ],\n            [\n              22.8515625,\n              2.46018118\n            ],\n            [\n              22.5,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              2.81137119\n            ],\n            [\n              22.5,\n              3.16245553\n            ],\n            [\n              22.8515625,\n              3.16245553\n            ],\n            [\n              22.8515625,\n              2.81137119\n            ],\n            [\n              22.5,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              3.16245553\n            ],\n            [\n              22.5,\n              3.51342105\n            ],\n            [\n              22.8515625,\n              3.51342105\n            ],\n            [\n              22.8515625,\n              3.16245553\n            ],\n            [\n              22.5,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              3.51342105\n            ],\n            [\n              22.5,\n              3.86425462\n            ],\n            [\n              22.8515625,\n              3.86425462\n            ],\n            [\n              22.8515625,\n              3.51342105\n            ],\n            [\n              22.5,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              3.86425462\n            ],\n            [\n              22.5,\n              4.21494314\n            ],\n            [\n              22.8515625,\n              4.21494314\n            ],\n            [\n              22.8515625,\n              3.86425462\n            ],\n            [\n              22.5,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              4.21494314\n            ],\n            [\n              22.5,\n              4.56547355\n            ],\n            [\n              22.8515625,\n              4.56547355\n            ],\n            [\n              22.8515625,\n              4.21494314\n            ],\n            [\n              22.5,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              4.56547355\n            ],\n            [\n              22.5,\n              4.9158328\n            ],\n            [\n              22.8515625,\n              4.9158328\n            ],\n            [\n              22.8515625,\n              4.56547355\n            ],\n            [\n              22.5,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              4.9158328\n            ],\n            [\n              22.5,\n              5.26600788\n            ],\n            [\n              22.8515625,\n              5.26600788\n            ],\n            [\n              22.8515625,\n              4.9158328\n            ],\n            [\n              22.5,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              5.26600788\n            ],\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.8515625,\n              5.61598582\n            ],\n            [\n              22.8515625,\n              5.26600788\n            ],\n            [\n              22.5,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.96575367\n            ],\n            [\n              22.8515625,\n              5.96575367\n            ],\n            [\n              22.8515625,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              5.96575367\n            ],\n            [\n              22.5,\n              6.31529854\n            ],\n            [\n              22.8515625,\n              6.31529854\n            ],\n            [\n              22.8515625,\n              5.96575367\n            ],\n            [\n              22.5,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              6.31529854\n            ],\n            [\n              22.5,\n              6.66460756\n            ],\n            [\n              22.8515625,\n              6.66460756\n            ],\n            [\n              22.8515625,\n              6.31529854\n            ],\n            [\n              22.5,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              6.66460756\n            ],\n            [\n              22.5,\n              7.01366793\n            ],\n            [\n              22.8515625,\n              7.01366793\n            ],\n            [\n              22.8515625,\n              6.66460756\n            ],\n            [\n              22.5,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              7.01366793\n            ],\n            [\n              22.5,\n              7.36246687\n            ],\n            [\n              22.8515625,\n              7.36246687\n            ],\n            [\n              22.8515625,\n              7.01366793\n            ],\n            [\n              22.5,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -0.35156029\n            ],\n            [\n              22.8515625,\n              0\n            ],\n            [\n              23.203125,\n              0\n            ],\n            [\n              23.203125,\n              -0.35156029\n            ],\n            [\n              22.8515625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -0.70310735\n            ],\n            [\n              22.8515625,\n              -0.35156029\n            ],\n            [\n              23.203125,\n              -0.35156029\n            ],\n            [\n              23.203125,\n              -0.70310735\n            ],\n            [\n              22.8515625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -1.05462794\n            ],\n            [\n              22.8515625,\n              -0.70310735\n            ],\n            [\n              23.203125,\n              -0.70310735\n            ],\n            [\n              23.203125,\n              -1.05462794\n            ],\n            [\n              22.8515625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -1.40610884\n            ],\n            [\n              22.8515625,\n              -1.05462794\n            ],\n            [\n              23.203125,\n              -1.05462794\n            ],\n            [\n              23.203125,\n              -1.40610884\n            ],\n            [\n              22.8515625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -1.75753681\n            ],\n            [\n              22.8515625,\n              -1.40610884\n            ],\n            [\n              23.203125,\n              -1.40610884\n            ],\n            [\n              23.203125,\n              -1.75753681\n            ],\n            [\n              22.8515625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -2.10889866\n            ],\n            [\n              22.8515625,\n              -1.75753681\n            ],\n            [\n              23.203125,\n              -1.75753681\n            ],\n            [\n              23.203125,\n              -2.10889866\n            ],\n            [\n              22.8515625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -2.46018118\n            ],\n            [\n              22.8515625,\n              -2.10889866\n            ],\n            [\n              23.203125,\n              -2.10889866\n            ],\n            [\n              23.203125,\n              -2.46018118\n            ],\n            [\n              22.8515625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -2.81137119\n            ],\n            [\n              22.8515625,\n              -2.46018118\n            ],\n            [\n              23.203125,\n              -2.46018118\n            ],\n            [\n              23.203125,\n              -2.81137119\n            ],\n            [\n              22.8515625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -3.16245553\n            ],\n            [\n              22.8515625,\n              -2.81137119\n            ],\n            [\n              23.203125,\n              -2.81137119\n            ],\n            [\n              23.203125,\n              -3.16245553\n            ],\n            [\n              22.8515625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -3.51342105\n            ],\n            [\n              22.8515625,\n              -3.16245553\n            ],\n            [\n              23.203125,\n              -3.16245553\n            ],\n            [\n              23.203125,\n              -3.51342105\n            ],\n            [\n              22.8515625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -3.86425462\n            ],\n            [\n              22.8515625,\n              -3.51342105\n            ],\n            [\n              23.203125,\n              -3.51342105\n            ],\n            [\n              23.203125,\n              -3.86425462\n            ],\n            [\n              22.8515625,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -4.21494314\n            ],\n            [\n              22.8515625,\n              -3.86425462\n            ],\n            [\n              23.203125,\n              -3.86425462\n            ],\n            [\n              23.203125,\n              -4.21494314\n            ],\n            [\n              22.8515625,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              -4.56547355\n            ],\n            [\n              22.8515625,\n              -4.21494314\n            ],\n            [\n              23.203125,\n              -4.21494314\n            ],\n            [\n              23.203125,\n              -4.56547355\n            ],\n            [\n              22.8515625,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              0\n            ],\n            [\n              22.8515625,\n              0.35156029\n            ],\n            [\n              23.203125,\n              0.35156029\n            ],\n            [\n              23.203125,\n              0\n            ],\n            [\n              22.8515625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              0.35156029\n            ],\n            [\n              22.8515625,\n              0.70310735\n            ],\n            [\n              23.203125,\n              0.70310735\n            ],\n            [\n              23.203125,\n              0.35156029\n            ],\n            [\n              22.8515625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              0.70310735\n            ],\n            [\n              22.8515625,\n              1.05462794\n            ],\n            [\n              23.203125,\n              1.05462794\n            ],\n            [\n              23.203125,\n              0.70310735\n            ],\n            [\n              22.8515625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              1.05462794\n            ],\n            [\n              22.8515625,\n              1.40610884\n            ],\n            [\n              23.203125,\n              1.40610884\n            ],\n            [\n              23.203125,\n              1.05462794\n            ],\n            [\n              22.8515625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              1.40610884\n            ],\n            [\n              22.8515625,\n              1.75753681\n            ],\n            [\n              23.203125,\n              1.75753681\n            ],\n            [\n              23.203125,\n              1.40610884\n            ],\n            [\n              22.8515625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              1.75753681\n            ],\n            [\n              22.8515625,\n              2.10889866\n            ],\n            [\n              23.203125,\n              2.10889866\n            ],\n            [\n              23.203125,\n              1.75753681\n            ],\n            [\n              22.8515625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              2.10889866\n            ],\n            [\n              22.8515625,\n              2.46018118\n            ],\n            [\n              23.203125,\n              2.46018118\n            ],\n            [\n              23.203125,\n              2.10889866\n            ],\n            [\n              22.8515625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              2.46018118\n            ],\n            [\n              22.8515625,\n              2.81137119\n            ],\n            [\n              23.203125,\n              2.81137119\n            ],\n            [\n              23.203125,\n              2.46018118\n            ],\n            [\n              22.8515625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              2.81137119\n            ],\n            [\n              22.8515625,\n              3.16245553\n            ],\n            [\n              23.203125,\n              3.16245553\n            ],\n            [\n              23.203125,\n              2.81137119\n            ],\n            [\n              22.8515625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              3.16245553\n            ],\n            [\n              22.8515625,\n              3.51342105\n            ],\n            [\n              23.203125,\n              3.51342105\n            ],\n            [\n              23.203125,\n              3.16245553\n            ],\n            [\n              22.8515625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              3.51342105\n            ],\n            [\n              22.8515625,\n              3.86425462\n            ],\n            [\n              23.203125,\n              3.86425462\n            ],\n            [\n              23.203125,\n              3.51342105\n            ],\n            [\n              22.8515625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              3.86425462\n            ],\n            [\n              22.8515625,\n              4.21494314\n            ],\n            [\n              23.203125,\n              4.21494314\n            ],\n            [\n              23.203125,\n              3.86425462\n            ],\n            [\n              22.8515625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              4.21494314\n            ],\n            [\n              22.8515625,\n              4.56547355\n            ],\n            [\n              23.203125,\n              4.56547355\n            ],\n            [\n              23.203125,\n              4.21494314\n            ],\n            [\n              22.8515625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              4.56547355\n            ],\n            [\n              22.8515625,\n              4.9158328\n            ],\n            [\n              23.203125,\n              4.9158328\n            ],\n            [\n              23.203125,\n              4.56547355\n            ],\n            [\n              22.8515625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              4.9158328\n            ],\n            [\n              22.8515625,\n              5.26600788\n            ],\n            [\n              23.203125,\n              5.26600788\n            ],\n            [\n              23.203125,\n              4.9158328\n            ],\n            [\n              22.8515625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              5.26600788\n            ],\n            [\n              22.8515625,\n              5.61598582\n            ],\n            [\n              23.203125,\n              5.61598582\n            ],\n            [\n              23.203125,\n              5.26600788\n            ],\n            [\n              22.8515625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              5.61598582\n            ],\n            [\n              22.8515625,\n              5.96575367\n            ],\n            [\n              23.203125,\n              5.96575367\n            ],\n            [\n              23.203125,\n              5.61598582\n            ],\n            [\n              22.8515625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              5.96575367\n            ],\n            [\n              22.8515625,\n              6.31529854\n            ],\n            [\n              23.203125,\n              6.31529854\n            ],\n            [\n              23.203125,\n              5.96575367\n            ],\n            [\n              22.8515625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              6.31529854\n            ],\n            [\n              22.8515625,\n              6.66460756\n            ],\n            [\n              23.203125,\n              6.66460756\n            ],\n            [\n              23.203125,\n              6.31529854\n            ],\n            [\n              22.8515625,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              6.66460756\n            ],\n            [\n              22.8515625,\n              7.01366793\n            ],\n            [\n              23.203125,\n              7.01366793\n            ],\n            [\n              23.203125,\n              6.66460756\n            ],\n            [\n              22.8515625,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              7.01366793\n            ],\n            [\n              22.8515625,\n              7.36246687\n            ],\n            [\n              23.203125,\n              7.36246687\n            ],\n            [\n              23.203125,\n              7.01366793\n            ],\n            [\n              22.8515625,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              7.36246687\n            ],\n            [\n              22.8515625,\n              7.71099166\n            ],\n            [\n              23.203125,\n              7.71099166\n            ],\n            [\n              23.203125,\n              7.36246687\n            ],\n            [\n              22.8515625,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -0.35156029\n            ],\n            [\n              23.203125,\n              0\n            ],\n            [\n              23.5546875,\n              0\n            ],\n            [\n              23.5546875,\n              -0.35156029\n            ],\n            [\n              23.203125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -0.70310735\n            ],\n            [\n              23.203125,\n              -0.35156029\n            ],\n            [\n              23.5546875,\n              -0.35156029\n            ],\n            [\n              23.5546875,\n              -0.70310735\n            ],\n            [\n              23.203125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -1.05462794\n            ],\n            [\n              23.203125,\n              -0.70310735\n            ],\n            [\n              23.5546875,\n              -0.70310735\n            ],\n            [\n              23.5546875,\n              -1.05462794\n            ],\n            [\n              23.203125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -1.40610884\n            ],\n            [\n              23.203125,\n              -1.05462794\n            ],\n            [\n              23.5546875,\n              -1.05462794\n            ],\n            [\n              23.5546875,\n              -1.40610884\n            ],\n            [\n              23.203125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -1.75753681\n            ],\n            [\n              23.203125,\n              -1.40610884\n            ],\n            [\n              23.5546875,\n              -1.40610884\n            ],\n            [\n              23.5546875,\n              -1.75753681\n            ],\n            [\n              23.203125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -2.10889866\n            ],\n            [\n              23.203125,\n              -1.75753681\n            ],\n            [\n              23.5546875,\n              -1.75753681\n            ],\n            [\n              23.5546875,\n              -2.10889866\n            ],\n            [\n              23.203125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -2.46018118\n            ],\n            [\n              23.203125,\n              -2.10889866\n            ],\n            [\n              23.5546875,\n              -2.10889866\n            ],\n            [\n              23.5546875,\n              -2.46018118\n            ],\n            [\n              23.203125,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -2.81137119\n            ],\n            [\n              23.203125,\n              -2.46018118\n            ],\n            [\n              23.5546875,\n              -2.46018118\n            ],\n            [\n              23.5546875,\n              -2.81137119\n            ],\n            [\n              23.203125,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -3.16245553\n            ],\n            [\n              23.203125,\n              -2.81137119\n            ],\n            [\n              23.5546875,\n              -2.81137119\n            ],\n            [\n              23.5546875,\n              -3.16245553\n            ],\n            [\n              23.203125,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -3.51342105\n            ],\n            [\n              23.203125,\n              -3.16245553\n            ],\n            [\n              23.5546875,\n              -3.16245553\n            ],\n            [\n              23.5546875,\n              -3.51342105\n            ],\n            [\n              23.203125,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -3.86425462\n            ],\n            [\n              23.203125,\n              -3.51342105\n            ],\n            [\n              23.5546875,\n              -3.51342105\n            ],\n            [\n              23.5546875,\n              -3.86425462\n            ],\n            [\n              23.203125,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -4.21494314\n            ],\n            [\n              23.203125,\n              -3.86425462\n            ],\n            [\n              23.5546875,\n              -3.86425462\n            ],\n            [\n              23.5546875,\n              -4.21494314\n            ],\n            [\n              23.203125,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -4.56547355\n            ],\n            [\n              23.203125,\n              -4.21494314\n            ],\n            [\n              23.5546875,\n              -4.21494314\n            ],\n            [\n              23.5546875,\n              -4.56547355\n            ],\n            [\n              23.203125,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -4.9158328\n            ],\n            [\n              23.203125,\n              -4.56547355\n            ],\n            [\n              23.5546875,\n              -4.56547355\n            ],\n            [\n              23.5546875,\n              -4.9158328\n            ],\n            [\n              23.203125,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -5.26600788\n            ],\n            [\n              23.203125,\n              -4.9158328\n            ],\n            [\n              23.5546875,\n              -4.9158328\n            ],\n            [\n              23.5546875,\n              -5.26600788\n            ],\n            [\n              23.203125,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -5.61598582\n            ],\n            [\n              23.203125,\n              -5.26600788\n            ],\n            [\n              23.5546875,\n              -5.26600788\n            ],\n            [\n              23.5546875,\n              -5.61598582\n            ],\n            [\n              23.203125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -5.96575367\n            ],\n            [\n              23.203125,\n              -5.61598582\n            ],\n            [\n              23.5546875,\n              -5.61598582\n            ],\n            [\n              23.5546875,\n              -5.96575367\n            ],\n            [\n              23.203125,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -6.31529854\n            ],\n            [\n              23.203125,\n              -5.96575367\n            ],\n            [\n              23.5546875,\n              -5.96575367\n            ],\n            [\n              23.5546875,\n              -6.31529854\n            ],\n            [\n              23.203125,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -6.66460756\n            ],\n            [\n              23.203125,\n              -6.31529854\n            ],\n            [\n              23.5546875,\n              -6.31529854\n            ],\n            [\n              23.5546875,\n              -6.66460756\n            ],\n            [\n              23.203125,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              -7.01366793\n            ],\n            [\n              23.203125,\n              -6.66460756\n            ],\n            [\n              23.5546875,\n              -6.66460756\n            ],\n            [\n              23.5546875,\n              -7.01366793\n            ],\n            [\n              23.203125,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              0\n            ],\n            [\n              23.203125,\n              0.35156029\n            ],\n            [\n              23.5546875,\n              0.35156029\n            ],\n            [\n              23.5546875,\n              0\n            ],\n            [\n              23.203125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              0.35156029\n            ],\n            [\n              23.203125,\n              0.70310735\n            ],\n            [\n              23.5546875,\n              0.70310735\n            ],\n            [\n              23.5546875,\n              0.35156029\n            ],\n            [\n              23.203125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              0.70310735\n            ],\n            [\n              23.203125,\n              1.05462794\n            ],\n            [\n              23.5546875,\n              1.05462794\n            ],\n            [\n              23.5546875,\n              0.70310735\n            ],\n            [\n              23.203125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              1.05462794\n            ],\n            [\n              23.203125,\n              1.40610884\n            ],\n            [\n              23.5546875,\n              1.40610884\n            ],\n            [\n              23.5546875,\n              1.05462794\n            ],\n            [\n              23.203125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              1.40610884\n            ],\n            [\n              23.203125,\n              1.75753681\n            ],\n            [\n              23.5546875,\n              1.75753681\n            ],\n            [\n              23.5546875,\n              1.40610884\n            ],\n            [\n              23.203125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              1.75753681\n            ],\n            [\n              23.203125,\n              2.10889866\n            ],\n            [\n              23.5546875,\n              2.10889866\n            ],\n            [\n              23.5546875,\n              1.75753681\n            ],\n            [\n              23.203125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              2.10889866\n            ],\n            [\n              23.203125,\n              2.46018118\n            ],\n            [\n              23.5546875,\n              2.46018118\n            ],\n            [\n              23.5546875,\n              2.10889866\n            ],\n            [\n              23.203125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              2.46018118\n            ],\n            [\n              23.203125,\n              2.81137119\n            ],\n            [\n              23.5546875,\n              2.81137119\n            ],\n            [\n              23.5546875,\n              2.46018118\n            ],\n            [\n              23.203125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              2.81137119\n            ],\n            [\n              23.203125,\n              3.16245553\n            ],\n            [\n              23.5546875,\n              3.16245553\n            ],\n            [\n              23.5546875,\n              2.81137119\n            ],\n            [\n              23.203125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              3.16245553\n            ],\n            [\n              23.203125,\n              3.51342105\n            ],\n            [\n              23.5546875,\n              3.51342105\n            ],\n            [\n              23.5546875,\n              3.16245553\n            ],\n            [\n              23.203125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              3.51342105\n            ],\n            [\n              23.203125,\n              3.86425462\n            ],\n            [\n              23.5546875,\n              3.86425462\n            ],\n            [\n              23.5546875,\n              3.51342105\n            ],\n            [\n              23.203125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              3.86425462\n            ],\n            [\n              23.203125,\n              4.21494314\n            ],\n            [\n              23.5546875,\n              4.21494314\n            ],\n            [\n              23.5546875,\n              3.86425462\n            ],\n            [\n              23.203125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              4.21494314\n            ],\n            [\n              23.203125,\n              4.56547355\n            ],\n            [\n              23.5546875,\n              4.56547355\n            ],\n            [\n              23.5546875,\n              4.21494314\n            ],\n            [\n              23.203125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              4.56547355\n            ],\n            [\n              23.203125,\n              4.9158328\n            ],\n            [\n              23.5546875,\n              4.9158328\n            ],\n            [\n              23.5546875,\n              4.56547355\n            ],\n            [\n              23.203125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              4.9158328\n            ],\n            [\n              23.203125,\n              5.26600788\n            ],\n            [\n              23.5546875,\n              5.26600788\n            ],\n            [\n              23.5546875,\n              4.9158328\n            ],\n            [\n              23.203125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              5.26600788\n            ],\n            [\n              23.203125,\n              5.61598582\n            ],\n            [\n              23.5546875,\n              5.61598582\n            ],\n            [\n              23.5546875,\n              5.26600788\n            ],\n            [\n              23.203125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              5.61598582\n            ],\n            [\n              23.203125,\n              5.96575367\n            ],\n            [\n              23.5546875,\n              5.96575367\n            ],\n            [\n              23.5546875,\n              5.61598582\n            ],\n            [\n              23.203125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              5.96575367\n            ],\n            [\n              23.203125,\n              6.31529854\n            ],\n            [\n              23.5546875,\n              6.31529854\n            ],\n            [\n              23.5546875,\n              5.96575367\n            ],\n            [\n              23.203125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              6.31529854\n            ],\n            [\n              23.203125,\n              6.66460756\n            ],\n            [\n              23.5546875,\n              6.66460756\n            ],\n            [\n              23.5546875,\n              6.31529854\n            ],\n            [\n              23.203125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              6.66460756\n            ],\n            [\n              23.203125,\n              7.01366793\n            ],\n            [\n              23.5546875,\n              7.01366793\n            ],\n            [\n              23.5546875,\n              6.66460756\n            ],\n            [\n              23.203125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              7.01366793\n            ],\n            [\n              23.203125,\n              7.36246687\n            ],\n            [\n              23.5546875,\n              7.36246687\n            ],\n            [\n              23.5546875,\n              7.01366793\n            ],\n            [\n              23.203125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              7.36246687\n            ],\n            [\n              23.203125,\n              7.71099166\n            ],\n            [\n              23.5546875,\n              7.71099166\n            ],\n            [\n              23.5546875,\n              7.36246687\n            ],\n            [\n              23.203125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              7.71099166\n            ],\n            [\n              23.203125,\n              8.05922963\n            ],\n            [\n              23.5546875,\n              8.05922963\n            ],\n            [\n              23.5546875,\n              7.71099166\n            ],\n            [\n              23.203125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -0.35156029\n            ],\n            [\n              23.5546875,\n              0\n            ],\n            [\n              23.90625,\n              0\n            ],\n            [\n              23.90625,\n              -0.35156029\n            ],\n            [\n              23.5546875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -0.70310735\n            ],\n            [\n              23.5546875,\n              -0.35156029\n            ],\n            [\n              23.90625,\n              -0.35156029\n            ],\n            [\n              23.90625,\n              -0.70310735\n            ],\n            [\n              23.5546875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -1.05462794\n            ],\n            [\n              23.5546875,\n              -0.70310735\n            ],\n            [\n              23.90625,\n              -0.70310735\n            ],\n            [\n              23.90625,\n              -1.05462794\n            ],\n            [\n              23.5546875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -1.40610884\n            ],\n            [\n              23.5546875,\n              -1.05462794\n            ],\n            [\n              23.90625,\n              -1.05462794\n            ],\n            [\n              23.90625,\n              -1.40610884\n            ],\n            [\n              23.5546875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -1.75753681\n            ],\n            [\n              23.5546875,\n              -1.40610884\n            ],\n            [\n              23.90625,\n              -1.40610884\n            ],\n            [\n              23.90625,\n              -1.75753681\n            ],\n            [\n              23.5546875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -2.10889866\n            ],\n            [\n              23.5546875,\n              -1.75753681\n            ],\n            [\n              23.90625,\n              -1.75753681\n            ],\n            [\n              23.90625,\n              -2.10889866\n            ],\n            [\n              23.5546875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -2.46018118\n            ],\n            [\n              23.5546875,\n              -2.10889866\n            ],\n            [\n              23.90625,\n              -2.10889866\n            ],\n            [\n              23.90625,\n              -2.46018118\n            ],\n            [\n              23.5546875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -2.81137119\n            ],\n            [\n              23.5546875,\n              -2.46018118\n            ],\n            [\n              23.90625,\n              -2.46018118\n            ],\n            [\n              23.90625,\n              -2.81137119\n            ],\n            [\n              23.5546875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -3.16245553\n            ],\n            [\n              23.5546875,\n              -2.81137119\n            ],\n            [\n              23.90625,\n              -2.81137119\n            ],\n            [\n              23.90625,\n              -3.16245553\n            ],\n            [\n              23.5546875,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -3.51342105\n            ],\n            [\n              23.5546875,\n              -3.16245553\n            ],\n            [\n              23.90625,\n              -3.16245553\n            ],\n            [\n              23.90625,\n              -3.51342105\n            ],\n            [\n              23.5546875,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -3.86425462\n            ],\n            [\n              23.5546875,\n              -3.51342105\n            ],\n            [\n              23.90625,\n              -3.51342105\n            ],\n            [\n              23.90625,\n              -3.86425462\n            ],\n            [\n              23.5546875,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -4.21494314\n            ],\n            [\n              23.5546875,\n              -3.86425462\n            ],\n            [\n              23.90625,\n              -3.86425462\n            ],\n            [\n              23.90625,\n              -4.21494314\n            ],\n            [\n              23.5546875,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -4.56547355\n            ],\n            [\n              23.5546875,\n              -4.21494314\n            ],\n            [\n              23.90625,\n              -4.21494314\n            ],\n            [\n              23.90625,\n              -4.56547355\n            ],\n            [\n              23.5546875,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -4.9158328\n            ],\n            [\n              23.5546875,\n              -4.56547355\n            ],\n            [\n              23.90625,\n              -4.56547355\n            ],\n            [\n              23.90625,\n              -4.9158328\n            ],\n            [\n              23.5546875,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -5.26600788\n            ],\n            [\n              23.5546875,\n              -4.9158328\n            ],\n            [\n              23.90625,\n              -4.9158328\n            ],\n            [\n              23.90625,\n              -5.26600788\n            ],\n            [\n              23.5546875,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -5.61598582\n            ],\n            [\n              23.5546875,\n              -5.26600788\n            ],\n            [\n              23.90625,\n              -5.26600788\n            ],\n            [\n              23.90625,\n              -5.61598582\n            ],\n            [\n              23.5546875,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -5.96575367\n            ],\n            [\n              23.5546875,\n              -5.61598582\n            ],\n            [\n              23.90625,\n              -5.61598582\n            ],\n            [\n              23.90625,\n              -5.96575367\n            ],\n            [\n              23.5546875,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -6.31529854\n            ],\n            [\n              23.5546875,\n              -5.96575367\n            ],\n            [\n              23.90625,\n              -5.96575367\n            ],\n            [\n              23.90625,\n              -6.31529854\n            ],\n            [\n              23.5546875,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -6.66460756\n            ],\n            [\n              23.5546875,\n              -6.31529854\n            ],\n            [\n              23.90625,\n              -6.31529854\n            ],\n            [\n              23.90625,\n              -6.66460756\n            ],\n            [\n              23.5546875,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -7.01366793\n            ],\n            [\n              23.5546875,\n              -6.66460756\n            ],\n            [\n              23.90625,\n              -6.66460756\n            ],\n            [\n              23.90625,\n              -7.01366793\n            ],\n            [\n              23.5546875,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -7.36246687\n            ],\n            [\n              23.5546875,\n              -7.01366793\n            ],\n            [\n              23.90625,\n              -7.01366793\n            ],\n            [\n              23.90625,\n              -7.36246687\n            ],\n            [\n              23.5546875,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -7.71099166\n            ],\n            [\n              23.5546875,\n              -7.36246687\n            ],\n            [\n              23.90625,\n              -7.36246687\n            ],\n            [\n              23.90625,\n              -7.71099166\n            ],\n            [\n              23.5546875,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -8.05922963\n            ],\n            [\n              23.5546875,\n              -7.71099166\n            ],\n            [\n              23.90625,\n              -7.71099166\n            ],\n            [\n              23.90625,\n              -8.05922963\n            ],\n            [\n              23.5546875,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -8.40716816\n            ],\n            [\n              23.5546875,\n              -8.05922963\n            ],\n            [\n              23.90625,\n              -8.05922963\n            ],\n            [\n              23.90625,\n              -8.40716816\n            ],\n            [\n              23.5546875,\n              -8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -8.7547947\n            ],\n            [\n              23.5546875,\n              -8.40716816\n            ],\n            [\n              23.90625,\n              -8.40716816\n            ],\n            [\n              23.90625,\n              -8.7547947\n            ],\n            [\n              23.5546875,\n              -8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -9.10209674\n            ],\n            [\n              23.5546875,\n              -8.7547947\n            ],\n            [\n              23.90625,\n              -8.7547947\n            ],\n            [\n              23.90625,\n              -9.10209674\n            ],\n            [\n              23.5546875,\n              -9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -9.44906183\n            ],\n            [\n              23.5546875,\n              -9.10209674\n            ],\n            [\n              23.90625,\n              -9.10209674\n            ],\n            [\n              23.90625,\n              -9.44906183\n            ],\n            [\n              23.5546875,\n              -9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              -9.79567758\n            ],\n            [\n              23.5546875,\n              -9.44906183\n            ],\n            [\n              23.90625,\n              -9.44906183\n            ],\n            [\n              23.90625,\n              -9.79567758\n            ],\n            [\n              23.5546875,\n              -9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              0\n            ],\n            [\n              23.5546875,\n              0.35156029\n            ],\n            [\n              23.90625,\n              0.35156029\n            ],\n            [\n              23.90625,\n              0\n            ],\n            [\n              23.5546875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              0.35156029\n            ],\n            [\n              23.5546875,\n              0.70310735\n            ],\n            [\n              23.90625,\n              0.70310735\n            ],\n            [\n              23.90625,\n              0.35156029\n            ],\n            [\n              23.5546875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              0.70310735\n            ],\n            [\n              23.5546875,\n              1.05462794\n            ],\n            [\n              23.90625,\n              1.05462794\n            ],\n            [\n              23.90625,\n              0.70310735\n            ],\n            [\n              23.5546875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              1.05462794\n            ],\n            [\n              23.5546875,\n              1.40610884\n            ],\n            [\n              23.90625,\n              1.40610884\n            ],\n            [\n              23.90625,\n              1.05462794\n            ],\n            [\n              23.5546875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              1.40610884\n            ],\n            [\n              23.5546875,\n              1.75753681\n            ],\n            [\n              23.90625,\n              1.75753681\n            ],\n            [\n              23.90625,\n              1.40610884\n            ],\n            [\n              23.5546875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              1.75753681\n            ],\n            [\n              23.5546875,\n              2.10889866\n            ],\n            [\n              23.90625,\n              2.10889866\n            ],\n            [\n              23.90625,\n              1.75753681\n            ],\n            [\n              23.5546875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              2.10889866\n            ],\n            [\n              23.5546875,\n              2.46018118\n            ],\n            [\n              23.90625,\n              2.46018118\n            ],\n            [\n              23.90625,\n              2.10889866\n            ],\n            [\n              23.5546875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              2.46018118\n            ],\n            [\n              23.5546875,\n              2.81137119\n            ],\n            [\n              23.90625,\n              2.81137119\n            ],\n            [\n              23.90625,\n              2.46018118\n            ],\n            [\n              23.5546875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              2.81137119\n            ],\n            [\n              23.5546875,\n              3.16245553\n            ],\n            [\n              23.90625,\n              3.16245553\n            ],\n            [\n              23.90625,\n              2.81137119\n            ],\n            [\n              23.5546875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              3.16245553\n            ],\n            [\n              23.5546875,\n              3.51342105\n            ],\n            [\n              23.90625,\n              3.51342105\n            ],\n            [\n              23.90625,\n              3.16245553\n            ],\n            [\n              23.5546875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              3.51342105\n            ],\n            [\n              23.5546875,\n              3.86425462\n            ],\n            [\n              23.90625,\n              3.86425462\n            ],\n            [\n              23.90625,\n              3.51342105\n            ],\n            [\n              23.5546875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              3.86425462\n            ],\n            [\n              23.5546875,\n              4.21494314\n            ],\n            [\n              23.90625,\n              4.21494314\n            ],\n            [\n              23.90625,\n              3.86425462\n            ],\n            [\n              23.5546875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              4.21494314\n            ],\n            [\n              23.5546875,\n              4.56547355\n            ],\n            [\n              23.90625,\n              4.56547355\n            ],\n            [\n              23.90625,\n              4.21494314\n            ],\n            [\n              23.5546875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              4.56547355\n            ],\n            [\n              23.5546875,\n              4.9158328\n            ],\n            [\n              23.90625,\n              4.9158328\n            ],\n            [\n              23.90625,\n              4.56547355\n            ],\n            [\n              23.5546875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              4.9158328\n            ],\n            [\n              23.5546875,\n              5.26600788\n            ],\n            [\n              23.90625,\n              5.26600788\n            ],\n            [\n              23.90625,\n              4.9158328\n            ],\n            [\n              23.5546875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              5.26600788\n            ],\n            [\n              23.5546875,\n              5.61598582\n            ],\n            [\n              23.90625,\n              5.61598582\n            ],\n            [\n              23.90625,\n              5.26600788\n            ],\n            [\n              23.5546875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              5.61598582\n            ],\n            [\n              23.5546875,\n              5.96575367\n            ],\n            [\n              23.90625,\n              5.96575367\n            ],\n            [\n              23.90625,\n              5.61598582\n            ],\n            [\n              23.5546875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              5.96575367\n            ],\n            [\n              23.5546875,\n              6.31529854\n            ],\n            [\n              23.90625,\n              6.31529854\n            ],\n            [\n              23.90625,\n              5.96575367\n            ],\n            [\n              23.5546875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              6.31529854\n            ],\n            [\n              23.5546875,\n              6.66460756\n            ],\n            [\n              23.90625,\n              6.66460756\n            ],\n            [\n              23.90625,\n              6.31529854\n            ],\n            [\n              23.5546875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              6.66460756\n            ],\n            [\n              23.5546875,\n              7.01366793\n            ],\n            [\n              23.90625,\n              7.01366793\n            ],\n            [\n              23.90625,\n              6.66460756\n            ],\n            [\n              23.5546875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              7.01366793\n            ],\n            [\n              23.5546875,\n              7.36246687\n            ],\n            [\n              23.90625,\n              7.36246687\n            ],\n            [\n              23.90625,\n              7.01366793\n            ],\n            [\n              23.5546875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              7.36246687\n            ],\n            [\n              23.5546875,\n              7.71099166\n            ],\n            [\n              23.90625,\n              7.71099166\n            ],\n            [\n              23.90625,\n              7.36246687\n            ],\n            [\n              23.5546875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              7.71099166\n            ],\n            [\n              23.5546875,\n              8.05922963\n            ],\n            [\n              23.90625,\n              8.05922963\n            ],\n            [\n              23.90625,\n              7.71099166\n            ],\n            [\n              23.5546875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              8.05922963\n            ],\n            [\n              23.5546875,\n              8.40716816\n            ],\n            [\n              23.90625,\n              8.40716816\n            ],\n            [\n              23.90625,\n              8.05922963\n            ],\n            [\n              23.5546875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -0.35156029\n            ],\n            [\n              23.90625,\n              0\n            ],\n            [\n              24.2578125,\n              0\n            ],\n            [\n              24.2578125,\n              -0.35156029\n            ],\n            [\n              23.90625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -0.70310735\n            ],\n            [\n              23.90625,\n              -0.35156029\n            ],\n            [\n              24.2578125,\n              -0.35156029\n            ],\n            [\n              24.2578125,\n              -0.70310735\n            ],\n            [\n              23.90625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -1.05462794\n            ],\n            [\n              23.90625,\n              -0.70310735\n            ],\n            [\n              24.2578125,\n              -0.70310735\n            ],\n            [\n              24.2578125,\n              -1.05462794\n            ],\n            [\n              23.90625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -1.40610884\n            ],\n            [\n              23.90625,\n              -1.05462794\n            ],\n            [\n              24.2578125,\n              -1.05462794\n            ],\n            [\n              24.2578125,\n              -1.40610884\n            ],\n            [\n              23.90625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -1.75753681\n            ],\n            [\n              23.90625,\n              -1.40610884\n            ],\n            [\n              24.2578125,\n              -1.40610884\n            ],\n            [\n              24.2578125,\n              -1.75753681\n            ],\n            [\n              23.90625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -10.14193169\n            ],\n            [\n              23.90625,\n              -9.79567758\n            ],\n            [\n              24.2578125,\n              -9.79567758\n            ],\n            [\n              24.2578125,\n              -10.14193169\n            ],\n            [\n              23.90625,\n              -10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -10.48781188\n            ],\n            [\n              23.90625,\n              -10.14193169\n            ],\n            [\n              24.2578125,\n              -10.14193169\n            ],\n            [\n              24.2578125,\n              -10.48781188\n            ],\n            [\n              23.90625,\n              -10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -10.83330598\n            ],\n            [\n              23.90625,\n              -10.48781188\n            ],\n            [\n              24.2578125,\n              -10.48781188\n            ],\n            [\n              24.2578125,\n              -10.83330598\n            ],\n            [\n              23.90625,\n              -10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -11.17840187\n            ],\n            [\n              23.90625,\n              -10.83330598\n            ],\n            [\n              24.2578125,\n              -10.83330598\n            ],\n            [\n              24.2578125,\n              -11.17840187\n            ],\n            [\n              23.90625,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -11.52308751\n            ],\n            [\n              23.90625,\n              -11.17840187\n            ],\n            [\n              24.2578125,\n              -11.17840187\n            ],\n            [\n              24.2578125,\n              -11.52308751\n            ],\n            [\n              23.90625,\n              -11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -11.86735091\n            ],\n            [\n              23.90625,\n              -11.52308751\n            ],\n            [\n              24.2578125,\n              -11.52308751\n            ],\n            [\n              24.2578125,\n              -11.86735091\n            ],\n            [\n              23.90625,\n              -11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -2.10889866\n            ],\n            [\n              23.90625,\n              -1.75753681\n            ],\n            [\n              24.2578125,\n              -1.75753681\n            ],\n            [\n              24.2578125,\n              -2.10889866\n            ],\n            [\n              23.90625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -2.46018118\n            ],\n            [\n              23.90625,\n              -2.10889866\n            ],\n            [\n              24.2578125,\n              -2.10889866\n            ],\n            [\n              24.2578125,\n              -2.46018118\n            ],\n            [\n              23.90625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -2.81137119\n            ],\n            [\n              23.90625,\n              -2.46018118\n            ],\n            [\n              24.2578125,\n              -2.46018118\n            ],\n            [\n              24.2578125,\n              -2.81137119\n            ],\n            [\n              23.90625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -3.16245553\n            ],\n            [\n              23.90625,\n              -2.81137119\n            ],\n            [\n              24.2578125,\n              -2.81137119\n            ],\n            [\n              24.2578125,\n              -3.16245553\n            ],\n            [\n              23.90625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -3.51342105\n            ],\n            [\n              23.90625,\n              -3.16245553\n            ],\n            [\n              24.2578125,\n              -3.16245553\n            ],\n            [\n              24.2578125,\n              -3.51342105\n            ],\n            [\n              23.90625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -3.86425462\n            ],\n            [\n              23.90625,\n              -3.51342105\n            ],\n            [\n              24.2578125,\n              -3.51342105\n            ],\n            [\n              24.2578125,\n              -3.86425462\n            ],\n            [\n              23.90625,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -4.21494314\n            ],\n            [\n              23.90625,\n              -3.86425462\n            ],\n            [\n              24.2578125,\n              -3.86425462\n            ],\n            [\n              24.2578125,\n              -4.21494314\n            ],\n            [\n              23.90625,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -4.56547355\n            ],\n            [\n              23.90625,\n              -4.21494314\n            ],\n            [\n              24.2578125,\n              -4.21494314\n            ],\n            [\n              24.2578125,\n              -4.56547355\n            ],\n            [\n              23.90625,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -4.9158328\n            ],\n            [\n              23.90625,\n              -4.56547355\n            ],\n            [\n              24.2578125,\n              -4.56547355\n            ],\n            [\n              24.2578125,\n              -4.9158328\n            ],\n            [\n              23.90625,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -5.26600788\n            ],\n            [\n              23.90625,\n              -4.9158328\n            ],\n            [\n              24.2578125,\n              -4.9158328\n            ],\n            [\n              24.2578125,\n              -5.26600788\n            ],\n            [\n              23.90625,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -5.61598582\n            ],\n            [\n              23.90625,\n              -5.26600788\n            ],\n            [\n              24.2578125,\n              -5.26600788\n            ],\n            [\n              24.2578125,\n              -5.61598582\n            ],\n            [\n              23.90625,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -5.96575367\n            ],\n            [\n              23.90625,\n              -5.61598582\n            ],\n            [\n              24.2578125,\n              -5.61598582\n            ],\n            [\n              24.2578125,\n              -5.96575367\n            ],\n            [\n              23.90625,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -6.31529854\n            ],\n            [\n              23.90625,\n              -5.96575367\n            ],\n            [\n              24.2578125,\n              -5.96575367\n            ],\n            [\n              24.2578125,\n              -6.31529854\n            ],\n            [\n              23.90625,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -6.66460756\n            ],\n            [\n              23.90625,\n              -6.31529854\n            ],\n            [\n              24.2578125,\n              -6.31529854\n            ],\n            [\n              24.2578125,\n              -6.66460756\n            ],\n            [\n              23.90625,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -7.01366793\n            ],\n            [\n              23.90625,\n              -6.66460756\n            ],\n            [\n              24.2578125,\n              -6.66460756\n            ],\n            [\n              24.2578125,\n              -7.01366793\n            ],\n            [\n              23.90625,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -7.36246687\n            ],\n            [\n              23.90625,\n              -7.01366793\n            ],\n            [\n              24.2578125,\n              -7.01366793\n            ],\n            [\n              24.2578125,\n              -7.36246687\n            ],\n            [\n              23.90625,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -7.71099166\n            ],\n            [\n              23.90625,\n              -7.36246687\n            ],\n            [\n              24.2578125,\n              -7.36246687\n            ],\n            [\n              24.2578125,\n              -7.71099166\n            ],\n            [\n              23.90625,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -8.05922963\n            ],\n            [\n              23.90625,\n              -7.71099166\n            ],\n            [\n              24.2578125,\n              -7.71099166\n            ],\n            [\n              24.2578125,\n              -8.05922963\n            ],\n            [\n              23.90625,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -8.40716816\n            ],\n            [\n              23.90625,\n              -8.05922963\n            ],\n            [\n              24.2578125,\n              -8.05922963\n            ],\n            [\n              24.2578125,\n              -8.40716816\n            ],\n            [\n              23.90625,\n              -8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -8.7547947\n            ],\n            [\n              23.90625,\n              -8.40716816\n            ],\n            [\n              24.2578125,\n              -8.40716816\n            ],\n            [\n              24.2578125,\n              -8.7547947\n            ],\n            [\n              23.90625,\n              -8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -9.10209674\n            ],\n            [\n              23.90625,\n              -8.7547947\n            ],\n            [\n              24.2578125,\n              -8.7547947\n            ],\n            [\n              24.2578125,\n              -9.10209674\n            ],\n            [\n              23.90625,\n              -9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -9.44906183\n            ],\n            [\n              23.90625,\n              -9.10209674\n            ],\n            [\n              24.2578125,\n              -9.10209674\n            ],\n            [\n              24.2578125,\n              -9.44906183\n            ],\n            [\n              23.90625,\n              -9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              -9.79567758\n            ],\n            [\n              23.90625,\n              -9.44906183\n            ],\n            [\n              24.2578125,\n              -9.44906183\n            ],\n            [\n              24.2578125,\n              -9.79567758\n            ],\n            [\n              23.90625,\n              -9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              0\n            ],\n            [\n              23.90625,\n              0.35156029\n            ],\n            [\n              24.2578125,\n              0.35156029\n            ],\n            [\n              24.2578125,\n              0\n            ],\n            [\n              23.90625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              0.35156029\n            ],\n            [\n              23.90625,\n              0.70310735\n            ],\n            [\n              24.2578125,\n              0.70310735\n            ],\n            [\n              24.2578125,\n              0.35156029\n            ],\n            [\n              23.90625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              0.70310735\n            ],\n            [\n              23.90625,\n              1.05462794\n            ],\n            [\n              24.2578125,\n              1.05462794\n            ],\n            [\n              24.2578125,\n              0.70310735\n            ],\n            [\n              23.90625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              1.05462794\n            ],\n            [\n              23.90625,\n              1.40610884\n            ],\n            [\n              24.2578125,\n              1.40610884\n            ],\n            [\n              24.2578125,\n              1.05462794\n            ],\n            [\n              23.90625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              1.40610884\n            ],\n            [\n              23.90625,\n              1.75753681\n            ],\n            [\n              24.2578125,\n              1.75753681\n            ],\n            [\n              24.2578125,\n              1.40610884\n            ],\n            [\n              23.90625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              1.75753681\n            ],\n            [\n              23.90625,\n              2.10889866\n            ],\n            [\n              24.2578125,\n              2.10889866\n            ],\n            [\n              24.2578125,\n              1.75753681\n            ],\n            [\n              23.90625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              2.10889866\n            ],\n            [\n              23.90625,\n              2.46018118\n            ],\n            [\n              24.2578125,\n              2.46018118\n            ],\n            [\n              24.2578125,\n              2.10889866\n            ],\n            [\n              23.90625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              2.46018118\n            ],\n            [\n              23.90625,\n              2.81137119\n            ],\n            [\n              24.2578125,\n              2.81137119\n            ],\n            [\n              24.2578125,\n              2.46018118\n            ],\n            [\n              23.90625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              2.81137119\n            ],\n            [\n              23.90625,\n              3.16245553\n            ],\n            [\n              24.2578125,\n              3.16245553\n            ],\n            [\n              24.2578125,\n              2.81137119\n            ],\n            [\n              23.90625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              3.16245553\n            ],\n            [\n              23.90625,\n              3.51342105\n            ],\n            [\n              24.2578125,\n              3.51342105\n            ],\n            [\n              24.2578125,\n              3.16245553\n            ],\n            [\n              23.90625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              3.51342105\n            ],\n            [\n              23.90625,\n              3.86425462\n            ],\n            [\n              24.2578125,\n              3.86425462\n            ],\n            [\n              24.2578125,\n              3.51342105\n            ],\n            [\n              23.90625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              3.86425462\n            ],\n            [\n              23.90625,\n              4.21494314\n            ],\n            [\n              24.2578125,\n              4.21494314\n            ],\n            [\n              24.2578125,\n              3.86425462\n            ],\n            [\n              23.90625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              4.21494314\n            ],\n            [\n              23.90625,\n              4.56547355\n            ],\n            [\n              24.2578125,\n              4.56547355\n            ],\n            [\n              24.2578125,\n              4.21494314\n            ],\n            [\n              23.90625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              4.56547355\n            ],\n            [\n              23.90625,\n              4.9158328\n            ],\n            [\n              24.2578125,\n              4.9158328\n            ],\n            [\n              24.2578125,\n              4.56547355\n            ],\n            [\n              23.90625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              4.9158328\n            ],\n            [\n              23.90625,\n              5.26600788\n            ],\n            [\n              24.2578125,\n              5.26600788\n            ],\n            [\n              24.2578125,\n              4.9158328\n            ],\n            [\n              23.90625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              5.26600788\n            ],\n            [\n              23.90625,\n              5.61598582\n            ],\n            [\n              24.2578125,\n              5.61598582\n            ],\n            [\n              24.2578125,\n              5.26600788\n            ],\n            [\n              23.90625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              5.61598582\n            ],\n            [\n              23.90625,\n              5.96575367\n            ],\n            [\n              24.2578125,\n              5.96575367\n            ],\n            [\n              24.2578125,\n              5.61598582\n            ],\n            [\n              23.90625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              5.96575367\n            ],\n            [\n              23.90625,\n              6.31529854\n            ],\n            [\n              24.2578125,\n              6.31529854\n            ],\n            [\n              24.2578125,\n              5.96575367\n            ],\n            [\n              23.90625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              6.31529854\n            ],\n            [\n              23.90625,\n              6.66460756\n            ],\n            [\n              24.2578125,\n              6.66460756\n            ],\n            [\n              24.2578125,\n              6.31529854\n            ],\n            [\n              23.90625,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              6.66460756\n            ],\n            [\n              23.90625,\n              7.01366793\n            ],\n            [\n              24.2578125,\n              7.01366793\n            ],\n            [\n              24.2578125,\n              6.66460756\n            ],\n            [\n              23.90625,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              7.01366793\n            ],\n            [\n              23.90625,\n              7.36246687\n            ],\n            [\n              24.2578125,\n              7.36246687\n            ],\n            [\n              24.2578125,\n              7.01366793\n            ],\n            [\n              23.90625,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              7.36246687\n            ],\n            [\n              23.90625,\n              7.71099166\n            ],\n            [\n              24.2578125,\n              7.71099166\n            ],\n            [\n              24.2578125,\n              7.36246687\n            ],\n            [\n              23.90625,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              7.71099166\n            ],\n            [\n              23.90625,\n              8.05922963\n            ],\n            [\n              24.2578125,\n              8.05922963\n            ],\n            [\n              24.2578125,\n              7.71099166\n            ],\n            [\n              23.90625,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              8.05922963\n            ],\n            [\n              23.90625,\n              8.40716816\n            ],\n            [\n              24.2578125,\n              8.40716816\n            ],\n            [\n              24.2578125,\n              8.05922963\n            ],\n            [\n              23.90625,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              8.40716816\n            ],\n            [\n              23.90625,\n              8.7547947\n            ],\n            [\n              24.2578125,\n              8.7547947\n            ],\n            [\n              24.2578125,\n              8.40716816\n            ],\n            [\n              23.90625,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -0.35156029\n            ],\n            [\n              24.2578125,\n              0\n            ],\n            [\n              24.609375,\n              0\n            ],\n            [\n              24.609375,\n              -0.35156029\n            ],\n            [\n              24.2578125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -0.70310735\n            ],\n            [\n              24.2578125,\n              -0.35156029\n            ],\n            [\n              24.609375,\n              -0.35156029\n            ],\n            [\n              24.609375,\n              -0.70310735\n            ],\n            [\n              24.2578125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -1.05462794\n            ],\n            [\n              24.2578125,\n              -0.70310735\n            ],\n            [\n              24.609375,\n              -0.70310735\n            ],\n            [\n              24.609375,\n              -1.05462794\n            ],\n            [\n              24.2578125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -1.40610884\n            ],\n            [\n              24.2578125,\n              -1.05462794\n            ],\n            [\n              24.609375,\n              -1.05462794\n            ],\n            [\n              24.609375,\n              -1.40610884\n            ],\n            [\n              24.2578125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -1.75753681\n            ],\n            [\n              24.2578125,\n              -1.40610884\n            ],\n            [\n              24.609375,\n              -1.40610884\n            ],\n            [\n              24.609375,\n              -1.75753681\n            ],\n            [\n              24.2578125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -10.14193169\n            ],\n            [\n              24.2578125,\n              -9.79567758\n            ],\n            [\n              24.609375,\n              -9.79567758\n            ],\n            [\n              24.609375,\n              -10.14193169\n            ],\n            [\n              24.2578125,\n              -10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -10.48781188\n            ],\n            [\n              24.2578125,\n              -10.14193169\n            ],\n            [\n              24.609375,\n              -10.14193169\n            ],\n            [\n              24.609375,\n              -10.48781188\n            ],\n            [\n              24.2578125,\n              -10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -10.83330598\n            ],\n            [\n              24.2578125,\n              -10.48781188\n            ],\n            [\n              24.609375,\n              -10.48781188\n            ],\n            [\n              24.609375,\n              -10.83330598\n            ],\n            [\n              24.2578125,\n              -10.83330598\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -11.17840187\n            ],\n            [\n              24.2578125,\n              -10.83330598\n            ],\n            [\n              24.609375,\n              -10.83330598\n            ],\n            [\n              24.609375,\n              -11.17840187\n            ],\n            [\n              24.2578125,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -11.52308751\n            ],\n            [\n              24.2578125,\n              -11.17840187\n            ],\n            [\n              24.609375,\n              -11.17840187\n            ],\n            [\n              24.609375,\n              -11.52308751\n            ],\n            [\n              24.2578125,\n              -11.52308751\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -11.86735091\n            ],\n            [\n              24.2578125,\n              -11.52308751\n            ],\n            [\n              24.609375,\n              -11.52308751\n            ],\n            [\n              24.609375,\n              -11.86735091\n            ],\n            [\n              24.2578125,\n              -11.86735091\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -2.10889866\n            ],\n            [\n              24.2578125,\n              -1.75753681\n            ],\n            [\n              24.609375,\n              -1.75753681\n            ],\n            [\n              24.609375,\n              -2.10889866\n            ],\n            [\n              24.2578125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -2.46018118\n            ],\n            [\n              24.2578125,\n              -2.10889866\n            ],\n            [\n              24.609375,\n              -2.10889866\n            ],\n            [\n              24.609375,\n              -2.46018118\n            ],\n            [\n              24.2578125,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -2.81137119\n            ],\n            [\n              24.2578125,\n              -2.46018118\n            ],\n            [\n              24.609375,\n              -2.46018118\n            ],\n            [\n              24.609375,\n              -2.81137119\n            ],\n            [\n              24.2578125,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -3.16245553\n            ],\n            [\n              24.2578125,\n              -2.81137119\n            ],\n            [\n              24.609375,\n              -2.81137119\n            ],\n            [\n              24.609375,\n              -3.16245553\n            ],\n            [\n              24.2578125,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -3.51342105\n            ],\n            [\n              24.2578125,\n              -3.16245553\n            ],\n            [\n              24.609375,\n              -3.16245553\n            ],\n            [\n              24.609375,\n              -3.51342105\n            ],\n            [\n              24.2578125,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -3.86425462\n            ],\n            [\n              24.2578125,\n              -3.51342105\n            ],\n            [\n              24.609375,\n              -3.51342105\n            ],\n            [\n              24.609375,\n              -3.86425462\n            ],\n            [\n              24.2578125,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -4.21494314\n            ],\n            [\n              24.2578125,\n              -3.86425462\n            ],\n            [\n              24.609375,\n              -3.86425462\n            ],\n            [\n              24.609375,\n              -4.21494314\n            ],\n            [\n              24.2578125,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -4.56547355\n            ],\n            [\n              24.2578125,\n              -4.21494314\n            ],\n            [\n              24.609375,\n              -4.21494314\n            ],\n            [\n              24.609375,\n              -4.56547355\n            ],\n            [\n              24.2578125,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -4.9158328\n            ],\n            [\n              24.2578125,\n              -4.56547355\n            ],\n            [\n              24.609375,\n              -4.56547355\n            ],\n            [\n              24.609375,\n              -4.9158328\n            ],\n            [\n              24.2578125,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -5.26600788\n            ],\n            [\n              24.2578125,\n              -4.9158328\n            ],\n            [\n              24.609375,\n              -4.9158328\n            ],\n            [\n              24.609375,\n              -5.26600788\n            ],\n            [\n              24.2578125,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -5.61598582\n            ],\n            [\n              24.2578125,\n              -5.26600788\n            ],\n            [\n              24.609375,\n              -5.26600788\n            ],\n            [\n              24.609375,\n              -5.61598582\n            ],\n            [\n              24.2578125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -5.96575367\n            ],\n            [\n              24.2578125,\n              -5.61598582\n            ],\n            [\n              24.609375,\n              -5.61598582\n            ],\n            [\n              24.609375,\n              -5.96575367\n            ],\n            [\n              24.2578125,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -6.31529854\n            ],\n            [\n              24.2578125,\n              -5.96575367\n            ],\n            [\n              24.609375,\n              -5.96575367\n            ],\n            [\n              24.609375,\n              -6.31529854\n            ],\n            [\n              24.2578125,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -6.66460756\n            ],\n            [\n              24.2578125,\n              -6.31529854\n            ],\n            [\n              24.609375,\n              -6.31529854\n            ],\n            [\n              24.609375,\n              -6.66460756\n            ],\n            [\n              24.2578125,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -7.01366793\n            ],\n            [\n              24.2578125,\n              -6.66460756\n            ],\n            [\n              24.609375,\n              -6.66460756\n            ],\n            [\n              24.609375,\n              -7.01366793\n            ],\n            [\n              24.2578125,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -7.36246687\n            ],\n            [\n              24.2578125,\n              -7.01366793\n            ],\n            [\n              24.609375,\n              -7.01366793\n            ],\n            [\n              24.609375,\n              -7.36246687\n            ],\n            [\n              24.2578125,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -7.71099166\n            ],\n            [\n              24.2578125,\n              -7.36246687\n            ],\n            [\n              24.609375,\n              -7.36246687\n            ],\n            [\n              24.609375,\n              -7.71099166\n            ],\n            [\n              24.2578125,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -8.05922963\n            ],\n            [\n              24.2578125,\n              -7.71099166\n            ],\n            [\n              24.609375,\n              -7.71099166\n            ],\n            [\n              24.609375,\n              -8.05922963\n            ],\n            [\n              24.2578125,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -8.40716816\n            ],\n            [\n              24.2578125,\n              -8.05922963\n            ],\n            [\n              24.609375,\n              -8.05922963\n            ],\n            [\n              24.609375,\n              -8.40716816\n            ],\n            [\n              24.2578125,\n              -8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -8.7547947\n            ],\n            [\n              24.2578125,\n              -8.40716816\n            ],\n            [\n              24.609375,\n              -8.40716816\n            ],\n            [\n              24.609375,\n              -8.7547947\n            ],\n            [\n              24.2578125,\n              -8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -9.10209674\n            ],\n            [\n              24.2578125,\n              -8.7547947\n            ],\n            [\n              24.609375,\n              -8.7547947\n            ],\n            [\n              24.609375,\n              -9.10209674\n            ],\n            [\n              24.2578125,\n              -9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -9.44906183\n            ],\n            [\n              24.2578125,\n              -9.10209674\n            ],\n            [\n              24.609375,\n              -9.10209674\n            ],\n            [\n              24.609375,\n              -9.44906183\n            ],\n            [\n              24.2578125,\n              -9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              -9.79567758\n            ],\n            [\n              24.2578125,\n              -9.44906183\n            ],\n            [\n              24.609375,\n              -9.44906183\n            ],\n            [\n              24.609375,\n              -9.79567758\n            ],\n            [\n              24.2578125,\n              -9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              0\n            ],\n            [\n              24.2578125,\n              0.35156029\n            ],\n            [\n              24.609375,\n              0.35156029\n            ],\n            [\n              24.609375,\n              0\n            ],\n            [\n              24.2578125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              0.35156029\n            ],\n            [\n              24.2578125,\n              0.70310735\n            ],\n            [\n              24.609375,\n              0.70310735\n            ],\n            [\n              24.609375,\n              0.35156029\n            ],\n            [\n              24.2578125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              0.70310735\n            ],\n            [\n              24.2578125,\n              1.05462794\n            ],\n            [\n              24.609375,\n              1.05462794\n            ],\n            [\n              24.609375,\n              0.70310735\n            ],\n            [\n              24.2578125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              1.05462794\n            ],\n            [\n              24.2578125,\n              1.40610884\n            ],\n            [\n              24.609375,\n              1.40610884\n            ],\n            [\n              24.609375,\n              1.05462794\n            ],\n            [\n              24.2578125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              1.40610884\n            ],\n            [\n              24.2578125,\n              1.75753681\n            ],\n            [\n              24.609375,\n              1.75753681\n            ],\n            [\n              24.609375,\n              1.40610884\n            ],\n            [\n              24.2578125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              1.75753681\n            ],\n            [\n              24.2578125,\n              2.10889866\n            ],\n            [\n              24.609375,\n              2.10889866\n            ],\n            [\n              24.609375,\n              1.75753681\n            ],\n            [\n              24.2578125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              2.10889866\n            ],\n            [\n              24.2578125,\n              2.46018118\n            ],\n            [\n              24.609375,\n              2.46018118\n            ],\n            [\n              24.609375,\n              2.10889866\n            ],\n            [\n              24.2578125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              2.46018118\n            ],\n            [\n              24.2578125,\n              2.81137119\n            ],\n            [\n              24.609375,\n              2.81137119\n            ],\n            [\n              24.609375,\n              2.46018118\n            ],\n            [\n              24.2578125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              2.81137119\n            ],\n            [\n              24.2578125,\n              3.16245553\n            ],\n            [\n              24.609375,\n              3.16245553\n            ],\n            [\n              24.609375,\n              2.81137119\n            ],\n            [\n              24.2578125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              3.16245553\n            ],\n            [\n              24.2578125,\n              3.51342105\n            ],\n            [\n              24.609375,\n              3.51342105\n            ],\n            [\n              24.609375,\n              3.16245553\n            ],\n            [\n              24.2578125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              3.51342105\n            ],\n            [\n              24.2578125,\n              3.86425462\n            ],\n            [\n              24.609375,\n              3.86425462\n            ],\n            [\n              24.609375,\n              3.51342105\n            ],\n            [\n              24.2578125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              3.86425462\n            ],\n            [\n              24.2578125,\n              4.21494314\n            ],\n            [\n              24.609375,\n              4.21494314\n            ],\n            [\n              24.609375,\n              3.86425462\n            ],\n            [\n              24.2578125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              4.21494314\n            ],\n            [\n              24.2578125,\n              4.56547355\n            ],\n            [\n              24.609375,\n              4.56547355\n            ],\n            [\n              24.609375,\n              4.21494314\n            ],\n            [\n              24.2578125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              4.56547355\n            ],\n            [\n              24.2578125,\n              4.9158328\n            ],\n            [\n              24.609375,\n              4.9158328\n            ],\n            [\n              24.609375,\n              4.56547355\n            ],\n            [\n              24.2578125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              4.9158328\n            ],\n            [\n              24.2578125,\n              5.26600788\n            ],\n            [\n              24.609375,\n              5.26600788\n            ],\n            [\n              24.609375,\n              4.9158328\n            ],\n            [\n              24.2578125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              5.26600788\n            ],\n            [\n              24.2578125,\n              5.61598582\n            ],\n            [\n              24.609375,\n              5.61598582\n            ],\n            [\n              24.609375,\n              5.26600788\n            ],\n            [\n              24.2578125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              5.61598582\n            ],\n            [\n              24.2578125,\n              5.96575367\n            ],\n            [\n              24.609375,\n              5.96575367\n            ],\n            [\n              24.609375,\n              5.61598582\n            ],\n            [\n              24.2578125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              5.96575367\n            ],\n            [\n              24.2578125,\n              6.31529854\n            ],\n            [\n              24.609375,\n              6.31529854\n            ],\n            [\n              24.609375,\n              5.96575367\n            ],\n            [\n              24.2578125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              6.31529854\n            ],\n            [\n              24.2578125,\n              6.66460756\n            ],\n            [\n              24.609375,\n              6.66460756\n            ],\n            [\n              24.609375,\n              6.31529854\n            ],\n            [\n              24.2578125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              6.66460756\n            ],\n            [\n              24.2578125,\n              7.01366793\n            ],\n            [\n              24.609375,\n              7.01366793\n            ],\n            [\n              24.609375,\n              6.66460756\n            ],\n            [\n              24.2578125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              7.01366793\n            ],\n            [\n              24.2578125,\n              7.36246687\n            ],\n            [\n              24.609375,\n              7.36246687\n            ],\n            [\n              24.609375,\n              7.01366793\n            ],\n            [\n              24.2578125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              7.36246687\n            ],\n            [\n              24.2578125,\n              7.71099166\n            ],\n            [\n              24.609375,\n              7.71099166\n            ],\n            [\n              24.609375,\n              7.36246687\n            ],\n            [\n              24.2578125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              7.71099166\n            ],\n            [\n              24.2578125,\n              8.05922963\n            ],\n            [\n              24.609375,\n              8.05922963\n            ],\n            [\n              24.609375,\n              7.71099166\n            ],\n            [\n              24.2578125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              8.05922963\n            ],\n            [\n              24.2578125,\n              8.40716816\n            ],\n            [\n              24.609375,\n              8.40716816\n            ],\n            [\n              24.609375,\n              8.05922963\n            ],\n            [\n              24.2578125,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              8.40716816\n            ],\n            [\n              24.2578125,\n              8.7547947\n            ],\n            [\n              24.609375,\n              8.7547947\n            ],\n            [\n              24.609375,\n              8.40716816\n            ],\n            [\n              24.2578125,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              8.7547947\n            ],\n            [\n              24.2578125,\n              9.10209674\n            ],\n            [\n              24.609375,\n              9.10209674\n            ],\n            [\n              24.609375,\n              8.7547947\n            ],\n            [\n              24.2578125,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -0.35156029\n            ],\n            [\n              24.609375,\n              0\n            ],\n            [\n              24.9609375,\n              0\n            ],\n            [\n              24.9609375,\n              -0.35156029\n            ],\n            [\n              24.609375,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -0.70310735\n            ],\n            [\n              24.609375,\n              -0.35156029\n            ],\n            [\n              24.9609375,\n              -0.35156029\n            ],\n            [\n              24.9609375,\n              -0.70310735\n            ],\n            [\n              24.609375,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -1.05462794\n            ],\n            [\n              24.609375,\n              -0.70310735\n            ],\n            [\n              24.9609375,\n              -0.70310735\n            ],\n            [\n              24.9609375,\n              -1.05462794\n            ],\n            [\n              24.609375,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -1.40610884\n            ],\n            [\n              24.609375,\n              -1.05462794\n            ],\n            [\n              24.9609375,\n              -1.05462794\n            ],\n            [\n              24.9609375,\n              -1.40610884\n            ],\n            [\n              24.609375,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -1.75753681\n            ],\n            [\n              24.609375,\n              -1.40610884\n            ],\n            [\n              24.9609375,\n              -1.40610884\n            ],\n            [\n              24.9609375,\n              -1.75753681\n            ],\n            [\n              24.609375,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -10.14193169\n            ],\n            [\n              24.609375,\n              -9.79567758\n            ],\n            [\n              24.9609375,\n              -9.79567758\n            ],\n            [\n              24.9609375,\n              -10.14193169\n            ],\n            [\n              24.609375,\n              -10.14193169\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -10.48781188\n            ],\n            [\n              24.609375,\n              -10.14193169\n            ],\n            [\n              24.9609375,\n              -10.14193169\n            ],\n            [\n              24.9609375,\n              -10.48781188\n            ],\n            [\n              24.609375,\n              -10.48781188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -2.10889866\n            ],\n            [\n              24.609375,\n              -1.75753681\n            ],\n            [\n              24.9609375,\n              -1.75753681\n            ],\n            [\n              24.9609375,\n              -2.10889866\n            ],\n            [\n              24.609375,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -2.46018118\n            ],\n            [\n              24.609375,\n              -2.10889866\n            ],\n            [\n              24.9609375,\n              -2.10889866\n            ],\n            [\n              24.9609375,\n              -2.46018118\n            ],\n            [\n              24.609375,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -2.81137119\n            ],\n            [\n              24.609375,\n              -2.46018118\n            ],\n            [\n              24.9609375,\n              -2.46018118\n            ],\n            [\n              24.9609375,\n              -2.81137119\n            ],\n            [\n              24.609375,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -3.16245553\n            ],\n            [\n              24.609375,\n              -2.81137119\n            ],\n            [\n              24.9609375,\n              -2.81137119\n            ],\n            [\n              24.9609375,\n              -3.16245553\n            ],\n            [\n              24.609375,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -3.51342105\n            ],\n            [\n              24.609375,\n              -3.16245553\n            ],\n            [\n              24.9609375,\n              -3.16245553\n            ],\n            [\n              24.9609375,\n              -3.51342105\n            ],\n            [\n              24.609375,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -3.86425462\n            ],\n            [\n              24.609375,\n              -3.51342105\n            ],\n            [\n              24.9609375,\n              -3.51342105\n            ],\n            [\n              24.9609375,\n              -3.86425462\n            ],\n            [\n              24.609375,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -4.21494314\n            ],\n            [\n              24.609375,\n              -3.86425462\n            ],\n            [\n              24.9609375,\n              -3.86425462\n            ],\n            [\n              24.9609375,\n              -4.21494314\n            ],\n            [\n              24.609375,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -4.56547355\n            ],\n            [\n              24.609375,\n              -4.21494314\n            ],\n            [\n              24.9609375,\n              -4.21494314\n            ],\n            [\n              24.9609375,\n              -4.56547355\n            ],\n            [\n              24.609375,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -4.9158328\n            ],\n            [\n              24.609375,\n              -4.56547355\n            ],\n            [\n              24.9609375,\n              -4.56547355\n            ],\n            [\n              24.9609375,\n              -4.9158328\n            ],\n            [\n              24.609375,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -5.26600788\n            ],\n            [\n              24.609375,\n              -4.9158328\n            ],\n            [\n              24.9609375,\n              -4.9158328\n            ],\n            [\n              24.9609375,\n              -5.26600788\n            ],\n            [\n              24.609375,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -5.61598582\n            ],\n            [\n              24.609375,\n              -5.26600788\n            ],\n            [\n              24.9609375,\n              -5.26600788\n            ],\n            [\n              24.9609375,\n              -5.61598582\n            ],\n            [\n              24.609375,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -5.96575367\n            ],\n            [\n              24.609375,\n              -5.61598582\n            ],\n            [\n              24.9609375,\n              -5.61598582\n            ],\n            [\n              24.9609375,\n              -5.96575367\n            ],\n            [\n              24.609375,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -6.31529854\n            ],\n            [\n              24.609375,\n              -5.96575367\n            ],\n            [\n              24.9609375,\n              -5.96575367\n            ],\n            [\n              24.9609375,\n              -6.31529854\n            ],\n            [\n              24.609375,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -6.66460756\n            ],\n            [\n              24.609375,\n              -6.31529854\n            ],\n            [\n              24.9609375,\n              -6.31529854\n            ],\n            [\n              24.9609375,\n              -6.66460756\n            ],\n            [\n              24.609375,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -7.01366793\n            ],\n            [\n              24.609375,\n              -6.66460756\n            ],\n            [\n              24.9609375,\n              -6.66460756\n            ],\n            [\n              24.9609375,\n              -7.01366793\n            ],\n            [\n              24.609375,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -7.36246687\n            ],\n            [\n              24.609375,\n              -7.01366793\n            ],\n            [\n              24.9609375,\n              -7.01366793\n            ],\n            [\n              24.9609375,\n              -7.36246687\n            ],\n            [\n              24.609375,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -7.71099166\n            ],\n            [\n              24.609375,\n              -7.36246687\n            ],\n            [\n              24.9609375,\n              -7.36246687\n            ],\n            [\n              24.9609375,\n              -7.71099166\n            ],\n            [\n              24.609375,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -8.05922963\n            ],\n            [\n              24.609375,\n              -7.71099166\n            ],\n            [\n              24.9609375,\n              -7.71099166\n            ],\n            [\n              24.9609375,\n              -8.05922963\n            ],\n            [\n              24.609375,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -8.40716816\n            ],\n            [\n              24.609375,\n              -8.05922963\n            ],\n            [\n              24.9609375,\n              -8.05922963\n            ],\n            [\n              24.9609375,\n              -8.40716816\n            ],\n            [\n              24.609375,\n              -8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -8.7547947\n            ],\n            [\n              24.609375,\n              -8.40716816\n            ],\n            [\n              24.9609375,\n              -8.40716816\n            ],\n            [\n              24.9609375,\n              -8.7547947\n            ],\n            [\n              24.609375,\n              -8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -9.10209674\n            ],\n            [\n              24.609375,\n              -8.7547947\n            ],\n            [\n              24.9609375,\n              -8.7547947\n            ],\n            [\n              24.9609375,\n              -9.10209674\n            ],\n            [\n              24.609375,\n              -9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -9.44906183\n            ],\n            [\n              24.609375,\n              -9.10209674\n            ],\n            [\n              24.9609375,\n              -9.10209674\n            ],\n            [\n              24.9609375,\n              -9.44906183\n            ],\n            [\n              24.609375,\n              -9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              -9.79567758\n            ],\n            [\n              24.609375,\n              -9.44906183\n            ],\n            [\n              24.9609375,\n              -9.44906183\n            ],\n            [\n              24.9609375,\n              -9.79567758\n            ],\n            [\n              24.609375,\n              -9.79567758\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              0\n            ],\n            [\n              24.609375,\n              0.35156029\n            ],\n            [\n              24.9609375,\n              0.35156029\n            ],\n            [\n              24.9609375,\n              0\n            ],\n            [\n              24.609375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              0.35156029\n            ],\n            [\n              24.609375,\n              0.70310735\n            ],\n            [\n              24.9609375,\n              0.70310735\n            ],\n            [\n              24.9609375,\n              0.35156029\n            ],\n            [\n              24.609375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              0.70310735\n            ],\n            [\n              24.609375,\n              1.05462794\n            ],\n            [\n              24.9609375,\n              1.05462794\n            ],\n            [\n              24.9609375,\n              0.70310735\n            ],\n            [\n              24.609375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              1.05462794\n            ],\n            [\n              24.609375,\n              1.40610884\n            ],\n            [\n              24.9609375,\n              1.40610884\n            ],\n            [\n              24.9609375,\n              1.05462794\n            ],\n            [\n              24.609375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              1.40610884\n            ],\n            [\n              24.609375,\n              1.75753681\n            ],\n            [\n              24.9609375,\n              1.75753681\n            ],\n            [\n              24.9609375,\n              1.40610884\n            ],\n            [\n              24.609375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              1.75753681\n            ],\n            [\n              24.609375,\n              2.10889866\n            ],\n            [\n              24.9609375,\n              2.10889866\n            ],\n            [\n              24.9609375,\n              1.75753681\n            ],\n            [\n              24.609375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              2.10889866\n            ],\n            [\n              24.609375,\n              2.46018118\n            ],\n            [\n              24.9609375,\n              2.46018118\n            ],\n            [\n              24.9609375,\n              2.10889866\n            ],\n            [\n              24.609375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              2.46018118\n            ],\n            [\n              24.609375,\n              2.81137119\n            ],\n            [\n              24.9609375,\n              2.81137119\n            ],\n            [\n              24.9609375,\n              2.46018118\n            ],\n            [\n              24.609375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              2.81137119\n            ],\n            [\n              24.609375,\n              3.16245553\n            ],\n            [\n              24.9609375,\n              3.16245553\n            ],\n            [\n              24.9609375,\n              2.81137119\n            ],\n            [\n              24.609375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              3.16245553\n            ],\n            [\n              24.609375,\n              3.51342105\n            ],\n            [\n              24.9609375,\n              3.51342105\n            ],\n            [\n              24.9609375,\n              3.16245553\n            ],\n            [\n              24.609375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              3.51342105\n            ],\n            [\n              24.609375,\n              3.86425462\n            ],\n            [\n              24.9609375,\n              3.86425462\n            ],\n            [\n              24.9609375,\n              3.51342105\n            ],\n            [\n              24.609375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              3.86425462\n            ],\n            [\n              24.609375,\n              4.21494314\n            ],\n            [\n              24.9609375,\n              4.21494314\n            ],\n            [\n              24.9609375,\n              3.86425462\n            ],\n            [\n              24.609375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              4.21494314\n            ],\n            [\n              24.609375,\n              4.56547355\n            ],\n            [\n              24.9609375,\n              4.56547355\n            ],\n            [\n              24.9609375,\n              4.21494314\n            ],\n            [\n              24.609375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              4.56547355\n            ],\n            [\n              24.609375,\n              4.9158328\n            ],\n            [\n              24.9609375,\n              4.9158328\n            ],\n            [\n              24.9609375,\n              4.56547355\n            ],\n            [\n              24.609375,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              4.9158328\n            ],\n            [\n              24.609375,\n              5.26600788\n            ],\n            [\n              24.9609375,\n              5.26600788\n            ],\n            [\n              24.9609375,\n              4.9158328\n            ],\n            [\n              24.609375,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              5.26600788\n            ],\n            [\n              24.609375,\n              5.61598582\n            ],\n            [\n              24.9609375,\n              5.61598582\n            ],\n            [\n              24.9609375,\n              5.26600788\n            ],\n            [\n              24.609375,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              5.61598582\n            ],\n            [\n              24.609375,\n              5.96575367\n            ],\n            [\n              24.9609375,\n              5.96575367\n            ],\n            [\n              24.9609375,\n              5.61598582\n            ],\n            [\n              24.609375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              5.96575367\n            ],\n            [\n              24.609375,\n              6.31529854\n            ],\n            [\n              24.9609375,\n              6.31529854\n            ],\n            [\n              24.9609375,\n              5.96575367\n            ],\n            [\n              24.609375,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              6.31529854\n            ],\n            [\n              24.609375,\n              6.66460756\n            ],\n            [\n              24.9609375,\n              6.66460756\n            ],\n            [\n              24.9609375,\n              6.31529854\n            ],\n            [\n              24.609375,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              6.66460756\n            ],\n            [\n              24.609375,\n              7.01366793\n            ],\n            [\n              24.9609375,\n              7.01366793\n            ],\n            [\n              24.9609375,\n              6.66460756\n            ],\n            [\n              24.609375,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              7.01366793\n            ],\n            [\n              24.609375,\n              7.36246687\n            ],\n            [\n              24.9609375,\n              7.36246687\n            ],\n            [\n              24.9609375,\n              7.01366793\n            ],\n            [\n              24.609375,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              7.36246687\n            ],\n            [\n              24.609375,\n              7.71099166\n            ],\n            [\n              24.9609375,\n              7.71099166\n            ],\n            [\n              24.9609375,\n              7.36246687\n            ],\n            [\n              24.609375,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              7.71099166\n            ],\n            [\n              24.609375,\n              8.05922963\n            ],\n            [\n              24.9609375,\n              8.05922963\n            ],\n            [\n              24.9609375,\n              7.71099166\n            ],\n            [\n              24.609375,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              8.05922963\n            ],\n            [\n              24.609375,\n              8.40716816\n            ],\n            [\n              24.9609375,\n              8.40716816\n            ],\n            [\n              24.9609375,\n              8.05922963\n            ],\n            [\n              24.609375,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              8.40716816\n            ],\n            [\n              24.609375,\n              8.7547947\n            ],\n            [\n              24.9609375,\n              8.7547947\n            ],\n            [\n              24.9609375,\n              8.40716816\n            ],\n            [\n              24.609375,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              8.7547947\n            ],\n            [\n              24.609375,\n              9.10209674\n            ],\n            [\n              24.9609375,\n              9.10209674\n            ],\n            [\n              24.9609375,\n              8.7547947\n            ],\n            [\n              24.609375,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.609375,\n              9.10209674\n            ],\n            [\n              24.609375,\n              9.44906183\n            ],\n            [\n              24.9609375,\n              9.44906183\n            ],\n            [\n              24.9609375,\n              9.10209674\n            ],\n            [\n              24.609375,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -0.35156029\n            ],\n            [\n              24.9609375,\n              0\n            ],\n            [\n              25.3125,\n              0\n            ],\n            [\n              25.3125,\n              -0.35156029\n            ],\n            [\n              24.9609375,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -0.70310735\n            ],\n            [\n              24.9609375,\n              -0.35156029\n            ],\n            [\n              25.3125,\n              -0.35156029\n            ],\n            [\n              25.3125,\n              -0.70310735\n            ],\n            [\n              24.9609375,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -1.05462794\n            ],\n            [\n              24.9609375,\n              -0.70310735\n            ],\n            [\n              25.3125,\n              -0.70310735\n            ],\n            [\n              25.3125,\n              -1.05462794\n            ],\n            [\n              24.9609375,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -1.40610884\n            ],\n            [\n              24.9609375,\n              -1.05462794\n            ],\n            [\n              25.3125,\n              -1.05462794\n            ],\n            [\n              25.3125,\n              -1.40610884\n            ],\n            [\n              24.9609375,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -1.75753681\n            ],\n            [\n              24.9609375,\n              -1.40610884\n            ],\n            [\n              25.3125,\n              -1.40610884\n            ],\n            [\n              25.3125,\n              -1.75753681\n            ],\n            [\n              24.9609375,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -2.10889866\n            ],\n            [\n              24.9609375,\n              -1.75753681\n            ],\n            [\n              25.3125,\n              -1.75753681\n            ],\n            [\n              25.3125,\n              -2.10889866\n            ],\n            [\n              24.9609375,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -2.46018118\n            ],\n            [\n              24.9609375,\n              -2.10889866\n            ],\n            [\n              25.3125,\n              -2.10889866\n            ],\n            [\n              25.3125,\n              -2.46018118\n            ],\n            [\n              24.9609375,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -2.81137119\n            ],\n            [\n              24.9609375,\n              -2.46018118\n            ],\n            [\n              25.3125,\n              -2.46018118\n            ],\n            [\n              25.3125,\n              -2.81137119\n            ],\n            [\n              24.9609375,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -3.16245553\n            ],\n            [\n              24.9609375,\n              -2.81137119\n            ],\n            [\n              25.3125,\n              -2.81137119\n            ],\n            [\n              25.3125,\n              -3.16245553\n            ],\n            [\n              24.9609375,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -3.51342105\n            ],\n            [\n              24.9609375,\n              -3.16245553\n            ],\n            [\n              25.3125,\n              -3.16245553\n            ],\n            [\n              25.3125,\n              -3.51342105\n            ],\n            [\n              24.9609375,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -3.86425462\n            ],\n            [\n              24.9609375,\n              -3.51342105\n            ],\n            [\n              25.3125,\n              -3.51342105\n            ],\n            [\n              25.3125,\n              -3.86425462\n            ],\n            [\n              24.9609375,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -4.21494314\n            ],\n            [\n              24.9609375,\n              -3.86425462\n            ],\n            [\n              25.3125,\n              -3.86425462\n            ],\n            [\n              25.3125,\n              -4.21494314\n            ],\n            [\n              24.9609375,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -4.56547355\n            ],\n            [\n              24.9609375,\n              -4.21494314\n            ],\n            [\n              25.3125,\n              -4.21494314\n            ],\n            [\n              25.3125,\n              -4.56547355\n            ],\n            [\n              24.9609375,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -4.9158328\n            ],\n            [\n              24.9609375,\n              -4.56547355\n            ],\n            [\n              25.3125,\n              -4.56547355\n            ],\n            [\n              25.3125,\n              -4.9158328\n            ],\n            [\n              24.9609375,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -5.26600788\n            ],\n            [\n              24.9609375,\n              -4.9158328\n            ],\n            [\n              25.3125,\n              -4.9158328\n            ],\n            [\n              25.3125,\n              -5.26600788\n            ],\n            [\n              24.9609375,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -5.61598582\n            ],\n            [\n              24.9609375,\n              -5.26600788\n            ],\n            [\n              25.3125,\n              -5.26600788\n            ],\n            [\n              25.3125,\n              -5.61598582\n            ],\n            [\n              24.9609375,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -5.96575367\n            ],\n            [\n              24.9609375,\n              -5.61598582\n            ],\n            [\n              25.3125,\n              -5.61598582\n            ],\n            [\n              25.3125,\n              -5.96575367\n            ],\n            [\n              24.9609375,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -6.31529854\n            ],\n            [\n              24.9609375,\n              -5.96575367\n            ],\n            [\n              25.3125,\n              -5.96575367\n            ],\n            [\n              25.3125,\n              -6.31529854\n            ],\n            [\n              24.9609375,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -6.66460756\n            ],\n            [\n              24.9609375,\n              -6.31529854\n            ],\n            [\n              25.3125,\n              -6.31529854\n            ],\n            [\n              25.3125,\n              -6.66460756\n            ],\n            [\n              24.9609375,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -7.01366793\n            ],\n            [\n              24.9609375,\n              -6.66460756\n            ],\n            [\n              25.3125,\n              -6.66460756\n            ],\n            [\n              25.3125,\n              -7.01366793\n            ],\n            [\n              24.9609375,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -7.36246687\n            ],\n            [\n              24.9609375,\n              -7.01366793\n            ],\n            [\n              25.3125,\n              -7.01366793\n            ],\n            [\n              25.3125,\n              -7.36246687\n            ],\n            [\n              24.9609375,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -7.71099166\n            ],\n            [\n              24.9609375,\n              -7.36246687\n            ],\n            [\n              25.3125,\n              -7.36246687\n            ],\n            [\n              25.3125,\n              -7.71099166\n            ],\n            [\n              24.9609375,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -8.05922963\n            ],\n            [\n              24.9609375,\n              -7.71099166\n            ],\n            [\n              25.3125,\n              -7.71099166\n            ],\n            [\n              25.3125,\n              -8.05922963\n            ],\n            [\n              24.9609375,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -8.40716816\n            ],\n            [\n              24.9609375,\n              -8.05922963\n            ],\n            [\n              25.3125,\n              -8.05922963\n            ],\n            [\n              25.3125,\n              -8.40716816\n            ],\n            [\n              24.9609375,\n              -8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -8.7547947\n            ],\n            [\n              24.9609375,\n              -8.40716816\n            ],\n            [\n              25.3125,\n              -8.40716816\n            ],\n            [\n              25.3125,\n              -8.7547947\n            ],\n            [\n              24.9609375,\n              -8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -9.10209674\n            ],\n            [\n              24.9609375,\n              -8.7547947\n            ],\n            [\n              25.3125,\n              -8.7547947\n            ],\n            [\n              25.3125,\n              -9.10209674\n            ],\n            [\n              24.9609375,\n              -9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              -9.44906183\n            ],\n            [\n              24.9609375,\n              -9.10209674\n            ],\n            [\n              25.3125,\n              -9.10209674\n            ],\n            [\n              25.3125,\n              -9.44906183\n            ],\n            [\n              24.9609375,\n              -9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              0\n            ],\n            [\n              24.9609375,\n              0.35156029\n            ],\n            [\n              25.3125,\n              0.35156029\n            ],\n            [\n              25.3125,\n              0\n            ],\n            [\n              24.9609375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              0.35156029\n            ],\n            [\n              24.9609375,\n              0.70310735\n            ],\n            [\n              25.3125,\n              0.70310735\n            ],\n            [\n              25.3125,\n              0.35156029\n            ],\n            [\n              24.9609375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              0.70310735\n            ],\n            [\n              24.9609375,\n              1.05462794\n            ],\n            [\n              25.3125,\n              1.05462794\n            ],\n            [\n              25.3125,\n              0.70310735\n            ],\n            [\n              24.9609375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              1.05462794\n            ],\n            [\n              24.9609375,\n              1.40610884\n            ],\n            [\n              25.3125,\n              1.40610884\n            ],\n            [\n              25.3125,\n              1.05462794\n            ],\n            [\n              24.9609375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              1.40610884\n            ],\n            [\n              24.9609375,\n              1.75753681\n            ],\n            [\n              25.3125,\n              1.75753681\n            ],\n            [\n              25.3125,\n              1.40610884\n            ],\n            [\n              24.9609375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              1.75753681\n            ],\n            [\n              24.9609375,\n              2.10889866\n            ],\n            [\n              25.3125,\n              2.10889866\n            ],\n            [\n              25.3125,\n              1.75753681\n            ],\n            [\n              24.9609375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              2.10889866\n            ],\n            [\n              24.9609375,\n              2.46018118\n            ],\n            [\n              25.3125,\n              2.46018118\n            ],\n            [\n              25.3125,\n              2.10889866\n            ],\n            [\n              24.9609375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              2.46018118\n            ],\n            [\n              24.9609375,\n              2.81137119\n            ],\n            [\n              25.3125,\n              2.81137119\n            ],\n            [\n              25.3125,\n              2.46018118\n            ],\n            [\n              24.9609375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              2.81137119\n            ],\n            [\n              24.9609375,\n              3.16245553\n            ],\n            [\n              25.3125,\n              3.16245553\n            ],\n            [\n              25.3125,\n              2.81137119\n            ],\n            [\n              24.9609375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              3.16245553\n            ],\n            [\n              24.9609375,\n              3.51342105\n            ],\n            [\n              25.3125,\n              3.51342105\n            ],\n            [\n              25.3125,\n              3.16245553\n            ],\n            [\n              24.9609375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              3.51342105\n            ],\n            [\n              24.9609375,\n              3.86425462\n            ],\n            [\n              25.3125,\n              3.86425462\n            ],\n            [\n              25.3125,\n              3.51342105\n            ],\n            [\n              24.9609375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              3.86425462\n            ],\n            [\n              24.9609375,\n              4.21494314\n            ],\n            [\n              25.3125,\n              4.21494314\n            ],\n            [\n              25.3125,\n              3.86425462\n            ],\n            [\n              24.9609375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              4.21494314\n            ],\n            [\n              24.9609375,\n              4.56547355\n            ],\n            [\n              25.3125,\n              4.56547355\n            ],\n            [\n              25.3125,\n              4.21494314\n            ],\n            [\n              24.9609375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              4.56547355\n            ],\n            [\n              24.9609375,\n              4.9158328\n            ],\n            [\n              25.3125,\n              4.9158328\n            ],\n            [\n              25.3125,\n              4.56547355\n            ],\n            [\n              24.9609375,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              4.9158328\n            ],\n            [\n              24.9609375,\n              5.26600788\n            ],\n            [\n              25.3125,\n              5.26600788\n            ],\n            [\n              25.3125,\n              4.9158328\n            ],\n            [\n              24.9609375,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              5.26600788\n            ],\n            [\n              24.9609375,\n              5.61598582\n            ],\n            [\n              25.3125,\n              5.61598582\n            ],\n            [\n              25.3125,\n              5.26600788\n            ],\n            [\n              24.9609375,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              5.61598582\n            ],\n            [\n              24.9609375,\n              5.96575367\n            ],\n            [\n              25.3125,\n              5.96575367\n            ],\n            [\n              25.3125,\n              5.61598582\n            ],\n            [\n              24.9609375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              5.96575367\n            ],\n            [\n              24.9609375,\n              6.31529854\n            ],\n            [\n              25.3125,\n              6.31529854\n            ],\n            [\n              25.3125,\n              5.96575367\n            ],\n            [\n              24.9609375,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              6.31529854\n            ],\n            [\n              24.9609375,\n              6.66460756\n            ],\n            [\n              25.3125,\n              6.66460756\n            ],\n            [\n              25.3125,\n              6.31529854\n            ],\n            [\n              24.9609375,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              6.66460756\n            ],\n            [\n              24.9609375,\n              7.01366793\n            ],\n            [\n              25.3125,\n              7.01366793\n            ],\n            [\n              25.3125,\n              6.66460756\n            ],\n            [\n              24.9609375,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              7.01366793\n            ],\n            [\n              24.9609375,\n              7.36246687\n            ],\n            [\n              25.3125,\n              7.36246687\n            ],\n            [\n              25.3125,\n              7.01366793\n            ],\n            [\n              24.9609375,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              7.36246687\n            ],\n            [\n              24.9609375,\n              7.71099166\n            ],\n            [\n              25.3125,\n              7.71099166\n            ],\n            [\n              25.3125,\n              7.36246687\n            ],\n            [\n              24.9609375,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              7.71099166\n            ],\n            [\n              24.9609375,\n              8.05922963\n            ],\n            [\n              25.3125,\n              8.05922963\n            ],\n            [\n              25.3125,\n              7.71099166\n            ],\n            [\n              24.9609375,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              8.05922963\n            ],\n            [\n              24.9609375,\n              8.40716816\n            ],\n            [\n              25.3125,\n              8.40716816\n            ],\n            [\n              25.3125,\n              8.05922963\n            ],\n            [\n              24.9609375,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              8.40716816\n            ],\n            [\n              24.9609375,\n              8.7547947\n            ],\n            [\n              25.3125,\n              8.7547947\n            ],\n            [\n              25.3125,\n              8.40716816\n            ],\n            [\n              24.9609375,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              8.7547947\n            ],\n            [\n              24.9609375,\n              9.10209674\n            ],\n            [\n              25.3125,\n              9.10209674\n            ],\n            [\n              25.3125,\n              8.7547947\n            ],\n            [\n              24.9609375,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.9609375,\n              9.10209674\n            ],\n            [\n              24.9609375,\n              9.44906183\n            ],\n            [\n              25.3125,\n              9.44906183\n            ],\n            [\n              25.3125,\n              9.10209674\n            ],\n            [\n              24.9609375,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -0.35156029\n            ],\n            [\n              25.3125,\n              0\n            ],\n            [\n              25.6640625,\n              0\n            ],\n            [\n              25.6640625,\n              -0.35156029\n            ],\n            [\n              25.3125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -0.70310735\n            ],\n            [\n              25.3125,\n              -0.35156029\n            ],\n            [\n              25.6640625,\n              -0.35156029\n            ],\n            [\n              25.6640625,\n              -0.70310735\n            ],\n            [\n              25.3125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -1.05462794\n            ],\n            [\n              25.3125,\n              -0.70310735\n            ],\n            [\n              25.6640625,\n              -0.70310735\n            ],\n            [\n              25.6640625,\n              -1.05462794\n            ],\n            [\n              25.3125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -1.40610884\n            ],\n            [\n              25.3125,\n              -1.05462794\n            ],\n            [\n              25.6640625,\n              -1.05462794\n            ],\n            [\n              25.6640625,\n              -1.40610884\n            ],\n            [\n              25.3125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -1.75753681\n            ],\n            [\n              25.3125,\n              -1.40610884\n            ],\n            [\n              25.6640625,\n              -1.40610884\n            ],\n            [\n              25.6640625,\n              -1.75753681\n            ],\n            [\n              25.3125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -2.10889866\n            ],\n            [\n              25.3125,\n              -1.75753681\n            ],\n            [\n              25.6640625,\n              -1.75753681\n            ],\n            [\n              25.6640625,\n              -2.10889866\n            ],\n            [\n              25.3125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -2.46018118\n            ],\n            [\n              25.3125,\n              -2.10889866\n            ],\n            [\n              25.6640625,\n              -2.10889866\n            ],\n            [\n              25.6640625,\n              -2.46018118\n            ],\n            [\n              25.3125,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -2.81137119\n            ],\n            [\n              25.3125,\n              -2.46018118\n            ],\n            [\n              25.6640625,\n              -2.46018118\n            ],\n            [\n              25.6640625,\n              -2.81137119\n            ],\n            [\n              25.3125,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -3.16245553\n            ],\n            [\n              25.3125,\n              -2.81137119\n            ],\n            [\n              25.6640625,\n              -2.81137119\n            ],\n            [\n              25.6640625,\n              -3.16245553\n            ],\n            [\n              25.3125,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -3.51342105\n            ],\n            [\n              25.3125,\n              -3.16245553\n            ],\n            [\n              25.6640625,\n              -3.16245553\n            ],\n            [\n              25.6640625,\n              -3.51342105\n            ],\n            [\n              25.3125,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -3.86425462\n            ],\n            [\n              25.3125,\n              -3.51342105\n            ],\n            [\n              25.6640625,\n              -3.51342105\n            ],\n            [\n              25.6640625,\n              -3.86425462\n            ],\n            [\n              25.3125,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -4.21494314\n            ],\n            [\n              25.3125,\n              -3.86425462\n            ],\n            [\n              25.6640625,\n              -3.86425462\n            ],\n            [\n              25.6640625,\n              -4.21494314\n            ],\n            [\n              25.3125,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -4.56547355\n            ],\n            [\n              25.3125,\n              -4.21494314\n            ],\n            [\n              25.6640625,\n              -4.21494314\n            ],\n            [\n              25.6640625,\n              -4.56547355\n            ],\n            [\n              25.3125,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -4.9158328\n            ],\n            [\n              25.3125,\n              -4.56547355\n            ],\n            [\n              25.6640625,\n              -4.56547355\n            ],\n            [\n              25.6640625,\n              -4.9158328\n            ],\n            [\n              25.3125,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -5.26600788\n            ],\n            [\n              25.3125,\n              -4.9158328\n            ],\n            [\n              25.6640625,\n              -4.9158328\n            ],\n            [\n              25.6640625,\n              -5.26600788\n            ],\n            [\n              25.3125,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -5.61598582\n            ],\n            [\n              25.3125,\n              -5.26600788\n            ],\n            [\n              25.6640625,\n              -5.26600788\n            ],\n            [\n              25.6640625,\n              -5.61598582\n            ],\n            [\n              25.3125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -5.96575367\n            ],\n            [\n              25.3125,\n              -5.61598582\n            ],\n            [\n              25.6640625,\n              -5.61598582\n            ],\n            [\n              25.6640625,\n              -5.96575367\n            ],\n            [\n              25.3125,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -6.31529854\n            ],\n            [\n              25.3125,\n              -5.96575367\n            ],\n            [\n              25.6640625,\n              -5.96575367\n            ],\n            [\n              25.6640625,\n              -6.31529854\n            ],\n            [\n              25.3125,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -6.66460756\n            ],\n            [\n              25.3125,\n              -6.31529854\n            ],\n            [\n              25.6640625,\n              -6.31529854\n            ],\n            [\n              25.6640625,\n              -6.66460756\n            ],\n            [\n              25.3125,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -7.01366793\n            ],\n            [\n              25.3125,\n              -6.66460756\n            ],\n            [\n              25.6640625,\n              -6.66460756\n            ],\n            [\n              25.6640625,\n              -7.01366793\n            ],\n            [\n              25.3125,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -7.36246687\n            ],\n            [\n              25.3125,\n              -7.01366793\n            ],\n            [\n              25.6640625,\n              -7.01366793\n            ],\n            [\n              25.6640625,\n              -7.36246687\n            ],\n            [\n              25.3125,\n              -7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -7.71099166\n            ],\n            [\n              25.3125,\n              -7.36246687\n            ],\n            [\n              25.6640625,\n              -7.36246687\n            ],\n            [\n              25.6640625,\n              -7.71099166\n            ],\n            [\n              25.3125,\n              -7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              -8.05922963\n            ],\n            [\n              25.3125,\n              -7.71099166\n            ],\n            [\n              25.6640625,\n              -7.71099166\n            ],\n            [\n              25.6640625,\n              -8.05922963\n            ],\n            [\n              25.3125,\n              -8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              0\n            ],\n            [\n              25.3125,\n              0.35156029\n            ],\n            [\n              25.6640625,\n              0.35156029\n            ],\n            [\n              25.6640625,\n              0\n            ],\n            [\n              25.3125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              0.35156029\n            ],\n            [\n              25.3125,\n              0.70310735\n            ],\n            [\n              25.6640625,\n              0.70310735\n            ],\n            [\n              25.6640625,\n              0.35156029\n            ],\n            [\n              25.3125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              0.70310735\n            ],\n            [\n              25.3125,\n              1.05462794\n            ],\n            [\n              25.6640625,\n              1.05462794\n            ],\n            [\n              25.6640625,\n              0.70310735\n            ],\n            [\n              25.3125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              1.05462794\n            ],\n            [\n              25.3125,\n              1.40610884\n            ],\n            [\n              25.6640625,\n              1.40610884\n            ],\n            [\n              25.6640625,\n              1.05462794\n            ],\n            [\n              25.3125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              1.40610884\n            ],\n            [\n              25.3125,\n              1.75753681\n            ],\n            [\n              25.6640625,\n              1.75753681\n            ],\n            [\n              25.6640625,\n              1.40610884\n            ],\n            [\n              25.3125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              1.75753681\n            ],\n            [\n              25.3125,\n              2.10889866\n            ],\n            [\n              25.6640625,\n              2.10889866\n            ],\n            [\n              25.6640625,\n              1.75753681\n            ],\n            [\n              25.3125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              2.10889866\n            ],\n            [\n              25.3125,\n              2.46018118\n            ],\n            [\n              25.6640625,\n              2.46018118\n            ],\n            [\n              25.6640625,\n              2.10889866\n            ],\n            [\n              25.3125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              2.46018118\n            ],\n            [\n              25.3125,\n              2.81137119\n            ],\n            [\n              25.6640625,\n              2.81137119\n            ],\n            [\n              25.6640625,\n              2.46018118\n            ],\n            [\n              25.3125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              2.81137119\n            ],\n            [\n              25.3125,\n              3.16245553\n            ],\n            [\n              25.6640625,\n              3.16245553\n            ],\n            [\n              25.6640625,\n              2.81137119\n            ],\n            [\n              25.3125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              3.16245553\n            ],\n            [\n              25.3125,\n              3.51342105\n            ],\n            [\n              25.6640625,\n              3.51342105\n            ],\n            [\n              25.6640625,\n              3.16245553\n            ],\n            [\n              25.3125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              3.51342105\n            ],\n            [\n              25.3125,\n              3.86425462\n            ],\n            [\n              25.6640625,\n              3.86425462\n            ],\n            [\n              25.6640625,\n              3.51342105\n            ],\n            [\n              25.3125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              3.86425462\n            ],\n            [\n              25.3125,\n              4.21494314\n            ],\n            [\n              25.6640625,\n              4.21494314\n            ],\n            [\n              25.6640625,\n              3.86425462\n            ],\n            [\n              25.3125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              4.21494314\n            ],\n            [\n              25.3125,\n              4.56547355\n            ],\n            [\n              25.6640625,\n              4.56547355\n            ],\n            [\n              25.6640625,\n              4.21494314\n            ],\n            [\n              25.3125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              4.56547355\n            ],\n            [\n              25.3125,\n              4.9158328\n            ],\n            [\n              25.6640625,\n              4.9158328\n            ],\n            [\n              25.6640625,\n              4.56547355\n            ],\n            [\n              25.3125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              4.9158328\n            ],\n            [\n              25.3125,\n              5.26600788\n            ],\n            [\n              25.6640625,\n              5.26600788\n            ],\n            [\n              25.6640625,\n              4.9158328\n            ],\n            [\n              25.3125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              5.26600788\n            ],\n            [\n              25.3125,\n              5.61598582\n            ],\n            [\n              25.6640625,\n              5.61598582\n            ],\n            [\n              25.6640625,\n              5.26600788\n            ],\n            [\n              25.3125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              5.61598582\n            ],\n            [\n              25.3125,\n              5.96575367\n            ],\n            [\n              25.6640625,\n              5.96575367\n            ],\n            [\n              25.6640625,\n              5.61598582\n            ],\n            [\n              25.3125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              5.96575367\n            ],\n            [\n              25.3125,\n              6.31529854\n            ],\n            [\n              25.6640625,\n              6.31529854\n            ],\n            [\n              25.6640625,\n              5.96575367\n            ],\n            [\n              25.3125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              6.31529854\n            ],\n            [\n              25.3125,\n              6.66460756\n            ],\n            [\n              25.6640625,\n              6.66460756\n            ],\n            [\n              25.6640625,\n              6.31529854\n            ],\n            [\n              25.3125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              6.66460756\n            ],\n            [\n              25.3125,\n              7.01366793\n            ],\n            [\n              25.6640625,\n              7.01366793\n            ],\n            [\n              25.6640625,\n              6.66460756\n            ],\n            [\n              25.3125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              7.01366793\n            ],\n            [\n              25.3125,\n              7.36246687\n            ],\n            [\n              25.6640625,\n              7.36246687\n            ],\n            [\n              25.6640625,\n              7.01366793\n            ],\n            [\n              25.3125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              7.36246687\n            ],\n            [\n              25.3125,\n              7.71099166\n            ],\n            [\n              25.6640625,\n              7.71099166\n            ],\n            [\n              25.6640625,\n              7.36246687\n            ],\n            [\n              25.3125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              7.71099166\n            ],\n            [\n              25.3125,\n              8.05922963\n            ],\n            [\n              25.6640625,\n              8.05922963\n            ],\n            [\n              25.6640625,\n              7.71099166\n            ],\n            [\n              25.3125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              8.05922963\n            ],\n            [\n              25.3125,\n              8.40716816\n            ],\n            [\n              25.6640625,\n              8.40716816\n            ],\n            [\n              25.6640625,\n              8.05922963\n            ],\n            [\n              25.3125,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              8.40716816\n            ],\n            [\n              25.3125,\n              8.7547947\n            ],\n            [\n              25.6640625,\n              8.7547947\n            ],\n            [\n              25.6640625,\n              8.40716816\n            ],\n            [\n              25.3125,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.3125,\n              8.7547947\n            ],\n            [\n              25.3125,\n              9.10209674\n            ],\n            [\n              25.6640625,\n              9.10209674\n            ],\n            [\n              25.6640625,\n              8.7547947\n            ],\n            [\n              25.3125,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -0.35156029\n            ],\n            [\n              25.6640625,\n              0\n            ],\n            [\n              26.015625,\n              0\n            ],\n            [\n              26.015625,\n              -0.35156029\n            ],\n            [\n              25.6640625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -0.70310735\n            ],\n            [\n              25.6640625,\n              -0.35156029\n            ],\n            [\n              26.015625,\n              -0.35156029\n            ],\n            [\n              26.015625,\n              -0.70310735\n            ],\n            [\n              25.6640625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -1.05462794\n            ],\n            [\n              25.6640625,\n              -0.70310735\n            ],\n            [\n              26.015625,\n              -0.70310735\n            ],\n            [\n              26.015625,\n              -1.05462794\n            ],\n            [\n              25.6640625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -1.40610884\n            ],\n            [\n              25.6640625,\n              -1.05462794\n            ],\n            [\n              26.015625,\n              -1.05462794\n            ],\n            [\n              26.015625,\n              -1.40610884\n            ],\n            [\n              25.6640625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -1.75753681\n            ],\n            [\n              25.6640625,\n              -1.40610884\n            ],\n            [\n              26.015625,\n              -1.40610884\n            ],\n            [\n              26.015625,\n              -1.75753681\n            ],\n            [\n              25.6640625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -2.10889866\n            ],\n            [\n              25.6640625,\n              -1.75753681\n            ],\n            [\n              26.015625,\n              -1.75753681\n            ],\n            [\n              26.015625,\n              -2.10889866\n            ],\n            [\n              25.6640625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -2.46018118\n            ],\n            [\n              25.6640625,\n              -2.10889866\n            ],\n            [\n              26.015625,\n              -2.10889866\n            ],\n            [\n              26.015625,\n              -2.46018118\n            ],\n            [\n              25.6640625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -2.81137119\n            ],\n            [\n              25.6640625,\n              -2.46018118\n            ],\n            [\n              26.015625,\n              -2.46018118\n            ],\n            [\n              26.015625,\n              -2.81137119\n            ],\n            [\n              25.6640625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -3.16245553\n            ],\n            [\n              25.6640625,\n              -2.81137119\n            ],\n            [\n              26.015625,\n              -2.81137119\n            ],\n            [\n              26.015625,\n              -3.16245553\n            ],\n            [\n              25.6640625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -3.51342105\n            ],\n            [\n              25.6640625,\n              -3.16245553\n            ],\n            [\n              26.015625,\n              -3.16245553\n            ],\n            [\n              26.015625,\n              -3.51342105\n            ],\n            [\n              25.6640625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -3.86425462\n            ],\n            [\n              25.6640625,\n              -3.51342105\n            ],\n            [\n              26.015625,\n              -3.51342105\n            ],\n            [\n              26.015625,\n              -3.86425462\n            ],\n            [\n              25.6640625,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -4.21494314\n            ],\n            [\n              25.6640625,\n              -3.86425462\n            ],\n            [\n              26.015625,\n              -3.86425462\n            ],\n            [\n              26.015625,\n              -4.21494314\n            ],\n            [\n              25.6640625,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -4.56547355\n            ],\n            [\n              25.6640625,\n              -4.21494314\n            ],\n            [\n              26.015625,\n              -4.21494314\n            ],\n            [\n              26.015625,\n              -4.56547355\n            ],\n            [\n              25.6640625,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -4.9158328\n            ],\n            [\n              25.6640625,\n              -4.56547355\n            ],\n            [\n              26.015625,\n              -4.56547355\n            ],\n            [\n              26.015625,\n              -4.9158328\n            ],\n            [\n              25.6640625,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -5.26600788\n            ],\n            [\n              25.6640625,\n              -4.9158328\n            ],\n            [\n              26.015625,\n              -4.9158328\n            ],\n            [\n              26.015625,\n              -5.26600788\n            ],\n            [\n              25.6640625,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -5.61598582\n            ],\n            [\n              25.6640625,\n              -5.26600788\n            ],\n            [\n              26.015625,\n              -5.26600788\n            ],\n            [\n              26.015625,\n              -5.61598582\n            ],\n            [\n              25.6640625,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -5.96575367\n            ],\n            [\n              25.6640625,\n              -5.61598582\n            ],\n            [\n              26.015625,\n              -5.61598582\n            ],\n            [\n              26.015625,\n              -5.96575367\n            ],\n            [\n              25.6640625,\n              -5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -6.31529854\n            ],\n            [\n              25.6640625,\n              -5.96575367\n            ],\n            [\n              26.015625,\n              -5.96575367\n            ],\n            [\n              26.015625,\n              -6.31529854\n            ],\n            [\n              25.6640625,\n              -6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -6.66460756\n            ],\n            [\n              25.6640625,\n              -6.31529854\n            ],\n            [\n              26.015625,\n              -6.31529854\n            ],\n            [\n              26.015625,\n              -6.66460756\n            ],\n            [\n              25.6640625,\n              -6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              -7.01366793\n            ],\n            [\n              25.6640625,\n              -6.66460756\n            ],\n            [\n              26.015625,\n              -6.66460756\n            ],\n            [\n              26.015625,\n              -7.01366793\n            ],\n            [\n              25.6640625,\n              -7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              0\n            ],\n            [\n              25.6640625,\n              0.35156029\n            ],\n            [\n              26.015625,\n              0.35156029\n            ],\n            [\n              26.015625,\n              0\n            ],\n            [\n              25.6640625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              0.35156029\n            ],\n            [\n              25.6640625,\n              0.70310735\n            ],\n            [\n              26.015625,\n              0.70310735\n            ],\n            [\n              26.015625,\n              0.35156029\n            ],\n            [\n              25.6640625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              0.70310735\n            ],\n            [\n              25.6640625,\n              1.05462794\n            ],\n            [\n              26.015625,\n              1.05462794\n            ],\n            [\n              26.015625,\n              0.70310735\n            ],\n            [\n              25.6640625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              1.05462794\n            ],\n            [\n              25.6640625,\n              1.40610884\n            ],\n            [\n              26.015625,\n              1.40610884\n            ],\n            [\n              26.015625,\n              1.05462794\n            ],\n            [\n              25.6640625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              1.40610884\n            ],\n            [\n              25.6640625,\n              1.75753681\n            ],\n            [\n              26.015625,\n              1.75753681\n            ],\n            [\n              26.015625,\n              1.40610884\n            ],\n            [\n              25.6640625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              1.75753681\n            ],\n            [\n              25.6640625,\n              2.10889866\n            ],\n            [\n              26.015625,\n              2.10889866\n            ],\n            [\n              26.015625,\n              1.75753681\n            ],\n            [\n              25.6640625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              2.10889866\n            ],\n            [\n              25.6640625,\n              2.46018118\n            ],\n            [\n              26.015625,\n              2.46018118\n            ],\n            [\n              26.015625,\n              2.10889866\n            ],\n            [\n              25.6640625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              2.46018118\n            ],\n            [\n              25.6640625,\n              2.81137119\n            ],\n            [\n              26.015625,\n              2.81137119\n            ],\n            [\n              26.015625,\n              2.46018118\n            ],\n            [\n              25.6640625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              2.81137119\n            ],\n            [\n              25.6640625,\n              3.16245553\n            ],\n            [\n              26.015625,\n              3.16245553\n            ],\n            [\n              26.015625,\n              2.81137119\n            ],\n            [\n              25.6640625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              3.16245553\n            ],\n            [\n              25.6640625,\n              3.51342105\n            ],\n            [\n              26.015625,\n              3.51342105\n            ],\n            [\n              26.015625,\n              3.16245553\n            ],\n            [\n              25.6640625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              3.51342105\n            ],\n            [\n              25.6640625,\n              3.86425462\n            ],\n            [\n              26.015625,\n              3.86425462\n            ],\n            [\n              26.015625,\n              3.51342105\n            ],\n            [\n              25.6640625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              3.86425462\n            ],\n            [\n              25.6640625,\n              4.21494314\n            ],\n            [\n              26.015625,\n              4.21494314\n            ],\n            [\n              26.015625,\n              3.86425462\n            ],\n            [\n              25.6640625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              4.21494314\n            ],\n            [\n              25.6640625,\n              4.56547355\n            ],\n            [\n              26.015625,\n              4.56547355\n            ],\n            [\n              26.015625,\n              4.21494314\n            ],\n            [\n              25.6640625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              4.56547355\n            ],\n            [\n              25.6640625,\n              4.9158328\n            ],\n            [\n              26.015625,\n              4.9158328\n            ],\n            [\n              26.015625,\n              4.56547355\n            ],\n            [\n              25.6640625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              4.9158328\n            ],\n            [\n              25.6640625,\n              5.26600788\n            ],\n            [\n              26.015625,\n              5.26600788\n            ],\n            [\n              26.015625,\n              4.9158328\n            ],\n            [\n              25.6640625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              5.26600788\n            ],\n            [\n              25.6640625,\n              5.61598582\n            ],\n            [\n              26.015625,\n              5.61598582\n            ],\n            [\n              26.015625,\n              5.26600788\n            ],\n            [\n              25.6640625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              5.61598582\n            ],\n            [\n              25.6640625,\n              5.96575367\n            ],\n            [\n              26.015625,\n              5.96575367\n            ],\n            [\n              26.015625,\n              5.61598582\n            ],\n            [\n              25.6640625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              5.96575367\n            ],\n            [\n              25.6640625,\n              6.31529854\n            ],\n            [\n              26.015625,\n              6.31529854\n            ],\n            [\n              26.015625,\n              5.96575367\n            ],\n            [\n              25.6640625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              6.31529854\n            ],\n            [\n              25.6640625,\n              6.66460756\n            ],\n            [\n              26.015625,\n              6.66460756\n            ],\n            [\n              26.015625,\n              6.31529854\n            ],\n            [\n              25.6640625,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              6.66460756\n            ],\n            [\n              25.6640625,\n              7.01366793\n            ],\n            [\n              26.015625,\n              7.01366793\n            ],\n            [\n              26.015625,\n              6.66460756\n            ],\n            [\n              25.6640625,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              7.01366793\n            ],\n            [\n              25.6640625,\n              7.36246687\n            ],\n            [\n              26.015625,\n              7.36246687\n            ],\n            [\n              26.015625,\n              7.01366793\n            ],\n            [\n              25.6640625,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              7.36246687\n            ],\n            [\n              25.6640625,\n              7.71099166\n            ],\n            [\n              26.015625,\n              7.71099166\n            ],\n            [\n              26.015625,\n              7.36246687\n            ],\n            [\n              25.6640625,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              7.71099166\n            ],\n            [\n              25.6640625,\n              8.05922963\n            ],\n            [\n              26.015625,\n              8.05922963\n            ],\n            [\n              26.015625,\n              7.71099166\n            ],\n            [\n              25.6640625,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.6640625,\n              8.05922963\n            ],\n            [\n              25.6640625,\n              8.40716816\n            ],\n            [\n              26.015625,\n              8.40716816\n            ],\n            [\n              26.015625,\n              8.05922963\n            ],\n            [\n              25.6640625,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -0.35156029\n            ],\n            [\n              26.015625,\n              0\n            ],\n            [\n              26.3671875,\n              0\n            ],\n            [\n              26.3671875,\n              -0.35156029\n            ],\n            [\n              26.015625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -0.70310735\n            ],\n            [\n              26.015625,\n              -0.35156029\n            ],\n            [\n              26.3671875,\n              -0.35156029\n            ],\n            [\n              26.3671875,\n              -0.70310735\n            ],\n            [\n              26.015625,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -1.05462794\n            ],\n            [\n              26.015625,\n              -0.70310735\n            ],\n            [\n              26.3671875,\n              -0.70310735\n            ],\n            [\n              26.3671875,\n              -1.05462794\n            ],\n            [\n              26.015625,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -1.40610884\n            ],\n            [\n              26.015625,\n              -1.05462794\n            ],\n            [\n              26.3671875,\n              -1.05462794\n            ],\n            [\n              26.3671875,\n              -1.40610884\n            ],\n            [\n              26.015625,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -1.75753681\n            ],\n            [\n              26.015625,\n              -1.40610884\n            ],\n            [\n              26.3671875,\n              -1.40610884\n            ],\n            [\n              26.3671875,\n              -1.75753681\n            ],\n            [\n              26.015625,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -2.10889866\n            ],\n            [\n              26.015625,\n              -1.75753681\n            ],\n            [\n              26.3671875,\n              -1.75753681\n            ],\n            [\n              26.3671875,\n              -2.10889866\n            ],\n            [\n              26.015625,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -2.46018118\n            ],\n            [\n              26.015625,\n              -2.10889866\n            ],\n            [\n              26.3671875,\n              -2.10889866\n            ],\n            [\n              26.3671875,\n              -2.46018118\n            ],\n            [\n              26.015625,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -2.81137119\n            ],\n            [\n              26.015625,\n              -2.46018118\n            ],\n            [\n              26.3671875,\n              -2.46018118\n            ],\n            [\n              26.3671875,\n              -2.81137119\n            ],\n            [\n              26.015625,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -3.16245553\n            ],\n            [\n              26.015625,\n              -2.81137119\n            ],\n            [\n              26.3671875,\n              -2.81137119\n            ],\n            [\n              26.3671875,\n              -3.16245553\n            ],\n            [\n              26.015625,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -3.51342105\n            ],\n            [\n              26.015625,\n              -3.16245553\n            ],\n            [\n              26.3671875,\n              -3.16245553\n            ],\n            [\n              26.3671875,\n              -3.51342105\n            ],\n            [\n              26.015625,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -3.86425462\n            ],\n            [\n              26.015625,\n              -3.51342105\n            ],\n            [\n              26.3671875,\n              -3.51342105\n            ],\n            [\n              26.3671875,\n              -3.86425462\n            ],\n            [\n              26.015625,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -4.21494314\n            ],\n            [\n              26.015625,\n              -3.86425462\n            ],\n            [\n              26.3671875,\n              -3.86425462\n            ],\n            [\n              26.3671875,\n              -4.21494314\n            ],\n            [\n              26.015625,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -4.56547355\n            ],\n            [\n              26.015625,\n              -4.21494314\n            ],\n            [\n              26.3671875,\n              -4.21494314\n            ],\n            [\n              26.3671875,\n              -4.56547355\n            ],\n            [\n              26.015625,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -4.9158328\n            ],\n            [\n              26.015625,\n              -4.56547355\n            ],\n            [\n              26.3671875,\n              -4.56547355\n            ],\n            [\n              26.3671875,\n              -4.9158328\n            ],\n            [\n              26.015625,\n              -4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -5.26600788\n            ],\n            [\n              26.015625,\n              -4.9158328\n            ],\n            [\n              26.3671875,\n              -4.9158328\n            ],\n            [\n              26.3671875,\n              -5.26600788\n            ],\n            [\n              26.015625,\n              -5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              -5.61598582\n            ],\n            [\n              26.015625,\n              -5.26600788\n            ],\n            [\n              26.3671875,\n              -5.26600788\n            ],\n            [\n              26.3671875,\n              -5.61598582\n            ],\n            [\n              26.015625,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              0\n            ],\n            [\n              26.015625,\n              0.35156029\n            ],\n            [\n              26.3671875,\n              0.35156029\n            ],\n            [\n              26.3671875,\n              0\n            ],\n            [\n              26.015625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              0.35156029\n            ],\n            [\n              26.015625,\n              0.70310735\n            ],\n            [\n              26.3671875,\n              0.70310735\n            ],\n            [\n              26.3671875,\n              0.35156029\n            ],\n            [\n              26.015625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              0.70310735\n            ],\n            [\n              26.015625,\n              1.05462794\n            ],\n            [\n              26.3671875,\n              1.05462794\n            ],\n            [\n              26.3671875,\n              0.70310735\n            ],\n            [\n              26.015625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              1.05462794\n            ],\n            [\n              26.015625,\n              1.40610884\n            ],\n            [\n              26.3671875,\n              1.40610884\n            ],\n            [\n              26.3671875,\n              1.05462794\n            ],\n            [\n              26.015625,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              1.40610884\n            ],\n            [\n              26.015625,\n              1.75753681\n            ],\n            [\n              26.3671875,\n              1.75753681\n            ],\n            [\n              26.3671875,\n              1.40610884\n            ],\n            [\n              26.015625,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              1.75753681\n            ],\n            [\n              26.015625,\n              2.10889866\n            ],\n            [\n              26.3671875,\n              2.10889866\n            ],\n            [\n              26.3671875,\n              1.75753681\n            ],\n            [\n              26.015625,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              2.10889866\n            ],\n            [\n              26.015625,\n              2.46018118\n            ],\n            [\n              26.3671875,\n              2.46018118\n            ],\n            [\n              26.3671875,\n              2.10889866\n            ],\n            [\n              26.015625,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              2.46018118\n            ],\n            [\n              26.015625,\n              2.81137119\n            ],\n            [\n              26.3671875,\n              2.81137119\n            ],\n            [\n              26.3671875,\n              2.46018118\n            ],\n            [\n              26.015625,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              2.81137119\n            ],\n            [\n              26.015625,\n              3.16245553\n            ],\n            [\n              26.3671875,\n              3.16245553\n            ],\n            [\n              26.3671875,\n              2.81137119\n            ],\n            [\n              26.015625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              3.16245553\n            ],\n            [\n              26.015625,\n              3.51342105\n            ],\n            [\n              26.3671875,\n              3.51342105\n            ],\n            [\n              26.3671875,\n              3.16245553\n            ],\n            [\n              26.015625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              3.51342105\n            ],\n            [\n              26.015625,\n              3.86425462\n            ],\n            [\n              26.3671875,\n              3.86425462\n            ],\n            [\n              26.3671875,\n              3.51342105\n            ],\n            [\n              26.015625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              3.86425462\n            ],\n            [\n              26.015625,\n              4.21494314\n            ],\n            [\n              26.3671875,\n              4.21494314\n            ],\n            [\n              26.3671875,\n              3.86425462\n            ],\n            [\n              26.015625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              4.21494314\n            ],\n            [\n              26.015625,\n              4.56547355\n            ],\n            [\n              26.3671875,\n              4.56547355\n            ],\n            [\n              26.3671875,\n              4.21494314\n            ],\n            [\n              26.015625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              4.56547355\n            ],\n            [\n              26.015625,\n              4.9158328\n            ],\n            [\n              26.3671875,\n              4.9158328\n            ],\n            [\n              26.3671875,\n              4.56547355\n            ],\n            [\n              26.015625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              4.9158328\n            ],\n            [\n              26.015625,\n              5.26600788\n            ],\n            [\n              26.3671875,\n              5.26600788\n            ],\n            [\n              26.3671875,\n              4.9158328\n            ],\n            [\n              26.015625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              5.26600788\n            ],\n            [\n              26.015625,\n              5.61598582\n            ],\n            [\n              26.3671875,\n              5.61598582\n            ],\n            [\n              26.3671875,\n              5.26600788\n            ],\n            [\n              26.015625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              5.61598582\n            ],\n            [\n              26.015625,\n              5.96575367\n            ],\n            [\n              26.3671875,\n              5.96575367\n            ],\n            [\n              26.3671875,\n              5.61598582\n            ],\n            [\n              26.015625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              5.96575367\n            ],\n            [\n              26.015625,\n              6.31529854\n            ],\n            [\n              26.3671875,\n              6.31529854\n            ],\n            [\n              26.3671875,\n              5.96575367\n            ],\n            [\n              26.015625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              6.31529854\n            ],\n            [\n              26.015625,\n              6.66460756\n            ],\n            [\n              26.3671875,\n              6.66460756\n            ],\n            [\n              26.3671875,\n              6.31529854\n            ],\n            [\n              26.015625,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              6.66460756\n            ],\n            [\n              26.015625,\n              7.01366793\n            ],\n            [\n              26.3671875,\n              7.01366793\n            ],\n            [\n              26.3671875,\n              6.66460756\n            ],\n            [\n              26.015625,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              7.01366793\n            ],\n            [\n              26.015625,\n              7.36246687\n            ],\n            [\n              26.3671875,\n              7.36246687\n            ],\n            [\n              26.3671875,\n              7.01366793\n            ],\n            [\n              26.015625,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              7.36246687\n            ],\n            [\n              26.015625,\n              7.71099166\n            ],\n            [\n              26.3671875,\n              7.71099166\n            ],\n            [\n              26.3671875,\n              7.36246687\n            ],\n            [\n              26.015625,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              7.71099166\n            ],\n            [\n              26.015625,\n              8.05922963\n            ],\n            [\n              26.3671875,\n              8.05922963\n            ],\n            [\n              26.3671875,\n              7.71099166\n            ],\n            [\n              26.015625,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              8.05922963\n            ],\n            [\n              26.015625,\n              8.40716816\n            ],\n            [\n              26.3671875,\n              8.40716816\n            ],\n            [\n              26.3671875,\n              8.05922963\n            ],\n            [\n              26.015625,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              8.40716816\n            ],\n            [\n              26.015625,\n              8.7547947\n            ],\n            [\n              26.3671875,\n              8.7547947\n            ],\n            [\n              26.3671875,\n              8.40716816\n            ],\n            [\n              26.015625,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              8.7547947\n            ],\n            [\n              26.015625,\n              9.10209674\n            ],\n            [\n              26.3671875,\n              9.10209674\n            ],\n            [\n              26.3671875,\n              8.7547947\n            ],\n            [\n              26.015625,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.015625,\n              9.10209674\n            ],\n            [\n              26.015625,\n              9.44906183\n            ],\n            [\n              26.3671875,\n              9.44906183\n            ],\n            [\n              26.3671875,\n              9.10209674\n            ],\n            [\n              26.015625,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -0.35156029\n            ],\n            [\n              26.3671875,\n              0\n            ],\n            [\n              26.71875,\n              0\n            ],\n            [\n              26.71875,\n              -0.35156029\n            ],\n            [\n              26.3671875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -0.70310735\n            ],\n            [\n              26.3671875,\n              -0.35156029\n            ],\n            [\n              26.71875,\n              -0.35156029\n            ],\n            [\n              26.71875,\n              -0.70310735\n            ],\n            [\n              26.3671875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -1.05462794\n            ],\n            [\n              26.3671875,\n              -0.70310735\n            ],\n            [\n              26.71875,\n              -0.70310735\n            ],\n            [\n              26.71875,\n              -1.05462794\n            ],\n            [\n              26.3671875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -1.40610884\n            ],\n            [\n              26.3671875,\n              -1.05462794\n            ],\n            [\n              26.71875,\n              -1.05462794\n            ],\n            [\n              26.71875,\n              -1.40610884\n            ],\n            [\n              26.3671875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -1.75753681\n            ],\n            [\n              26.3671875,\n              -1.40610884\n            ],\n            [\n              26.71875,\n              -1.40610884\n            ],\n            [\n              26.71875,\n              -1.75753681\n            ],\n            [\n              26.3671875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -2.10889866\n            ],\n            [\n              26.3671875,\n              -1.75753681\n            ],\n            [\n              26.71875,\n              -1.75753681\n            ],\n            [\n              26.71875,\n              -2.10889866\n            ],\n            [\n              26.3671875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -2.46018118\n            ],\n            [\n              26.3671875,\n              -2.10889866\n            ],\n            [\n              26.71875,\n              -2.10889866\n            ],\n            [\n              26.71875,\n              -2.46018118\n            ],\n            [\n              26.3671875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -2.81137119\n            ],\n            [\n              26.3671875,\n              -2.46018118\n            ],\n            [\n              26.71875,\n              -2.46018118\n            ],\n            [\n              26.71875,\n              -2.81137119\n            ],\n            [\n              26.3671875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -3.16245553\n            ],\n            [\n              26.3671875,\n              -2.81137119\n            ],\n            [\n              26.71875,\n              -2.81137119\n            ],\n            [\n              26.71875,\n              -3.16245553\n            ],\n            [\n              26.3671875,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -3.51342105\n            ],\n            [\n              26.3671875,\n              -3.16245553\n            ],\n            [\n              26.71875,\n              -3.16245553\n            ],\n            [\n              26.71875,\n              -3.51342105\n            ],\n            [\n              26.3671875,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -3.86425462\n            ],\n            [\n              26.3671875,\n              -3.51342105\n            ],\n            [\n              26.71875,\n              -3.51342105\n            ],\n            [\n              26.71875,\n              -3.86425462\n            ],\n            [\n              26.3671875,\n              -3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -4.21494314\n            ],\n            [\n              26.3671875,\n              -3.86425462\n            ],\n            [\n              26.71875,\n              -3.86425462\n            ],\n            [\n              26.71875,\n              -4.21494314\n            ],\n            [\n              26.3671875,\n              -4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              -4.56547355\n            ],\n            [\n              26.3671875,\n              -4.21494314\n            ],\n            [\n              26.71875,\n              -4.21494314\n            ],\n            [\n              26.71875,\n              -4.56547355\n            ],\n            [\n              26.3671875,\n              -4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              0\n            ],\n            [\n              26.3671875,\n              0.35156029\n            ],\n            [\n              26.71875,\n              0.35156029\n            ],\n            [\n              26.71875,\n              0\n            ],\n            [\n              26.3671875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              0.35156029\n            ],\n            [\n              26.3671875,\n              0.70310735\n            ],\n            [\n              26.71875,\n              0.70310735\n            ],\n            [\n              26.71875,\n              0.35156029\n            ],\n            [\n              26.3671875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              0.70310735\n            ],\n            [\n              26.3671875,\n              1.05462794\n            ],\n            [\n              26.71875,\n              1.05462794\n            ],\n            [\n              26.71875,\n              0.70310735\n            ],\n            [\n              26.3671875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              1.05462794\n            ],\n            [\n              26.3671875,\n              1.40610884\n            ],\n            [\n              26.71875,\n              1.40610884\n            ],\n            [\n              26.71875,\n              1.05462794\n            ],\n            [\n              26.3671875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              1.40610884\n            ],\n            [\n              26.3671875,\n              1.75753681\n            ],\n            [\n              26.71875,\n              1.75753681\n            ],\n            [\n              26.71875,\n              1.40610884\n            ],\n            [\n              26.3671875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              1.75753681\n            ],\n            [\n              26.3671875,\n              2.10889866\n            ],\n            [\n              26.71875,\n              2.10889866\n            ],\n            [\n              26.71875,\n              1.75753681\n            ],\n            [\n              26.3671875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              2.10889866\n            ],\n            [\n              26.3671875,\n              2.46018118\n            ],\n            [\n              26.71875,\n              2.46018118\n            ],\n            [\n              26.71875,\n              2.10889866\n            ],\n            [\n              26.3671875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              2.46018118\n            ],\n            [\n              26.3671875,\n              2.81137119\n            ],\n            [\n              26.71875,\n              2.81137119\n            ],\n            [\n              26.71875,\n              2.46018118\n            ],\n            [\n              26.3671875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              2.81137119\n            ],\n            [\n              26.3671875,\n              3.16245553\n            ],\n            [\n              26.71875,\n              3.16245553\n            ],\n            [\n              26.71875,\n              2.81137119\n            ],\n            [\n              26.3671875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              3.16245553\n            ],\n            [\n              26.3671875,\n              3.51342105\n            ],\n            [\n              26.71875,\n              3.51342105\n            ],\n            [\n              26.71875,\n              3.16245553\n            ],\n            [\n              26.3671875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              3.51342105\n            ],\n            [\n              26.3671875,\n              3.86425462\n            ],\n            [\n              26.71875,\n              3.86425462\n            ],\n            [\n              26.71875,\n              3.51342105\n            ],\n            [\n              26.3671875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              3.86425462\n            ],\n            [\n              26.3671875,\n              4.21494314\n            ],\n            [\n              26.71875,\n              4.21494314\n            ],\n            [\n              26.71875,\n              3.86425462\n            ],\n            [\n              26.3671875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              4.21494314\n            ],\n            [\n              26.3671875,\n              4.56547355\n            ],\n            [\n              26.71875,\n              4.56547355\n            ],\n            [\n              26.71875,\n              4.21494314\n            ],\n            [\n              26.3671875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              4.56547355\n            ],\n            [\n              26.3671875,\n              4.9158328\n            ],\n            [\n              26.71875,\n              4.9158328\n            ],\n            [\n              26.71875,\n              4.56547355\n            ],\n            [\n              26.3671875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              4.9158328\n            ],\n            [\n              26.3671875,\n              5.26600788\n            ],\n            [\n              26.71875,\n              5.26600788\n            ],\n            [\n              26.71875,\n              4.9158328\n            ],\n            [\n              26.3671875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              5.26600788\n            ],\n            [\n              26.3671875,\n              5.61598582\n            ],\n            [\n              26.71875,\n              5.61598582\n            ],\n            [\n              26.71875,\n              5.26600788\n            ],\n            [\n              26.3671875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              5.61598582\n            ],\n            [\n              26.3671875,\n              5.96575367\n            ],\n            [\n              26.71875,\n              5.96575367\n            ],\n            [\n              26.71875,\n              5.61598582\n            ],\n            [\n              26.3671875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              5.96575367\n            ],\n            [\n              26.3671875,\n              6.31529854\n            ],\n            [\n              26.71875,\n              6.31529854\n            ],\n            [\n              26.71875,\n              5.96575367\n            ],\n            [\n              26.3671875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              6.31529854\n            ],\n            [\n              26.3671875,\n              6.66460756\n            ],\n            [\n              26.71875,\n              6.66460756\n            ],\n            [\n              26.71875,\n              6.31529854\n            ],\n            [\n              26.3671875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              6.66460756\n            ],\n            [\n              26.3671875,\n              7.01366793\n            ],\n            [\n              26.71875,\n              7.01366793\n            ],\n            [\n              26.71875,\n              6.66460756\n            ],\n            [\n              26.3671875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              7.01366793\n            ],\n            [\n              26.3671875,\n              7.36246687\n            ],\n            [\n              26.71875,\n              7.36246687\n            ],\n            [\n              26.71875,\n              7.01366793\n            ],\n            [\n              26.3671875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              7.36246687\n            ],\n            [\n              26.3671875,\n              7.71099166\n            ],\n            [\n              26.71875,\n              7.71099166\n            ],\n            [\n              26.71875,\n              7.36246687\n            ],\n            [\n              26.3671875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              7.71099166\n            ],\n            [\n              26.3671875,\n              8.05922963\n            ],\n            [\n              26.71875,\n              8.05922963\n            ],\n            [\n              26.71875,\n              7.71099166\n            ],\n            [\n              26.3671875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              8.05922963\n            ],\n            [\n              26.3671875,\n              8.40716816\n            ],\n            [\n              26.71875,\n              8.40716816\n            ],\n            [\n              26.71875,\n              8.05922963\n            ],\n            [\n              26.3671875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              8.40716816\n            ],\n            [\n              26.3671875,\n              8.7547947\n            ],\n            [\n              26.71875,\n              8.7547947\n            ],\n            [\n              26.71875,\n              8.40716816\n            ],\n            [\n              26.3671875,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              8.7547947\n            ],\n            [\n              26.3671875,\n              9.10209674\n            ],\n            [\n              26.71875,\n              9.10209674\n            ],\n            [\n              26.71875,\n              8.7547947\n            ],\n            [\n              26.3671875,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              9.10209674\n            ],\n            [\n              26.3671875,\n              9.44906183\n            ],\n            [\n              26.71875,\n              9.44906183\n            ],\n            [\n              26.71875,\n              9.10209674\n            ],\n            [\n              26.3671875,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.3671875,\n              9.44906183\n            ],\n            [\n              26.3671875,\n              9.79567758\n            ],\n            [\n              26.71875,\n              9.79567758\n            ],\n            [\n              26.71875,\n              9.44906183\n            ],\n            [\n              26.3671875,\n              9.44906183\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -0.35156029\n            ],\n            [\n              26.71875,\n              0\n            ],\n            [\n              27.0703125,\n              0\n            ],\n            [\n              27.0703125,\n              -0.35156029\n            ],\n            [\n              26.71875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -0.70310735\n            ],\n            [\n              26.71875,\n              -0.35156029\n            ],\n            [\n              27.0703125,\n              -0.35156029\n            ],\n            [\n              27.0703125,\n              -0.70310735\n            ],\n            [\n              26.71875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -1.05462794\n            ],\n            [\n              26.71875,\n              -0.70310735\n            ],\n            [\n              27.0703125,\n              -0.70310735\n            ],\n            [\n              27.0703125,\n              -1.05462794\n            ],\n            [\n              26.71875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -1.40610884\n            ],\n            [\n              26.71875,\n              -1.05462794\n            ],\n            [\n              27.0703125,\n              -1.05462794\n            ],\n            [\n              27.0703125,\n              -1.40610884\n            ],\n            [\n              26.71875,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -1.75753681\n            ],\n            [\n              26.71875,\n              -1.40610884\n            ],\n            [\n              27.0703125,\n              -1.40610884\n            ],\n            [\n              27.0703125,\n              -1.75753681\n            ],\n            [\n              26.71875,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -2.10889866\n            ],\n            [\n              26.71875,\n              -1.75753681\n            ],\n            [\n              27.0703125,\n              -1.75753681\n            ],\n            [\n              27.0703125,\n              -2.10889866\n            ],\n            [\n              26.71875,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -2.46018118\n            ],\n            [\n              26.71875,\n              -2.10889866\n            ],\n            [\n              27.0703125,\n              -2.10889866\n            ],\n            [\n              27.0703125,\n              -2.46018118\n            ],\n            [\n              26.71875,\n              -2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -2.81137119\n            ],\n            [\n              26.71875,\n              -2.46018118\n            ],\n            [\n              27.0703125,\n              -2.46018118\n            ],\n            [\n              27.0703125,\n              -2.81137119\n            ],\n            [\n              26.71875,\n              -2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -3.16245553\n            ],\n            [\n              26.71875,\n              -2.81137119\n            ],\n            [\n              27.0703125,\n              -2.81137119\n            ],\n            [\n              27.0703125,\n              -3.16245553\n            ],\n            [\n              26.71875,\n              -3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              -3.51342105\n            ],\n            [\n              26.71875,\n              -3.16245553\n            ],\n            [\n              27.0703125,\n              -3.16245553\n            ],\n            [\n              27.0703125,\n              -3.51342105\n            ],\n            [\n              26.71875,\n              -3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              0\n            ],\n            [\n              26.71875,\n              0.35156029\n            ],\n            [\n              27.0703125,\n              0.35156029\n            ],\n            [\n              27.0703125,\n              0\n            ],\n            [\n              26.71875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              0.35156029\n            ],\n            [\n              26.71875,\n              0.70310735\n            ],\n            [\n              27.0703125,\n              0.70310735\n            ],\n            [\n              27.0703125,\n              0.35156029\n            ],\n            [\n              26.71875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              0.70310735\n            ],\n            [\n              26.71875,\n              1.05462794\n            ],\n            [\n              27.0703125,\n              1.05462794\n            ],\n            [\n              27.0703125,\n              0.70310735\n            ],\n            [\n              26.71875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              1.05462794\n            ],\n            [\n              26.71875,\n              1.40610884\n            ],\n            [\n              27.0703125,\n              1.40610884\n            ],\n            [\n              27.0703125,\n              1.05462794\n            ],\n            [\n              26.71875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              1.40610884\n            ],\n            [\n              26.71875,\n              1.75753681\n            ],\n            [\n              27.0703125,\n              1.75753681\n            ],\n            [\n              27.0703125,\n              1.40610884\n            ],\n            [\n              26.71875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              1.75753681\n            ],\n            [\n              26.71875,\n              2.10889866\n            ],\n            [\n              27.0703125,\n              2.10889866\n            ],\n            [\n              27.0703125,\n              1.75753681\n            ],\n            [\n              26.71875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              2.10889866\n            ],\n            [\n              26.71875,\n              2.46018118\n            ],\n            [\n              27.0703125,\n              2.46018118\n            ],\n            [\n              27.0703125,\n              2.10889866\n            ],\n            [\n              26.71875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              2.46018118\n            ],\n            [\n              26.71875,\n              2.81137119\n            ],\n            [\n              27.0703125,\n              2.81137119\n            ],\n            [\n              27.0703125,\n              2.46018118\n            ],\n            [\n              26.71875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              2.81137119\n            ],\n            [\n              26.71875,\n              3.16245553\n            ],\n            [\n              27.0703125,\n              3.16245553\n            ],\n            [\n              27.0703125,\n              2.81137119\n            ],\n            [\n              26.71875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              3.16245553\n            ],\n            [\n              26.71875,\n              3.51342105\n            ],\n            [\n              27.0703125,\n              3.51342105\n            ],\n            [\n              27.0703125,\n              3.16245553\n            ],\n            [\n              26.71875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              3.51342105\n            ],\n            [\n              26.71875,\n              3.86425462\n            ],\n            [\n              27.0703125,\n              3.86425462\n            ],\n            [\n              27.0703125,\n              3.51342105\n            ],\n            [\n              26.71875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              3.86425462\n            ],\n            [\n              26.71875,\n              4.21494314\n            ],\n            [\n              27.0703125,\n              4.21494314\n            ],\n            [\n              27.0703125,\n              3.86425462\n            ],\n            [\n              26.71875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              4.21494314\n            ],\n            [\n              26.71875,\n              4.56547355\n            ],\n            [\n              27.0703125,\n              4.56547355\n            ],\n            [\n              27.0703125,\n              4.21494314\n            ],\n            [\n              26.71875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              4.56547355\n            ],\n            [\n              26.71875,\n              4.9158328\n            ],\n            [\n              27.0703125,\n              4.9158328\n            ],\n            [\n              27.0703125,\n              4.56547355\n            ],\n            [\n              26.71875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              4.9158328\n            ],\n            [\n              26.71875,\n              5.26600788\n            ],\n            [\n              27.0703125,\n              5.26600788\n            ],\n            [\n              27.0703125,\n              4.9158328\n            ],\n            [\n              26.71875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              5.26600788\n            ],\n            [\n              26.71875,\n              5.61598582\n            ],\n            [\n              27.0703125,\n              5.61598582\n            ],\n            [\n              27.0703125,\n              5.26600788\n            ],\n            [\n              26.71875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              5.61598582\n            ],\n            [\n              26.71875,\n              5.96575367\n            ],\n            [\n              27.0703125,\n              5.96575367\n            ],\n            [\n              27.0703125,\n              5.61598582\n            ],\n            [\n              26.71875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              5.96575367\n            ],\n            [\n              26.71875,\n              6.31529854\n            ],\n            [\n              27.0703125,\n              6.31529854\n            ],\n            [\n              27.0703125,\n              5.96575367\n            ],\n            [\n              26.71875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              6.31529854\n            ],\n            [\n              26.71875,\n              6.66460756\n            ],\n            [\n              27.0703125,\n              6.66460756\n            ],\n            [\n              27.0703125,\n              6.31529854\n            ],\n            [\n              26.71875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              6.66460756\n            ],\n            [\n              26.71875,\n              7.01366793\n            ],\n            [\n              27.0703125,\n              7.01366793\n            ],\n            [\n              27.0703125,\n              6.66460756\n            ],\n            [\n              26.71875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              7.01366793\n            ],\n            [\n              26.71875,\n              7.36246687\n            ],\n            [\n              27.0703125,\n              7.36246687\n            ],\n            [\n              27.0703125,\n              7.01366793\n            ],\n            [\n              26.71875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              7.36246687\n            ],\n            [\n              26.71875,\n              7.71099166\n            ],\n            [\n              27.0703125,\n              7.71099166\n            ],\n            [\n              27.0703125,\n              7.36246687\n            ],\n            [\n              26.71875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              7.71099166\n            ],\n            [\n              26.71875,\n              8.05922963\n            ],\n            [\n              27.0703125,\n              8.05922963\n            ],\n            [\n              27.0703125,\n              7.71099166\n            ],\n            [\n              26.71875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              8.05922963\n            ],\n            [\n              26.71875,\n              8.40716816\n            ],\n            [\n              27.0703125,\n              8.40716816\n            ],\n            [\n              27.0703125,\n              8.05922963\n            ],\n            [\n              26.71875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              8.40716816\n            ],\n            [\n              26.71875,\n              8.7547947\n            ],\n            [\n              27.0703125,\n              8.7547947\n            ],\n            [\n              27.0703125,\n              8.40716816\n            ],\n            [\n              26.71875,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              8.7547947\n            ],\n            [\n              26.71875,\n              9.10209674\n            ],\n            [\n              27.0703125,\n              9.10209674\n            ],\n            [\n              27.0703125,\n              8.7547947\n            ],\n            [\n              26.71875,\n              8.7547947\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.71875,\n              9.10209674\n            ],\n            [\n              26.71875,\n              9.44906183\n            ],\n            [\n              27.0703125,\n              9.44906183\n            ],\n            [\n              27.0703125,\n              9.10209674\n            ],\n            [\n              26.71875,\n              9.10209674\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              -0.35156029\n            ],\n            [\n              27.0703125,\n              0\n            ],\n            [\n              27.421875,\n              0\n            ],\n            [\n              27.421875,\n              -0.35156029\n            ],\n            [\n              27.0703125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              -0.70310735\n            ],\n            [\n              27.0703125,\n              -0.35156029\n            ],\n            [\n              27.421875,\n              -0.35156029\n            ],\n            [\n              27.421875,\n              -0.70310735\n            ],\n            [\n              27.0703125,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              -1.05462794\n            ],\n            [\n              27.0703125,\n              -0.70310735\n            ],\n            [\n              27.421875,\n              -0.70310735\n            ],\n            [\n              27.421875,\n              -1.05462794\n            ],\n            [\n              27.0703125,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              -1.40610884\n            ],\n            [\n              27.0703125,\n              -1.05462794\n            ],\n            [\n              27.421875,\n              -1.05462794\n            ],\n            [\n              27.421875,\n              -1.40610884\n            ],\n            [\n              27.0703125,\n              -1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              -1.75753681\n            ],\n            [\n              27.0703125,\n              -1.40610884\n            ],\n            [\n              27.421875,\n              -1.40610884\n            ],\n            [\n              27.421875,\n              -1.75753681\n            ],\n            [\n              27.0703125,\n              -1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              -2.10889866\n            ],\n            [\n              27.0703125,\n              -1.75753681\n            ],\n            [\n              27.421875,\n              -1.75753681\n            ],\n            [\n              27.421875,\n              -2.10889866\n            ],\n            [\n              27.0703125,\n              -2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              0\n            ],\n            [\n              27.0703125,\n              0.35156029\n            ],\n            [\n              27.421875,\n              0.35156029\n            ],\n            [\n              27.421875,\n              0\n            ],\n            [\n              27.0703125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              0.35156029\n            ],\n            [\n              27.0703125,\n              0.70310735\n            ],\n            [\n              27.421875,\n              0.70310735\n            ],\n            [\n              27.421875,\n              0.35156029\n            ],\n            [\n              27.0703125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              0.70310735\n            ],\n            [\n              27.0703125,\n              1.05462794\n            ],\n            [\n              27.421875,\n              1.05462794\n            ],\n            [\n              27.421875,\n              0.70310735\n            ],\n            [\n              27.0703125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              1.05462794\n            ],\n            [\n              27.0703125,\n              1.40610884\n            ],\n            [\n              27.421875,\n              1.40610884\n            ],\n            [\n              27.421875,\n              1.05462794\n            ],\n            [\n              27.0703125,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              1.40610884\n            ],\n            [\n              27.0703125,\n              1.75753681\n            ],\n            [\n              27.421875,\n              1.75753681\n            ],\n            [\n              27.421875,\n              1.40610884\n            ],\n            [\n              27.0703125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              1.75753681\n            ],\n            [\n              27.0703125,\n              2.10889866\n            ],\n            [\n              27.421875,\n              2.10889866\n            ],\n            [\n              27.421875,\n              1.75753681\n            ],\n            [\n              27.0703125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              2.10889866\n            ],\n            [\n              27.0703125,\n              2.46018118\n            ],\n            [\n              27.421875,\n              2.46018118\n            ],\n            [\n              27.421875,\n              2.10889866\n            ],\n            [\n              27.0703125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              2.46018118\n            ],\n            [\n              27.0703125,\n              2.81137119\n            ],\n            [\n              27.421875,\n              2.81137119\n            ],\n            [\n              27.421875,\n              2.46018118\n            ],\n            [\n              27.0703125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              2.81137119\n            ],\n            [\n              27.0703125,\n              3.16245553\n            ],\n            [\n              27.421875,\n              3.16245553\n            ],\n            [\n              27.421875,\n              2.81137119\n            ],\n            [\n              27.0703125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              3.16245553\n            ],\n            [\n              27.0703125,\n              3.51342105\n            ],\n            [\n              27.421875,\n              3.51342105\n            ],\n            [\n              27.421875,\n              3.16245553\n            ],\n            [\n              27.0703125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              3.51342105\n            ],\n            [\n              27.0703125,\n              3.86425462\n            ],\n            [\n              27.421875,\n              3.86425462\n            ],\n            [\n              27.421875,\n              3.51342105\n            ],\n            [\n              27.0703125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              3.86425462\n            ],\n            [\n              27.0703125,\n              4.21494314\n            ],\n            [\n              27.421875,\n              4.21494314\n            ],\n            [\n              27.421875,\n              3.86425462\n            ],\n            [\n              27.0703125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              4.21494314\n            ],\n            [\n              27.0703125,\n              4.56547355\n            ],\n            [\n              27.421875,\n              4.56547355\n            ],\n            [\n              27.421875,\n              4.21494314\n            ],\n            [\n              27.0703125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              4.56547355\n            ],\n            [\n              27.0703125,\n              4.9158328\n            ],\n            [\n              27.421875,\n              4.9158328\n            ],\n            [\n              27.421875,\n              4.56547355\n            ],\n            [\n              27.0703125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              4.9158328\n            ],\n            [\n              27.0703125,\n              5.26600788\n            ],\n            [\n              27.421875,\n              5.26600788\n            ],\n            [\n              27.421875,\n              4.9158328\n            ],\n            [\n              27.0703125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              5.26600788\n            ],\n            [\n              27.0703125,\n              5.61598582\n            ],\n            [\n              27.421875,\n              5.61598582\n            ],\n            [\n              27.421875,\n              5.26600788\n            ],\n            [\n              27.0703125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              5.61598582\n            ],\n            [\n              27.0703125,\n              5.96575367\n            ],\n            [\n              27.421875,\n              5.96575367\n            ],\n            [\n              27.421875,\n              5.61598582\n            ],\n            [\n              27.0703125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              5.96575367\n            ],\n            [\n              27.0703125,\n              6.31529854\n            ],\n            [\n              27.421875,\n              6.31529854\n            ],\n            [\n              27.421875,\n              5.96575367\n            ],\n            [\n              27.0703125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              6.31529854\n            ],\n            [\n              27.0703125,\n              6.66460756\n            ],\n            [\n              27.421875,\n              6.66460756\n            ],\n            [\n              27.421875,\n              6.31529854\n            ],\n            [\n              27.0703125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              6.66460756\n            ],\n            [\n              27.0703125,\n              7.01366793\n            ],\n            [\n              27.421875,\n              7.01366793\n            ],\n            [\n              27.421875,\n              6.66460756\n            ],\n            [\n              27.0703125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              7.01366793\n            ],\n            [\n              27.0703125,\n              7.36246687\n            ],\n            [\n              27.421875,\n              7.36246687\n            ],\n            [\n              27.421875,\n              7.01366793\n            ],\n            [\n              27.0703125,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              7.36246687\n            ],\n            [\n              27.0703125,\n              7.71099166\n            ],\n            [\n              27.421875,\n              7.71099166\n            ],\n            [\n              27.421875,\n              7.36246687\n            ],\n            [\n              27.0703125,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              7.71099166\n            ],\n            [\n              27.0703125,\n              8.05922963\n            ],\n            [\n              27.421875,\n              8.05922963\n            ],\n            [\n              27.421875,\n              7.71099166\n            ],\n            [\n              27.0703125,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              8.05922963\n            ],\n            [\n              27.0703125,\n              8.40716816\n            ],\n            [\n              27.421875,\n              8.40716816\n            ],\n            [\n              27.421875,\n              8.05922963\n            ],\n            [\n              27.0703125,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.0703125,\n              8.40716816\n            ],\n            [\n              27.0703125,\n              8.7547947\n            ],\n            [\n              27.421875,\n              8.7547947\n            ],\n            [\n              27.421875,\n              8.40716816\n            ],\n            [\n              27.0703125,\n              8.40716816\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              -0.35156029\n            ],\n            [\n              27.421875,\n              0\n            ],\n            [\n              27.7734375,\n              0\n            ],\n            [\n              27.7734375,\n              -0.35156029\n            ],\n            [\n              27.421875,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              -0.70310735\n            ],\n            [\n              27.421875,\n              -0.35156029\n            ],\n            [\n              27.7734375,\n              -0.35156029\n            ],\n            [\n              27.7734375,\n              -0.70310735\n            ],\n            [\n              27.421875,\n              -0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              -1.05462794\n            ],\n            [\n              27.421875,\n              -0.70310735\n            ],\n            [\n              27.7734375,\n              -0.70310735\n            ],\n            [\n              27.7734375,\n              -1.05462794\n            ],\n            [\n              27.421875,\n              -1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              0\n            ],\n            [\n              27.421875,\n              0.35156029\n            ],\n            [\n              27.7734375,\n              0.35156029\n            ],\n            [\n              27.7734375,\n              0\n            ],\n            [\n              27.421875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              0.35156029\n            ],\n            [\n              27.421875,\n              0.70310735\n            ],\n            [\n              27.7734375,\n              0.70310735\n            ],\n            [\n              27.7734375,\n              0.35156029\n            ],\n            [\n              27.421875,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              0.70310735\n            ],\n            [\n              27.421875,\n              1.05462794\n            ],\n            [\n              27.7734375,\n              1.05462794\n            ],\n            [\n              27.7734375,\n              0.70310735\n            ],\n            [\n              27.421875,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              1.05462794\n            ],\n            [\n              27.421875,\n              1.40610884\n            ],\n            [\n              27.7734375,\n              1.40610884\n            ],\n            [\n              27.7734375,\n              1.05462794\n            ],\n            [\n              27.421875,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              1.40610884\n            ],\n            [\n              27.421875,\n              1.75753681\n            ],\n            [\n              27.7734375,\n              1.75753681\n            ],\n            [\n              27.7734375,\n              1.40610884\n            ],\n            [\n              27.421875,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              1.75753681\n            ],\n            [\n              27.421875,\n              2.10889866\n            ],\n            [\n              27.7734375,\n              2.10889866\n            ],\n            [\n              27.7734375,\n              1.75753681\n            ],\n            [\n              27.421875,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              2.10889866\n            ],\n            [\n              27.421875,\n              2.46018118\n            ],\n            [\n              27.7734375,\n              2.46018118\n            ],\n            [\n              27.7734375,\n              2.10889866\n            ],\n            [\n              27.421875,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              2.46018118\n            ],\n            [\n              27.421875,\n              2.81137119\n            ],\n            [\n              27.7734375,\n              2.81137119\n            ],\n            [\n              27.7734375,\n              2.46018118\n            ],\n            [\n              27.421875,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              2.81137119\n            ],\n            [\n              27.421875,\n              3.16245553\n            ],\n            [\n              27.7734375,\n              3.16245553\n            ],\n            [\n              27.7734375,\n              2.81137119\n            ],\n            [\n              27.421875,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              3.16245553\n            ],\n            [\n              27.421875,\n              3.51342105\n            ],\n            [\n              27.7734375,\n              3.51342105\n            ],\n            [\n              27.7734375,\n              3.16245553\n            ],\n            [\n              27.421875,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              3.51342105\n            ],\n            [\n              27.421875,\n              3.86425462\n            ],\n            [\n              27.7734375,\n              3.86425462\n            ],\n            [\n              27.7734375,\n              3.51342105\n            ],\n            [\n              27.421875,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              3.86425462\n            ],\n            [\n              27.421875,\n              4.21494314\n            ],\n            [\n              27.7734375,\n              4.21494314\n            ],\n            [\n              27.7734375,\n              3.86425462\n            ],\n            [\n              27.421875,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              4.21494314\n            ],\n            [\n              27.421875,\n              4.56547355\n            ],\n            [\n              27.7734375,\n              4.56547355\n            ],\n            [\n              27.7734375,\n              4.21494314\n            ],\n            [\n              27.421875,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              4.56547355\n            ],\n            [\n              27.421875,\n              4.9158328\n            ],\n            [\n              27.7734375,\n              4.9158328\n            ],\n            [\n              27.7734375,\n              4.56547355\n            ],\n            [\n              27.421875,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              4.9158328\n            ],\n            [\n              27.421875,\n              5.26600788\n            ],\n            [\n              27.7734375,\n              5.26600788\n            ],\n            [\n              27.7734375,\n              4.9158328\n            ],\n            [\n              27.421875,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              5.26600788\n            ],\n            [\n              27.421875,\n              5.61598582\n            ],\n            [\n              27.7734375,\n              5.61598582\n            ],\n            [\n              27.7734375,\n              5.26600788\n            ],\n            [\n              27.421875,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              5.61598582\n            ],\n            [\n              27.421875,\n              5.96575367\n            ],\n            [\n              27.7734375,\n              5.96575367\n            ],\n            [\n              27.7734375,\n              5.61598582\n            ],\n            [\n              27.421875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              5.96575367\n            ],\n            [\n              27.421875,\n              6.31529854\n            ],\n            [\n              27.7734375,\n              6.31529854\n            ],\n            [\n              27.7734375,\n              5.96575367\n            ],\n            [\n              27.421875,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              6.31529854\n            ],\n            [\n              27.421875,\n              6.66460756\n            ],\n            [\n              27.7734375,\n              6.66460756\n            ],\n            [\n              27.7734375,\n              6.31529854\n            ],\n            [\n              27.421875,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              6.66460756\n            ],\n            [\n              27.421875,\n              7.01366793\n            ],\n            [\n              27.7734375,\n              7.01366793\n            ],\n            [\n              27.7734375,\n              6.66460756\n            ],\n            [\n              27.421875,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              7.01366793\n            ],\n            [\n              27.421875,\n              7.36246687\n            ],\n            [\n              27.7734375,\n              7.36246687\n            ],\n            [\n              27.7734375,\n              7.01366793\n            ],\n            [\n              27.421875,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              7.36246687\n            ],\n            [\n              27.421875,\n              7.71099166\n            ],\n            [\n              27.7734375,\n              7.71099166\n            ],\n            [\n              27.7734375,\n              7.36246687\n            ],\n            [\n              27.421875,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              7.71099166\n            ],\n            [\n              27.421875,\n              8.05922963\n            ],\n            [\n              27.7734375,\n              8.05922963\n            ],\n            [\n              27.7734375,\n              7.71099166\n            ],\n            [\n              27.421875,\n              7.71099166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.421875,\n              8.05922963\n            ],\n            [\n              27.421875,\n              8.40716816\n            ],\n            [\n              27.7734375,\n              8.40716816\n            ],\n            [\n              27.7734375,\n              8.05922963\n            ],\n            [\n              27.421875,\n              8.05922963\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              0.35156029\n            ],\n            [\n              27.7734375,\n              0.70310735\n            ],\n            [\n              28.125,\n              0.70310735\n            ],\n            [\n              28.125,\n              0.35156029\n            ],\n            [\n              27.7734375,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              0.70310735\n            ],\n            [\n              27.7734375,\n              1.05462794\n            ],\n            [\n              28.125,\n              1.05462794\n            ],\n            [\n              28.125,\n              0.70310735\n            ],\n            [\n              27.7734375,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              1.05462794\n            ],\n            [\n              27.7734375,\n              1.40610884\n            ],\n            [\n              28.125,\n              1.40610884\n            ],\n            [\n              28.125,\n              1.05462794\n            ],\n            [\n              27.7734375,\n              1.05462794\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              1.40610884\n            ],\n            [\n              27.7734375,\n              1.75753681\n            ],\n            [\n              28.125,\n              1.75753681\n            ],\n            [\n              28.125,\n              1.40610884\n            ],\n            [\n              27.7734375,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              1.75753681\n            ],\n            [\n              27.7734375,\n              2.10889866\n            ],\n            [\n              28.125,\n              2.10889866\n            ],\n            [\n              28.125,\n              1.75753681\n            ],\n            [\n              27.7734375,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              2.10889866\n            ],\n            [\n              27.7734375,\n              2.46018118\n            ],\n            [\n              28.125,\n              2.46018118\n            ],\n            [\n              28.125,\n              2.10889866\n            ],\n            [\n              27.7734375,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              2.46018118\n            ],\n            [\n              27.7734375,\n              2.81137119\n            ],\n            [\n              28.125,\n              2.81137119\n            ],\n            [\n              28.125,\n              2.46018118\n            ],\n            [\n              27.7734375,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              2.81137119\n            ],\n            [\n              27.7734375,\n              3.16245553\n            ],\n            [\n              28.125,\n              3.16245553\n            ],\n            [\n              28.125,\n              2.81137119\n            ],\n            [\n              27.7734375,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              3.16245553\n            ],\n            [\n              27.7734375,\n              3.51342105\n            ],\n            [\n              28.125,\n              3.51342105\n            ],\n            [\n              28.125,\n              3.16245553\n            ],\n            [\n              27.7734375,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              3.51342105\n            ],\n            [\n              27.7734375,\n              3.86425462\n            ],\n            [\n              28.125,\n              3.86425462\n            ],\n            [\n              28.125,\n              3.51342105\n            ],\n            [\n              27.7734375,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              3.86425462\n            ],\n            [\n              27.7734375,\n              4.21494314\n            ],\n            [\n              28.125,\n              4.21494314\n            ],\n            [\n              28.125,\n              3.86425462\n            ],\n            [\n              27.7734375,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              4.21494314\n            ],\n            [\n              27.7734375,\n              4.56547355\n            ],\n            [\n              28.125,\n              4.56547355\n            ],\n            [\n              28.125,\n              4.21494314\n            ],\n            [\n              27.7734375,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              4.56547355\n            ],\n            [\n              27.7734375,\n              4.9158328\n            ],\n            [\n              28.125,\n              4.9158328\n            ],\n            [\n              28.125,\n              4.56547355\n            ],\n            [\n              27.7734375,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              4.9158328\n            ],\n            [\n              27.7734375,\n              5.26600788\n            ],\n            [\n              28.125,\n              5.26600788\n            ],\n            [\n              28.125,\n              4.9158328\n            ],\n            [\n              27.7734375,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              5.26600788\n            ],\n            [\n              27.7734375,\n              5.61598582\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              28.125,\n              5.26600788\n            ],\n            [\n              27.7734375,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              5.61598582\n            ],\n            [\n              27.7734375,\n              5.96575367\n            ],\n            [\n              28.125,\n              5.96575367\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              27.7734375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              5.96575367\n            ],\n            [\n              27.7734375,\n              6.31529854\n            ],\n            [\n              28.125,\n              6.31529854\n            ],\n            [\n              28.125,\n              5.96575367\n            ],\n            [\n              27.7734375,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              6.31529854\n            ],\n            [\n              27.7734375,\n              6.66460756\n            ],\n            [\n              28.125,\n              6.66460756\n            ],\n            [\n              28.125,\n              6.31529854\n            ],\n            [\n              27.7734375,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              6.66460756\n            ],\n            [\n              27.7734375,\n              7.01366793\n            ],\n            [\n              28.125,\n              7.01366793\n            ],\n            [\n              28.125,\n              6.66460756\n            ],\n            [\n              27.7734375,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              7.01366793\n            ],\n            [\n              27.7734375,\n              7.36246687\n            ],\n            [\n              28.125,\n              7.36246687\n            ],\n            [\n              28.125,\n              7.01366793\n            ],\n            [\n              27.7734375,\n              7.01366793\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              27.7734375,\n              7.36246687\n            ],\n            [\n              27.7734375,\n              7.71099166\n            ],\n            [\n              28.125,\n              7.71099166\n            ],\n            [\n              28.125,\n              7.36246687\n            ],\n            [\n              27.7734375,\n              7.36246687\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              1.40610884\n            ],\n            [\n              28.125,\n              1.75753681\n            ],\n            [\n              28.4765625,\n              1.75753681\n            ],\n            [\n              28.4765625,\n              1.40610884\n            ],\n            [\n              28.125,\n              1.40610884\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              1.75753681\n            ],\n            [\n              28.125,\n              2.10889866\n            ],\n            [\n              28.4765625,\n              2.10889866\n            ],\n            [\n              28.4765625,\n              1.75753681\n            ],\n            [\n              28.125,\n              1.75753681\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              2.10889866\n            ],\n            [\n              28.125,\n              2.46018118\n            ],\n            [\n              28.4765625,\n              2.46018118\n            ],\n            [\n              28.4765625,\n              2.10889866\n            ],\n            [\n              28.125,\n              2.10889866\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              2.46018118\n            ],\n            [\n              28.125,\n              2.81137119\n            ],\n            [\n              28.4765625,\n              2.81137119\n            ],\n            [\n              28.4765625,\n              2.46018118\n            ],\n            [\n              28.125,\n              2.46018118\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              2.81137119\n            ],\n            [\n              28.125,\n              3.16245553\n            ],\n            [\n              28.4765625,\n              3.16245553\n            ],\n            [\n              28.4765625,\n              2.81137119\n            ],\n            [\n              28.125,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              3.16245553\n            ],\n            [\n              28.125,\n              3.51342105\n            ],\n            [\n              28.4765625,\n              3.51342105\n            ],\n            [\n              28.4765625,\n              3.16245553\n            ],\n            [\n              28.125,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              3.51342105\n            ],\n            [\n              28.125,\n              3.86425462\n            ],\n            [\n              28.4765625,\n              3.86425462\n            ],\n            [\n              28.4765625,\n              3.51342105\n            ],\n            [\n              28.125,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              3.86425462\n            ],\n            [\n              28.125,\n              4.21494314\n            ],\n            [\n              28.4765625,\n              4.21494314\n            ],\n            [\n              28.4765625,\n              3.86425462\n            ],\n            [\n              28.125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              4.21494314\n            ],\n            [\n              28.125,\n              4.56547355\n            ],\n            [\n              28.4765625,\n              4.56547355\n            ],\n            [\n              28.4765625,\n              4.21494314\n            ],\n            [\n              28.125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              4.56547355\n            ],\n            [\n              28.125,\n              4.9158328\n            ],\n            [\n              28.4765625,\n              4.9158328\n            ],\n            [\n              28.4765625,\n              4.56547355\n            ],\n            [\n              28.125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              4.9158328\n            ],\n            [\n              28.125,\n              5.26600788\n            ],\n            [\n              28.4765625,\n              5.26600788\n            ],\n            [\n              28.4765625,\n              4.9158328\n            ],\n            [\n              28.125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              5.26600788\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              28.4765625,\n              5.61598582\n            ],\n            [\n              28.4765625,\n              5.26600788\n            ],\n            [\n              28.125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              28.125,\n              5.96575367\n            ],\n            [\n              28.4765625,\n              5.96575367\n            ],\n            [\n              28.4765625,\n              5.61598582\n            ],\n            [\n              28.125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              5.96575367\n            ],\n            [\n              28.125,\n              6.31529854\n            ],\n            [\n              28.4765625,\n              6.31529854\n            ],\n            [\n              28.4765625,\n              5.96575367\n            ],\n            [\n              28.125,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              6.31529854\n            ],\n            [\n              28.125,\n              6.66460756\n            ],\n            [\n              28.4765625,\n              6.66460756\n            ],\n            [\n              28.4765625,\n              6.31529854\n            ],\n            [\n              28.125,\n              6.31529854\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              6.66460756\n            ],\n            [\n              28.125,\n              7.01366793\n            ],\n            [\n              28.4765625,\n              7.01366793\n            ],\n            [\n              28.4765625,\n              6.66460756\n            ],\n            [\n              28.125,\n              6.66460756\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              2.81137119\n            ],\n            [\n              28.4765625,\n              3.16245553\n            ],\n            [\n              28.828125,\n              3.16245553\n            ],\n            [\n              28.828125,\n              2.81137119\n            ],\n            [\n              28.4765625,\n              2.81137119\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              3.16245553\n            ],\n            [\n              28.4765625,\n              3.51342105\n            ],\n            [\n              28.828125,\n              3.51342105\n            ],\n            [\n              28.828125,\n              3.16245553\n            ],\n            [\n              28.4765625,\n              3.16245553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              3.51342105\n            ],\n            [\n              28.4765625,\n              3.86425462\n            ],\n            [\n              28.828125,\n              3.86425462\n            ],\n            [\n              28.828125,\n              3.51342105\n            ],\n            [\n              28.4765625,\n              3.51342105\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              3.86425462\n            ],\n            [\n              28.4765625,\n              4.21494314\n            ],\n            [\n              28.828125,\n              4.21494314\n            ],\n            [\n              28.828125,\n              3.86425462\n            ],\n            [\n              28.4765625,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              4.21494314\n            ],\n            [\n              28.4765625,\n              4.56547355\n            ],\n            [\n              28.828125,\n              4.56547355\n            ],\n            [\n              28.828125,\n              4.21494314\n            ],\n            [\n              28.4765625,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              4.56547355\n            ],\n            [\n              28.4765625,\n              4.9158328\n            ],\n            [\n              28.828125,\n              4.9158328\n            ],\n            [\n              28.828125,\n              4.56547355\n            ],\n            [\n              28.4765625,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              4.9158328\n            ],\n            [\n              28.4765625,\n              5.26600788\n            ],\n            [\n              28.828125,\n              5.26600788\n            ],\n            [\n              28.828125,\n              4.9158328\n            ],\n            [\n              28.4765625,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              5.26600788\n            ],\n            [\n              28.4765625,\n              5.61598582\n            ],\n            [\n              28.828125,\n              5.61598582\n            ],\n            [\n              28.828125,\n              5.26600788\n            ],\n            [\n              28.4765625,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              5.61598582\n            ],\n            [\n              28.4765625,\n              5.96575367\n            ],\n            [\n              28.828125,\n              5.96575367\n            ],\n            [\n              28.828125,\n              5.61598582\n            ],\n            [\n              28.4765625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.4765625,\n              5.96575367\n            ],\n            [\n              28.4765625,\n              6.31529854\n            ],\n            [\n              28.828125,\n              6.31529854\n            ],\n            [\n              28.828125,\n              5.96575367\n            ],\n            [\n              28.4765625,\n              5.96575367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.828125,\n              3.86425462\n            ],\n            [\n              28.828125,\n              4.21494314\n            ],\n            [\n              29.1796875,\n              4.21494314\n            ],\n            [\n              29.1796875,\n              3.86425462\n            ],\n            [\n              28.828125,\n              3.86425462\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.828125,\n              4.21494314\n            ],\n            [\n              28.828125,\n              4.56547355\n            ],\n            [\n              29.1796875,\n              4.56547355\n            ],\n            [\n              29.1796875,\n              4.21494314\n            ],\n            [\n              28.828125,\n              4.21494314\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.828125,\n              4.56547355\n            ],\n            [\n              28.828125,\n              4.9158328\n            ],\n            [\n              29.1796875,\n              4.9158328\n            ],\n            [\n              29.1796875,\n              4.56547355\n            ],\n            [\n              28.828125,\n              4.56547355\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.828125,\n              4.9158328\n            ],\n            [\n              28.828125,\n              5.26600788\n            ],\n            [\n              29.1796875,\n              5.26600788\n            ],\n            [\n              29.1796875,\n              4.9158328\n            ],\n            [\n              28.828125,\n              4.9158328\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.828125,\n              5.26600788\n            ],\n            [\n              28.828125,\n              5.61598582\n            ],\n            [\n              29.1796875,\n              5.61598582\n            ],\n            [\n              29.1796875,\n              5.26600788\n            ],\n            [\n              28.828125,\n              5.26600788\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.61132813,\n              8.667918\n            ],\n            [\n              13.44726562,\n              3.38182374\n            ],\n            [\n              15.33691406,\n              -6.09685982\n            ],\n            [\n              16.74316406,\n              1.05462794\n            ],\n            [\n              18.19335938,\n              -10.31491929\n            ],\n            [\n              19.24804688,\n              -1.40610884\n            ],\n            [\n              20.69824219,\n              -4.56547355\n            ],\n            [\n              22.58789063,\n              0.35156029\n            ],\n            [\n              24.21386719,\n              -11.73830237\n            ],\n            [\n              29.09179688,\n              5.00339435\n            ],\n            [\n              26.49902344,\n              9.75237014\n            ],\n            [\n              26.05957031,\n              7.62388685\n            ],\n            [\n              24.91699219,\n              9.44906183\n            ],\n            [\n              22.58789063,\n              6.75189646\n            ],\n            [\n              21.66503906,\n              12.5974545\n            ],\n            [\n              20.96191406,\n              8.18974234\n            ],\n            [\n              18.19335938,\n              14.3069695\n            ],\n            [\n              16.61132813,\n              8.667918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/tetris.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        16.8310546875,\n        13.025965926333539\n      ],\n      [\n        16.8310546875,\n        15.876809064146757\n      ],\n      [\n        20.10498046875,\n        15.876809064146757\n      ],\n      [\n        20.10498046875,\n        18.437924653474393\n      ],\n      [\n        24.27978515625,\n        18.437924653474393\n      ],\n      [\n        24.3017578125,\n        15.876809064146757\n      ],\n      [\n        21.9287109375,\n        15.876809064146757\n      ],\n      [\n        21.9287109375,\n        13.025965926333539\n      ],\n      [\n        16.8310546875,\n        13.025965926333539\n      ]\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/tetris_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              12.89748918\n            ],\n            [\n              16.5234375,\n              13.2399455\n            ],\n            [\n              16.875,\n              13.2399455\n            ],\n            [\n              16.875,\n              12.89748918\n            ],\n            [\n              16.5234375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              13.2399455\n            ],\n            [\n              16.5234375,\n              13.5819209\n            ],\n            [\n              16.875,\n              13.5819209\n            ],\n            [\n              16.875,\n              13.2399455\n            ],\n            [\n              16.5234375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              13.5819209\n            ],\n            [\n              16.5234375,\n              13.9234039\n            ],\n            [\n              16.875,\n              13.9234039\n            ],\n            [\n              16.875,\n              13.5819209\n            ],\n            [\n              16.5234375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              13.9234039\n            ],\n            [\n              16.5234375,\n              14.26438309\n            ],\n            [\n              16.875,\n              14.26438309\n            ],\n            [\n              16.875,\n              13.9234039\n            ],\n            [\n              16.5234375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              14.26438309\n            ],\n            [\n              16.5234375,\n              14.60484716\n            ],\n            [\n              16.875,\n              14.60484716\n            ],\n            [\n              16.875,\n              14.26438309\n            ],\n            [\n              16.5234375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              14.60484716\n            ],\n            [\n              16.5234375,\n              14.94478488\n            ],\n            [\n              16.875,\n              14.94478488\n            ],\n            [\n              16.875,\n              14.60484716\n            ],\n            [\n              16.5234375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              14.94478488\n            ],\n            [\n              16.5234375,\n              15.28418511\n            ],\n            [\n              16.875,\n              15.28418511\n            ],\n            [\n              16.875,\n              14.94478488\n            ],\n            [\n              16.5234375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              15.28418511\n            ],\n            [\n              16.5234375,\n              15.62303683\n            ],\n            [\n              16.875,\n              15.62303683\n            ],\n            [\n              16.875,\n              15.28418511\n            ],\n            [\n              16.5234375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.5234375,\n              15.62303683\n            ],\n            [\n              16.5234375,\n              15.96132908\n            ],\n            [\n              16.875,\n              15.96132908\n            ],\n            [\n              16.875,\n              15.62303683\n            ],\n            [\n              16.5234375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              12.89748918\n            ],\n            [\n              16.875,\n              13.2399455\n            ],\n            [\n              17.2265625,\n              13.2399455\n            ],\n            [\n              17.2265625,\n              12.89748918\n            ],\n            [\n              16.875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              13.2399455\n            ],\n            [\n              16.875,\n              13.5819209\n            ],\n            [\n              17.2265625,\n              13.5819209\n            ],\n            [\n              17.2265625,\n              13.2399455\n            ],\n            [\n              16.875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              13.5819209\n            ],\n            [\n              16.875,\n              13.9234039\n            ],\n            [\n              17.2265625,\n              13.9234039\n            ],\n            [\n              17.2265625,\n              13.5819209\n            ],\n            [\n              16.875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              13.9234039\n            ],\n            [\n              16.875,\n              14.26438309\n            ],\n            [\n              17.2265625,\n              14.26438309\n            ],\n            [\n              17.2265625,\n              13.9234039\n            ],\n            [\n              16.875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              14.26438309\n            ],\n            [\n              16.875,\n              14.60484716\n            ],\n            [\n              17.2265625,\n              14.60484716\n            ],\n            [\n              17.2265625,\n              14.26438309\n            ],\n            [\n              16.875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              14.60484716\n            ],\n            [\n              16.875,\n              14.94478488\n            ],\n            [\n              17.2265625,\n              14.94478488\n            ],\n            [\n              17.2265625,\n              14.60484716\n            ],\n            [\n              16.875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              14.94478488\n            ],\n            [\n              16.875,\n              15.28418511\n            ],\n            [\n              17.2265625,\n              15.28418511\n            ],\n            [\n              17.2265625,\n              14.94478488\n            ],\n            [\n              16.875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              15.28418511\n            ],\n            [\n              16.875,\n              15.62303683\n            ],\n            [\n              17.2265625,\n              15.62303683\n            ],\n            [\n              17.2265625,\n              15.28418511\n            ],\n            [\n              16.875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              15.62303683\n            ],\n            [\n              16.875,\n              15.96132908\n            ],\n            [\n              17.2265625,\n              15.96132908\n            ],\n            [\n              17.2265625,\n              15.62303683\n            ],\n            [\n              16.875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              12.89748918\n            ],\n            [\n              17.2265625,\n              13.2399455\n            ],\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.578125,\n              12.89748918\n            ],\n            [\n              17.2265625,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              13.2399455\n            ],\n            [\n              17.2265625,\n              13.5819209\n            ],\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.2265625,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              13.5819209\n            ],\n            [\n              17.2265625,\n              13.9234039\n            ],\n            [\n              17.578125,\n              13.9234039\n            ],\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.2265625,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              13.9234039\n            ],\n            [\n              17.2265625,\n              14.26438309\n            ],\n            [\n              17.578125,\n              14.26438309\n            ],\n            [\n              17.578125,\n              13.9234039\n            ],\n            [\n              17.2265625,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              14.26438309\n            ],\n            [\n              17.2265625,\n              14.60484716\n            ],\n            [\n              17.578125,\n              14.60484716\n            ],\n            [\n              17.578125,\n              14.26438309\n            ],\n            [\n              17.2265625,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              14.60484716\n            ],\n            [\n              17.2265625,\n              14.94478488\n            ],\n            [\n              17.578125,\n              14.94478488\n            ],\n            [\n              17.578125,\n              14.60484716\n            ],\n            [\n              17.2265625,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              14.94478488\n            ],\n            [\n              17.2265625,\n              15.28418511\n            ],\n            [\n              17.578125,\n              15.28418511\n            ],\n            [\n              17.578125,\n              14.94478488\n            ],\n            [\n              17.2265625,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              15.28418511\n            ],\n            [\n              17.2265625,\n              15.62303683\n            ],\n            [\n              17.578125,\n              15.62303683\n            ],\n            [\n              17.578125,\n              15.28418511\n            ],\n            [\n              17.2265625,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.2265625,\n              15.62303683\n            ],\n            [\n              17.2265625,\n              15.96132908\n            ],\n            [\n              17.578125,\n              15.96132908\n            ],\n            [\n              17.578125,\n              15.62303683\n            ],\n            [\n              17.2265625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              12.89748918\n            ],\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              17.578125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              13.2399455\n            ],\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.578125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              13.5819209\n            ],\n            [\n              17.578125,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              17.578125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              13.9234039\n            ],\n            [\n              17.578125,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              17.578125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              14.26438309\n            ],\n            [\n              17.578125,\n              14.60484716\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              17.578125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              14.60484716\n            ],\n            [\n              17.578125,\n              14.94478488\n            ],\n            [\n              17.9296875,\n              14.94478488\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              17.578125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              14.94478488\n            ],\n            [\n              17.578125,\n              15.28418511\n            ],\n            [\n              17.9296875,\n              15.28418511\n            ],\n            [\n              17.9296875,\n              14.94478488\n            ],\n            [\n              17.578125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              15.28418511\n            ],\n            [\n              17.578125,\n              15.62303683\n            ],\n            [\n              17.9296875,\n              15.62303683\n            ],\n            [\n              17.9296875,\n              15.28418511\n            ],\n            [\n              17.578125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.578125,\n              15.62303683\n            ],\n            [\n              17.578125,\n              15.96132908\n            ],\n            [\n              17.9296875,\n              15.96132908\n            ],\n            [\n              17.9296875,\n              15.62303683\n            ],\n            [\n              17.578125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              17.9296875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              17.9296875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              17.9296875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              17.9296875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              17.9296875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              14.60484716\n            ],\n            [\n              17.9296875,\n              14.94478488\n            ],\n            [\n              18.28125,\n              14.94478488\n            ],\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              17.9296875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              14.94478488\n            ],\n            [\n              17.9296875,\n              15.28418511\n            ],\n            [\n              18.28125,\n              15.28418511\n            ],\n            [\n              18.28125,\n              14.94478488\n            ],\n            [\n              17.9296875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              15.28418511\n            ],\n            [\n              17.9296875,\n              15.62303683\n            ],\n            [\n              18.28125,\n              15.62303683\n            ],\n            [\n              18.28125,\n              15.28418511\n            ],\n            [\n              17.9296875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              17.9296875,\n              15.62303683\n            ],\n            [\n              17.9296875,\n              15.96132908\n            ],\n            [\n              18.28125,\n              15.96132908\n            ],\n            [\n              18.28125,\n              15.62303683\n            ],\n            [\n              17.9296875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              12.89748918\n            ],\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.28125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.28125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.28125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.28125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              14.26438309\n            ],\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              18.6328125,\n              14.60484716\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.28125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.94478488\n            ],\n            [\n              18.6328125,\n              14.94478488\n            ],\n            [\n              18.6328125,\n              14.60484716\n            ],\n            [\n              18.28125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              14.94478488\n            ],\n            [\n              18.28125,\n              15.28418511\n            ],\n            [\n              18.6328125,\n              15.28418511\n            ],\n            [\n              18.6328125,\n              14.94478488\n            ],\n            [\n              18.28125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              15.28418511\n            ],\n            [\n              18.28125,\n              15.62303683\n            ],\n            [\n              18.6328125,\n              15.62303683\n            ],\n            [\n              18.6328125,\n              15.28418511\n            ],\n            [\n              18.28125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.28125,\n              15.62303683\n            ],\n            [\n              18.28125,\n              15.96132908\n            ],\n            [\n              18.6328125,\n              15.96132908\n            ],\n            [\n              18.6328125,\n              15.62303683\n            ],\n            [\n              18.28125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              18.6328125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              18.6328125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.984375,\n              13.9234039\n            ],\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              18.6328125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.984375,\n              14.26438309\n            ],\n            [\n              18.984375,\n              13.9234039\n            ],\n            [\n              18.6328125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              14.60484716\n            ],\n            [\n              18.984375,\n              14.60484716\n            ],\n            [\n              18.984375,\n              14.26438309\n            ],\n            [\n              18.6328125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              14.60484716\n            ],\n            [\n              18.6328125,\n              14.94478488\n            ],\n            [\n              18.984375,\n              14.94478488\n            ],\n            [\n              18.984375,\n              14.60484716\n            ],\n            [\n              18.6328125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              14.94478488\n            ],\n            [\n              18.6328125,\n              15.28418511\n            ],\n            [\n              18.984375,\n              15.28418511\n            ],\n            [\n              18.984375,\n              14.94478488\n            ],\n            [\n              18.6328125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              15.28418511\n            ],\n            [\n              18.6328125,\n              15.62303683\n            ],\n            [\n              18.984375,\n              15.62303683\n            ],\n            [\n              18.984375,\n              15.28418511\n            ],\n            [\n              18.6328125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.6328125,\n              15.62303683\n            ],\n            [\n              18.6328125,\n              15.96132908\n            ],\n            [\n              18.984375,\n              15.96132908\n            ],\n            [\n              18.984375,\n              15.62303683\n            ],\n            [\n              18.6328125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              12.89748918\n            ],\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              19.3359375,\n              13.2399455\n            ],\n            [\n              19.3359375,\n              12.89748918\n            ],\n            [\n              18.984375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              13.2399455\n            ],\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              19.3359375,\n              13.5819209\n            ],\n            [\n              19.3359375,\n              13.2399455\n            ],\n            [\n              18.984375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.9234039\n            ],\n            [\n              19.3359375,\n              13.9234039\n            ],\n            [\n              19.3359375,\n              13.5819209\n            ],\n            [\n              18.984375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              13.9234039\n            ],\n            [\n              18.984375,\n              14.26438309\n            ],\n            [\n              19.3359375,\n              14.26438309\n            ],\n            [\n              19.3359375,\n              13.9234039\n            ],\n            [\n              18.984375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              14.26438309\n            ],\n            [\n              18.984375,\n              14.60484716\n            ],\n            [\n              19.3359375,\n              14.60484716\n            ],\n            [\n              19.3359375,\n              14.26438309\n            ],\n            [\n              18.984375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              14.60484716\n            ],\n            [\n              18.984375,\n              14.94478488\n            ],\n            [\n              19.3359375,\n              14.94478488\n            ],\n            [\n              19.3359375,\n              14.60484716\n            ],\n            [\n              18.984375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              14.94478488\n            ],\n            [\n              18.984375,\n              15.28418511\n            ],\n            [\n              19.3359375,\n              15.28418511\n            ],\n            [\n              19.3359375,\n              14.94478488\n            ],\n            [\n              18.984375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              15.28418511\n            ],\n            [\n              18.984375,\n              15.62303683\n            ],\n            [\n              19.3359375,\n              15.62303683\n            ],\n            [\n              19.3359375,\n              15.28418511\n            ],\n            [\n              18.984375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.984375,\n              15.62303683\n            ],\n            [\n              18.984375,\n              15.96132908\n            ],\n            [\n              19.3359375,\n              15.96132908\n            ],\n            [\n              19.3359375,\n              15.62303683\n            ],\n            [\n              18.984375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              12.89748918\n            ],\n            [\n              19.3359375,\n              13.2399455\n            ],\n            [\n              19.6875,\n              13.2399455\n            ],\n            [\n              19.6875,\n              12.89748918\n            ],\n            [\n              19.3359375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              13.2399455\n            ],\n            [\n              19.3359375,\n              13.5819209\n            ],\n            [\n              19.6875,\n              13.5819209\n            ],\n            [\n              19.6875,\n              13.2399455\n            ],\n            [\n              19.3359375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              13.5819209\n            ],\n            [\n              19.3359375,\n              13.9234039\n            ],\n            [\n              19.6875,\n              13.9234039\n            ],\n            [\n              19.6875,\n              13.5819209\n            ],\n            [\n              19.3359375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              13.9234039\n            ],\n            [\n              19.3359375,\n              14.26438309\n            ],\n            [\n              19.6875,\n              14.26438309\n            ],\n            [\n              19.6875,\n              13.9234039\n            ],\n            [\n              19.3359375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              14.26438309\n            ],\n            [\n              19.3359375,\n              14.60484716\n            ],\n            [\n              19.6875,\n              14.60484716\n            ],\n            [\n              19.6875,\n              14.26438309\n            ],\n            [\n              19.3359375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              14.60484716\n            ],\n            [\n              19.3359375,\n              14.94478488\n            ],\n            [\n              19.6875,\n              14.94478488\n            ],\n            [\n              19.6875,\n              14.60484716\n            ],\n            [\n              19.3359375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              14.94478488\n            ],\n            [\n              19.3359375,\n              15.28418511\n            ],\n            [\n              19.6875,\n              15.28418511\n            ],\n            [\n              19.6875,\n              14.94478488\n            ],\n            [\n              19.3359375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              15.28418511\n            ],\n            [\n              19.3359375,\n              15.62303683\n            ],\n            [\n              19.6875,\n              15.62303683\n            ],\n            [\n              19.6875,\n              15.28418511\n            ],\n            [\n              19.3359375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.3359375,\n              15.62303683\n            ],\n            [\n              19.3359375,\n              15.96132908\n            ],\n            [\n              19.6875,\n              15.96132908\n            ],\n            [\n              19.6875,\n              15.62303683\n            ],\n            [\n              19.3359375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              12.89748918\n            ],\n            [\n              19.6875,\n              13.2399455\n            ],\n            [\n              20.0390625,\n              13.2399455\n            ],\n            [\n              20.0390625,\n              12.89748918\n            ],\n            [\n              19.6875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              13.2399455\n            ],\n            [\n              19.6875,\n              13.5819209\n            ],\n            [\n              20.0390625,\n              13.5819209\n            ],\n            [\n              20.0390625,\n              13.2399455\n            ],\n            [\n              19.6875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              13.5819209\n            ],\n            [\n              19.6875,\n              13.9234039\n            ],\n            [\n              20.0390625,\n              13.9234039\n            ],\n            [\n              20.0390625,\n              13.5819209\n            ],\n            [\n              19.6875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              13.9234039\n            ],\n            [\n              19.6875,\n              14.26438309\n            ],\n            [\n              20.0390625,\n              14.26438309\n            ],\n            [\n              20.0390625,\n              13.9234039\n            ],\n            [\n              19.6875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              14.26438309\n            ],\n            [\n              19.6875,\n              14.60484716\n            ],\n            [\n              20.0390625,\n              14.60484716\n            ],\n            [\n              20.0390625,\n              14.26438309\n            ],\n            [\n              19.6875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              14.60484716\n            ],\n            [\n              19.6875,\n              14.94478488\n            ],\n            [\n              20.0390625,\n              14.94478488\n            ],\n            [\n              20.0390625,\n              14.60484716\n            ],\n            [\n              19.6875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              14.94478488\n            ],\n            [\n              19.6875,\n              15.28418511\n            ],\n            [\n              20.0390625,\n              15.28418511\n            ],\n            [\n              20.0390625,\n              14.94478488\n            ],\n            [\n              19.6875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              15.28418511\n            ],\n            [\n              19.6875,\n              15.62303683\n            ],\n            [\n              20.0390625,\n              15.62303683\n            ],\n            [\n              20.0390625,\n              15.28418511\n            ],\n            [\n              19.6875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.6875,\n              15.62303683\n            ],\n            [\n              19.6875,\n              15.96132908\n            ],\n            [\n              20.0390625,\n              15.96132908\n            ],\n            [\n              20.0390625,\n              15.62303683\n            ],\n            [\n              19.6875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              12.89748918\n            ],\n            [\n              20.0390625,\n              13.2399455\n            ],\n            [\n              20.390625,\n              13.2399455\n            ],\n            [\n              20.390625,\n              12.89748918\n            ],\n            [\n              20.0390625,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              13.2399455\n            ],\n            [\n              20.0390625,\n              13.5819209\n            ],\n            [\n              20.390625,\n              13.5819209\n            ],\n            [\n              20.390625,\n              13.2399455\n            ],\n            [\n              20.0390625,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              13.5819209\n            ],\n            [\n              20.0390625,\n              13.9234039\n            ],\n            [\n              20.390625,\n              13.9234039\n            ],\n            [\n              20.390625,\n              13.5819209\n            ],\n            [\n              20.0390625,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              13.9234039\n            ],\n            [\n              20.0390625,\n              14.26438309\n            ],\n            [\n              20.390625,\n              14.26438309\n            ],\n            [\n              20.390625,\n              13.9234039\n            ],\n            [\n              20.0390625,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              14.26438309\n            ],\n            [\n              20.0390625,\n              14.60484716\n            ],\n            [\n              20.390625,\n              14.60484716\n            ],\n            [\n              20.390625,\n              14.26438309\n            ],\n            [\n              20.0390625,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              14.60484716\n            ],\n            [\n              20.0390625,\n              14.94478488\n            ],\n            [\n              20.390625,\n              14.94478488\n            ],\n            [\n              20.390625,\n              14.60484716\n            ],\n            [\n              20.0390625,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              14.94478488\n            ],\n            [\n              20.0390625,\n              15.28418511\n            ],\n            [\n              20.390625,\n              15.28418511\n            ],\n            [\n              20.390625,\n              14.94478488\n            ],\n            [\n              20.0390625,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              15.28418511\n            ],\n            [\n              20.0390625,\n              15.62303683\n            ],\n            [\n              20.390625,\n              15.62303683\n            ],\n            [\n              20.390625,\n              15.28418511\n            ],\n            [\n              20.0390625,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              15.62303683\n            ],\n            [\n              20.0390625,\n              15.96132908\n            ],\n            [\n              20.390625,\n              15.96132908\n            ],\n            [\n              20.390625,\n              15.62303683\n            ],\n            [\n              20.0390625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              15.96132908\n            ],\n            [\n              20.0390625,\n              16.29905101\n            ],\n            [\n              20.390625,\n              16.29905101\n            ],\n            [\n              20.390625,\n              15.96132908\n            ],\n            [\n              20.0390625,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              16.29905101\n            ],\n            [\n              20.0390625,\n              16.63619188\n            ],\n            [\n              20.390625,\n              16.63619188\n            ],\n            [\n              20.390625,\n              16.29905101\n            ],\n            [\n              20.0390625,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              16.63619188\n            ],\n            [\n              20.0390625,\n              16.97274102\n            ],\n            [\n              20.390625,\n              16.97274102\n            ],\n            [\n              20.390625,\n              16.63619188\n            ],\n            [\n              20.0390625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              16.97274102\n            ],\n            [\n              20.0390625,\n              17.30868789\n            ],\n            [\n              20.390625,\n              17.30868789\n            ],\n            [\n              20.390625,\n              16.97274102\n            ],\n            [\n              20.0390625,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              17.30868789\n            ],\n            [\n              20.0390625,\n              17.64402203\n            ],\n            [\n              20.390625,\n              17.64402203\n            ],\n            [\n              20.390625,\n              17.30868789\n            ],\n            [\n              20.0390625,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              17.64402203\n            ],\n            [\n              20.0390625,\n              17.9787331\n            ],\n            [\n              20.390625,\n              17.9787331\n            ],\n            [\n              20.390625,\n              17.64402203\n            ],\n            [\n              20.0390625,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              17.9787331\n            ],\n            [\n              20.0390625,\n              18.31281085\n            ],\n            [\n              20.390625,\n              18.31281085\n            ],\n            [\n              20.390625,\n              17.9787331\n            ],\n            [\n              20.0390625,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.0390625,\n              18.31281085\n            ],\n            [\n              20.0390625,\n              18.64624514\n            ],\n            [\n              20.390625,\n              18.64624514\n            ],\n            [\n              20.390625,\n              18.31281085\n            ],\n            [\n              20.0390625,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              12.89748918\n            ],\n            [\n              20.390625,\n              13.2399455\n            ],\n            [\n              20.7421875,\n              13.2399455\n            ],\n            [\n              20.7421875,\n              12.89748918\n            ],\n            [\n              20.390625,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              13.2399455\n            ],\n            [\n              20.390625,\n              13.5819209\n            ],\n            [\n              20.7421875,\n              13.5819209\n            ],\n            [\n              20.7421875,\n              13.2399455\n            ],\n            [\n              20.390625,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              13.5819209\n            ],\n            [\n              20.390625,\n              13.9234039\n            ],\n            [\n              20.7421875,\n              13.9234039\n            ],\n            [\n              20.7421875,\n              13.5819209\n            ],\n            [\n              20.390625,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              13.9234039\n            ],\n            [\n              20.390625,\n              14.26438309\n            ],\n            [\n              20.7421875,\n              14.26438309\n            ],\n            [\n              20.7421875,\n              13.9234039\n            ],\n            [\n              20.390625,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              14.26438309\n            ],\n            [\n              20.390625,\n              14.60484716\n            ],\n            [\n              20.7421875,\n              14.60484716\n            ],\n            [\n              20.7421875,\n              14.26438309\n            ],\n            [\n              20.390625,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              14.60484716\n            ],\n            [\n              20.390625,\n              14.94478488\n            ],\n            [\n              20.7421875,\n              14.94478488\n            ],\n            [\n              20.7421875,\n              14.60484716\n            ],\n            [\n              20.390625,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              14.94478488\n            ],\n            [\n              20.390625,\n              15.28418511\n            ],\n            [\n              20.7421875,\n              15.28418511\n            ],\n            [\n              20.7421875,\n              14.94478488\n            ],\n            [\n              20.390625,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              15.28418511\n            ],\n            [\n              20.390625,\n              15.62303683\n            ],\n            [\n              20.7421875,\n              15.62303683\n            ],\n            [\n              20.7421875,\n              15.28418511\n            ],\n            [\n              20.390625,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              15.62303683\n            ],\n            [\n              20.390625,\n              15.96132908\n            ],\n            [\n              20.7421875,\n              15.96132908\n            ],\n            [\n              20.7421875,\n              15.62303683\n            ],\n            [\n              20.390625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              15.96132908\n            ],\n            [\n              20.390625,\n              16.29905101\n            ],\n            [\n              20.7421875,\n              16.29905101\n            ],\n            [\n              20.7421875,\n              15.96132908\n            ],\n            [\n              20.390625,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              16.29905101\n            ],\n            [\n              20.390625,\n              16.63619188\n            ],\n            [\n              20.7421875,\n              16.63619188\n            ],\n            [\n              20.7421875,\n              16.29905101\n            ],\n            [\n              20.390625,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              16.63619188\n            ],\n            [\n              20.390625,\n              16.97274102\n            ],\n            [\n              20.7421875,\n              16.97274102\n            ],\n            [\n              20.7421875,\n              16.63619188\n            ],\n            [\n              20.390625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              16.97274102\n            ],\n            [\n              20.390625,\n              17.30868789\n            ],\n            [\n              20.7421875,\n              17.30868789\n            ],\n            [\n              20.7421875,\n              16.97274102\n            ],\n            [\n              20.390625,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              17.30868789\n            ],\n            [\n              20.390625,\n              17.64402203\n            ],\n            [\n              20.7421875,\n              17.64402203\n            ],\n            [\n              20.7421875,\n              17.30868789\n            ],\n            [\n              20.390625,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              17.64402203\n            ],\n            [\n              20.390625,\n              17.9787331\n            ],\n            [\n              20.7421875,\n              17.9787331\n            ],\n            [\n              20.7421875,\n              17.64402203\n            ],\n            [\n              20.390625,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              17.9787331\n            ],\n            [\n              20.390625,\n              18.31281085\n            ],\n            [\n              20.7421875,\n              18.31281085\n            ],\n            [\n              20.7421875,\n              17.9787331\n            ],\n            [\n              20.390625,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.390625,\n              18.31281085\n            ],\n            [\n              20.390625,\n              18.64624514\n            ],\n            [\n              20.7421875,\n              18.64624514\n            ],\n            [\n              20.7421875,\n              18.31281085\n            ],\n            [\n              20.390625,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              12.89748918\n            ],\n            [\n              20.7421875,\n              13.2399455\n            ],\n            [\n              21.09375,\n              13.2399455\n            ],\n            [\n              21.09375,\n              12.89748918\n            ],\n            [\n              20.7421875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              13.2399455\n            ],\n            [\n              20.7421875,\n              13.5819209\n            ],\n            [\n              21.09375,\n              13.5819209\n            ],\n            [\n              21.09375,\n              13.2399455\n            ],\n            [\n              20.7421875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              13.5819209\n            ],\n            [\n              20.7421875,\n              13.9234039\n            ],\n            [\n              21.09375,\n              13.9234039\n            ],\n            [\n              21.09375,\n              13.5819209\n            ],\n            [\n              20.7421875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              13.9234039\n            ],\n            [\n              20.7421875,\n              14.26438309\n            ],\n            [\n              21.09375,\n              14.26438309\n            ],\n            [\n              21.09375,\n              13.9234039\n            ],\n            [\n              20.7421875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              14.26438309\n            ],\n            [\n              20.7421875,\n              14.60484716\n            ],\n            [\n              21.09375,\n              14.60484716\n            ],\n            [\n              21.09375,\n              14.26438309\n            ],\n            [\n              20.7421875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              14.60484716\n            ],\n            [\n              20.7421875,\n              14.94478488\n            ],\n            [\n              21.09375,\n              14.94478488\n            ],\n            [\n              21.09375,\n              14.60484716\n            ],\n            [\n              20.7421875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              14.94478488\n            ],\n            [\n              20.7421875,\n              15.28418511\n            ],\n            [\n              21.09375,\n              15.28418511\n            ],\n            [\n              21.09375,\n              14.94478488\n            ],\n            [\n              20.7421875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              15.28418511\n            ],\n            [\n              20.7421875,\n              15.62303683\n            ],\n            [\n              21.09375,\n              15.62303683\n            ],\n            [\n              21.09375,\n              15.28418511\n            ],\n            [\n              20.7421875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              15.62303683\n            ],\n            [\n              20.7421875,\n              15.96132908\n            ],\n            [\n              21.09375,\n              15.96132908\n            ],\n            [\n              21.09375,\n              15.62303683\n            ],\n            [\n              20.7421875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              15.96132908\n            ],\n            [\n              20.7421875,\n              16.29905101\n            ],\n            [\n              21.09375,\n              16.29905101\n            ],\n            [\n              21.09375,\n              15.96132908\n            ],\n            [\n              20.7421875,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              16.29905101\n            ],\n            [\n              20.7421875,\n              16.63619188\n            ],\n            [\n              21.09375,\n              16.63619188\n            ],\n            [\n              21.09375,\n              16.29905101\n            ],\n            [\n              20.7421875,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              16.63619188\n            ],\n            [\n              20.7421875,\n              16.97274102\n            ],\n            [\n              21.09375,\n              16.97274102\n            ],\n            [\n              21.09375,\n              16.63619188\n            ],\n            [\n              20.7421875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              16.97274102\n            ],\n            [\n              20.7421875,\n              17.30868789\n            ],\n            [\n              21.09375,\n              17.30868789\n            ],\n            [\n              21.09375,\n              16.97274102\n            ],\n            [\n              20.7421875,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              17.30868789\n            ],\n            [\n              20.7421875,\n              17.64402203\n            ],\n            [\n              21.09375,\n              17.64402203\n            ],\n            [\n              21.09375,\n              17.30868789\n            ],\n            [\n              20.7421875,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              17.64402203\n            ],\n            [\n              20.7421875,\n              17.9787331\n            ],\n            [\n              21.09375,\n              17.9787331\n            ],\n            [\n              21.09375,\n              17.64402203\n            ],\n            [\n              20.7421875,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              17.9787331\n            ],\n            [\n              20.7421875,\n              18.31281085\n            ],\n            [\n              21.09375,\n              18.31281085\n            ],\n            [\n              21.09375,\n              17.9787331\n            ],\n            [\n              20.7421875,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.7421875,\n              18.31281085\n            ],\n            [\n              20.7421875,\n              18.64624514\n            ],\n            [\n              21.09375,\n              18.64624514\n            ],\n            [\n              21.09375,\n              18.31281085\n            ],\n            [\n              20.7421875,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              12.89748918\n            ],\n            [\n              21.09375,\n              13.2399455\n            ],\n            [\n              21.4453125,\n              13.2399455\n            ],\n            [\n              21.4453125,\n              12.89748918\n            ],\n            [\n              21.09375,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              13.2399455\n            ],\n            [\n              21.09375,\n              13.5819209\n            ],\n            [\n              21.4453125,\n              13.5819209\n            ],\n            [\n              21.4453125,\n              13.2399455\n            ],\n            [\n              21.09375,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              13.5819209\n            ],\n            [\n              21.09375,\n              13.9234039\n            ],\n            [\n              21.4453125,\n              13.9234039\n            ],\n            [\n              21.4453125,\n              13.5819209\n            ],\n            [\n              21.09375,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              13.9234039\n            ],\n            [\n              21.09375,\n              14.26438309\n            ],\n            [\n              21.4453125,\n              14.26438309\n            ],\n            [\n              21.4453125,\n              13.9234039\n            ],\n            [\n              21.09375,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              14.26438309\n            ],\n            [\n              21.09375,\n              14.60484716\n            ],\n            [\n              21.4453125,\n              14.60484716\n            ],\n            [\n              21.4453125,\n              14.26438309\n            ],\n            [\n              21.09375,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              14.60484716\n            ],\n            [\n              21.09375,\n              14.94478488\n            ],\n            [\n              21.4453125,\n              14.94478488\n            ],\n            [\n              21.4453125,\n              14.60484716\n            ],\n            [\n              21.09375,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              14.94478488\n            ],\n            [\n              21.09375,\n              15.28418511\n            ],\n            [\n              21.4453125,\n              15.28418511\n            ],\n            [\n              21.4453125,\n              14.94478488\n            ],\n            [\n              21.09375,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              15.28418511\n            ],\n            [\n              21.09375,\n              15.62303683\n            ],\n            [\n              21.4453125,\n              15.62303683\n            ],\n            [\n              21.4453125,\n              15.28418511\n            ],\n            [\n              21.09375,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              15.62303683\n            ],\n            [\n              21.09375,\n              15.96132908\n            ],\n            [\n              21.4453125,\n              15.96132908\n            ],\n            [\n              21.4453125,\n              15.62303683\n            ],\n            [\n              21.09375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              15.96132908\n            ],\n            [\n              21.09375,\n              16.29905101\n            ],\n            [\n              21.4453125,\n              16.29905101\n            ],\n            [\n              21.4453125,\n              15.96132908\n            ],\n            [\n              21.09375,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              16.29905101\n            ],\n            [\n              21.09375,\n              16.63619188\n            ],\n            [\n              21.4453125,\n              16.63619188\n            ],\n            [\n              21.4453125,\n              16.29905101\n            ],\n            [\n              21.09375,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              16.63619188\n            ],\n            [\n              21.09375,\n              16.97274102\n            ],\n            [\n              21.4453125,\n              16.97274102\n            ],\n            [\n              21.4453125,\n              16.63619188\n            ],\n            [\n              21.09375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              16.97274102\n            ],\n            [\n              21.09375,\n              17.30868789\n            ],\n            [\n              21.4453125,\n              17.30868789\n            ],\n            [\n              21.4453125,\n              16.97274102\n            ],\n            [\n              21.09375,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              17.30868789\n            ],\n            [\n              21.09375,\n              17.64402203\n            ],\n            [\n              21.4453125,\n              17.64402203\n            ],\n            [\n              21.4453125,\n              17.30868789\n            ],\n            [\n              21.09375,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              17.64402203\n            ],\n            [\n              21.09375,\n              17.9787331\n            ],\n            [\n              21.4453125,\n              17.9787331\n            ],\n            [\n              21.4453125,\n              17.64402203\n            ],\n            [\n              21.09375,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              17.9787331\n            ],\n            [\n              21.09375,\n              18.31281085\n            ],\n            [\n              21.4453125,\n              18.31281085\n            ],\n            [\n              21.4453125,\n              17.9787331\n            ],\n            [\n              21.09375,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.09375,\n              18.31281085\n            ],\n            [\n              21.09375,\n              18.64624514\n            ],\n            [\n              21.4453125,\n              18.64624514\n            ],\n            [\n              21.4453125,\n              18.31281085\n            ],\n            [\n              21.09375,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              12.89748918\n            ],\n            [\n              21.4453125,\n              13.2399455\n            ],\n            [\n              21.796875,\n              13.2399455\n            ],\n            [\n              21.796875,\n              12.89748918\n            ],\n            [\n              21.4453125,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              13.2399455\n            ],\n            [\n              21.4453125,\n              13.5819209\n            ],\n            [\n              21.796875,\n              13.5819209\n            ],\n            [\n              21.796875,\n              13.2399455\n            ],\n            [\n              21.4453125,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              13.5819209\n            ],\n            [\n              21.4453125,\n              13.9234039\n            ],\n            [\n              21.796875,\n              13.9234039\n            ],\n            [\n              21.796875,\n              13.5819209\n            ],\n            [\n              21.4453125,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              13.9234039\n            ],\n            [\n              21.4453125,\n              14.26438309\n            ],\n            [\n              21.796875,\n              14.26438309\n            ],\n            [\n              21.796875,\n              13.9234039\n            ],\n            [\n              21.4453125,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              14.26438309\n            ],\n            [\n              21.4453125,\n              14.60484716\n            ],\n            [\n              21.796875,\n              14.60484716\n            ],\n            [\n              21.796875,\n              14.26438309\n            ],\n            [\n              21.4453125,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              14.60484716\n            ],\n            [\n              21.4453125,\n              14.94478488\n            ],\n            [\n              21.796875,\n              14.94478488\n            ],\n            [\n              21.796875,\n              14.60484716\n            ],\n            [\n              21.4453125,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              14.94478488\n            ],\n            [\n              21.4453125,\n              15.28418511\n            ],\n            [\n              21.796875,\n              15.28418511\n            ],\n            [\n              21.796875,\n              14.94478488\n            ],\n            [\n              21.4453125,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              15.28418511\n            ],\n            [\n              21.4453125,\n              15.62303683\n            ],\n            [\n              21.796875,\n              15.62303683\n            ],\n            [\n              21.796875,\n              15.28418511\n            ],\n            [\n              21.4453125,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              15.62303683\n            ],\n            [\n              21.4453125,\n              15.96132908\n            ],\n            [\n              21.796875,\n              15.96132908\n            ],\n            [\n              21.796875,\n              15.62303683\n            ],\n            [\n              21.4453125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              15.96132908\n            ],\n            [\n              21.4453125,\n              16.29905101\n            ],\n            [\n              21.796875,\n              16.29905101\n            ],\n            [\n              21.796875,\n              15.96132908\n            ],\n            [\n              21.4453125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              16.29905101\n            ],\n            [\n              21.4453125,\n              16.63619188\n            ],\n            [\n              21.796875,\n              16.63619188\n            ],\n            [\n              21.796875,\n              16.29905101\n            ],\n            [\n              21.4453125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              16.63619188\n            ],\n            [\n              21.4453125,\n              16.97274102\n            ],\n            [\n              21.796875,\n              16.97274102\n            ],\n            [\n              21.796875,\n              16.63619188\n            ],\n            [\n              21.4453125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              16.97274102\n            ],\n            [\n              21.4453125,\n              17.30868789\n            ],\n            [\n              21.796875,\n              17.30868789\n            ],\n            [\n              21.796875,\n              16.97274102\n            ],\n            [\n              21.4453125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              17.30868789\n            ],\n            [\n              21.4453125,\n              17.64402203\n            ],\n            [\n              21.796875,\n              17.64402203\n            ],\n            [\n              21.796875,\n              17.30868789\n            ],\n            [\n              21.4453125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              17.64402203\n            ],\n            [\n              21.4453125,\n              17.9787331\n            ],\n            [\n              21.796875,\n              17.9787331\n            ],\n            [\n              21.796875,\n              17.64402203\n            ],\n            [\n              21.4453125,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              17.9787331\n            ],\n            [\n              21.4453125,\n              18.31281085\n            ],\n            [\n              21.796875,\n              18.31281085\n            ],\n            [\n              21.796875,\n              17.9787331\n            ],\n            [\n              21.4453125,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.4453125,\n              18.31281085\n            ],\n            [\n              21.4453125,\n              18.64624514\n            ],\n            [\n              21.796875,\n              18.64624514\n            ],\n            [\n              21.796875,\n              18.31281085\n            ],\n            [\n              21.4453125,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              12.89748918\n            ],\n            [\n              21.796875,\n              13.2399455\n            ],\n            [\n              22.1484375,\n              13.2399455\n            ],\n            [\n              22.1484375,\n              12.89748918\n            ],\n            [\n              21.796875,\n              12.89748918\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              13.2399455\n            ],\n            [\n              21.796875,\n              13.5819209\n            ],\n            [\n              22.1484375,\n              13.5819209\n            ],\n            [\n              22.1484375,\n              13.2399455\n            ],\n            [\n              21.796875,\n              13.2399455\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              13.5819209\n            ],\n            [\n              21.796875,\n              13.9234039\n            ],\n            [\n              22.1484375,\n              13.9234039\n            ],\n            [\n              22.1484375,\n              13.5819209\n            ],\n            [\n              21.796875,\n              13.5819209\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              13.9234039\n            ],\n            [\n              21.796875,\n              14.26438309\n            ],\n            [\n              22.1484375,\n              14.26438309\n            ],\n            [\n              22.1484375,\n              13.9234039\n            ],\n            [\n              21.796875,\n              13.9234039\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              14.26438309\n            ],\n            [\n              21.796875,\n              14.60484716\n            ],\n            [\n              22.1484375,\n              14.60484716\n            ],\n            [\n              22.1484375,\n              14.26438309\n            ],\n            [\n              21.796875,\n              14.26438309\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              14.60484716\n            ],\n            [\n              21.796875,\n              14.94478488\n            ],\n            [\n              22.1484375,\n              14.94478488\n            ],\n            [\n              22.1484375,\n              14.60484716\n            ],\n            [\n              21.796875,\n              14.60484716\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              14.94478488\n            ],\n            [\n              21.796875,\n              15.28418511\n            ],\n            [\n              22.1484375,\n              15.28418511\n            ],\n            [\n              22.1484375,\n              14.94478488\n            ],\n            [\n              21.796875,\n              14.94478488\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              15.28418511\n            ],\n            [\n              21.796875,\n              15.62303683\n            ],\n            [\n              22.1484375,\n              15.62303683\n            ],\n            [\n              22.1484375,\n              15.28418511\n            ],\n            [\n              21.796875,\n              15.28418511\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              15.62303683\n            ],\n            [\n              21.796875,\n              15.96132908\n            ],\n            [\n              22.1484375,\n              15.96132908\n            ],\n            [\n              22.1484375,\n              15.62303683\n            ],\n            [\n              21.796875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              15.96132908\n            ],\n            [\n              21.796875,\n              16.29905101\n            ],\n            [\n              22.1484375,\n              16.29905101\n            ],\n            [\n              22.1484375,\n              15.96132908\n            ],\n            [\n              21.796875,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              16.29905101\n            ],\n            [\n              21.796875,\n              16.63619188\n            ],\n            [\n              22.1484375,\n              16.63619188\n            ],\n            [\n              22.1484375,\n              16.29905101\n            ],\n            [\n              21.796875,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              16.63619188\n            ],\n            [\n              21.796875,\n              16.97274102\n            ],\n            [\n              22.1484375,\n              16.97274102\n            ],\n            [\n              22.1484375,\n              16.63619188\n            ],\n            [\n              21.796875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              16.97274102\n            ],\n            [\n              21.796875,\n              17.30868789\n            ],\n            [\n              22.1484375,\n              17.30868789\n            ],\n            [\n              22.1484375,\n              16.97274102\n            ],\n            [\n              21.796875,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              17.30868789\n            ],\n            [\n              21.796875,\n              17.64402203\n            ],\n            [\n              22.1484375,\n              17.64402203\n            ],\n            [\n              22.1484375,\n              17.30868789\n            ],\n            [\n              21.796875,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              17.64402203\n            ],\n            [\n              21.796875,\n              17.9787331\n            ],\n            [\n              22.1484375,\n              17.9787331\n            ],\n            [\n              22.1484375,\n              17.64402203\n            ],\n            [\n              21.796875,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              17.9787331\n            ],\n            [\n              21.796875,\n              18.31281085\n            ],\n            [\n              22.1484375,\n              18.31281085\n            ],\n            [\n              22.1484375,\n              17.9787331\n            ],\n            [\n              21.796875,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.796875,\n              18.31281085\n            ],\n            [\n              21.796875,\n              18.64624514\n            ],\n            [\n              22.1484375,\n              18.64624514\n            ],\n            [\n              22.1484375,\n              18.31281085\n            ],\n            [\n              21.796875,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              15.62303683\n            ],\n            [\n              22.1484375,\n              15.96132908\n            ],\n            [\n              22.5,\n              15.96132908\n            ],\n            [\n              22.5,\n              15.62303683\n            ],\n            [\n              22.1484375,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              15.96132908\n            ],\n            [\n              22.1484375,\n              16.29905101\n            ],\n            [\n              22.5,\n              16.29905101\n            ],\n            [\n              22.5,\n              15.96132908\n            ],\n            [\n              22.1484375,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              16.29905101\n            ],\n            [\n              22.1484375,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.29905101\n            ],\n            [\n              22.1484375,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              16.63619188\n            ],\n            [\n              22.1484375,\n              16.97274102\n            ],\n            [\n              22.5,\n              16.97274102\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.1484375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              16.97274102\n            ],\n            [\n              22.1484375,\n              17.30868789\n            ],\n            [\n              22.5,\n              17.30868789\n            ],\n            [\n              22.5,\n              16.97274102\n            ],\n            [\n              22.1484375,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              17.30868789\n            ],\n            [\n              22.1484375,\n              17.64402203\n            ],\n            [\n              22.5,\n              17.64402203\n            ],\n            [\n              22.5,\n              17.30868789\n            ],\n            [\n              22.1484375,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              17.64402203\n            ],\n            [\n              22.1484375,\n              17.9787331\n            ],\n            [\n              22.5,\n              17.9787331\n            ],\n            [\n              22.5,\n              17.64402203\n            ],\n            [\n              22.1484375,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              17.9787331\n            ],\n            [\n              22.1484375,\n              18.31281085\n            ],\n            [\n              22.5,\n              18.31281085\n            ],\n            [\n              22.5,\n              17.9787331\n            ],\n            [\n              22.1484375,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.1484375,\n              18.31281085\n            ],\n            [\n              22.1484375,\n              18.64624514\n            ],\n            [\n              22.5,\n              18.64624514\n            ],\n            [\n              22.5,\n              18.31281085\n            ],\n            [\n              22.1484375,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              15.62303683\n            ],\n            [\n              22.5,\n              15.96132908\n            ],\n            [\n              22.8515625,\n              15.96132908\n            ],\n            [\n              22.8515625,\n              15.62303683\n            ],\n            [\n              22.5,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              15.96132908\n            ],\n            [\n              22.5,\n              16.29905101\n            ],\n            [\n              22.8515625,\n              16.29905101\n            ],\n            [\n              22.8515625,\n              15.96132908\n            ],\n            [\n              22.5,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              16.29905101\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.8515625,\n              16.63619188\n            ],\n            [\n              22.8515625,\n              16.29905101\n            ],\n            [\n              22.5,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.97274102\n            ],\n            [\n              22.8515625,\n              16.97274102\n            ],\n            [\n              22.8515625,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              16.97274102\n            ],\n            [\n              22.5,\n              17.30868789\n            ],\n            [\n              22.8515625,\n              17.30868789\n            ],\n            [\n              22.8515625,\n              16.97274102\n            ],\n            [\n              22.5,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              17.30868789\n            ],\n            [\n              22.5,\n              17.64402203\n            ],\n            [\n              22.8515625,\n              17.64402203\n            ],\n            [\n              22.8515625,\n              17.30868789\n            ],\n            [\n              22.5,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              17.64402203\n            ],\n            [\n              22.5,\n              17.9787331\n            ],\n            [\n              22.8515625,\n              17.9787331\n            ],\n            [\n              22.8515625,\n              17.64402203\n            ],\n            [\n              22.5,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              17.9787331\n            ],\n            [\n              22.5,\n              18.31281085\n            ],\n            [\n              22.8515625,\n              18.31281085\n            ],\n            [\n              22.8515625,\n              17.9787331\n            ],\n            [\n              22.5,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              18.31281085\n            ],\n            [\n              22.5,\n              18.64624514\n            ],\n            [\n              22.8515625,\n              18.64624514\n            ],\n            [\n              22.8515625,\n              18.31281085\n            ],\n            [\n              22.5,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              15.62303683\n            ],\n            [\n              22.8515625,\n              15.96132908\n            ],\n            [\n              23.203125,\n              15.96132908\n            ],\n            [\n              23.203125,\n              15.62303683\n            ],\n            [\n              22.8515625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              15.96132908\n            ],\n            [\n              22.8515625,\n              16.29905101\n            ],\n            [\n              23.203125,\n              16.29905101\n            ],\n            [\n              23.203125,\n              15.96132908\n            ],\n            [\n              22.8515625,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              16.29905101\n            ],\n            [\n              22.8515625,\n              16.63619188\n            ],\n            [\n              23.203125,\n              16.63619188\n            ],\n            [\n              23.203125,\n              16.29905101\n            ],\n            [\n              22.8515625,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              16.63619188\n            ],\n            [\n              22.8515625,\n              16.97274102\n            ],\n            [\n              23.203125,\n              16.97274102\n            ],\n            [\n              23.203125,\n              16.63619188\n            ],\n            [\n              22.8515625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              16.97274102\n            ],\n            [\n              22.8515625,\n              17.30868789\n            ],\n            [\n              23.203125,\n              17.30868789\n            ],\n            [\n              23.203125,\n              16.97274102\n            ],\n            [\n              22.8515625,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              17.30868789\n            ],\n            [\n              22.8515625,\n              17.64402203\n            ],\n            [\n              23.203125,\n              17.64402203\n            ],\n            [\n              23.203125,\n              17.30868789\n            ],\n            [\n              22.8515625,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              17.64402203\n            ],\n            [\n              22.8515625,\n              17.9787331\n            ],\n            [\n              23.203125,\n              17.9787331\n            ],\n            [\n              23.203125,\n              17.64402203\n            ],\n            [\n              22.8515625,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              17.9787331\n            ],\n            [\n              22.8515625,\n              18.31281085\n            ],\n            [\n              23.203125,\n              18.31281085\n            ],\n            [\n              23.203125,\n              17.9787331\n            ],\n            [\n              22.8515625,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.8515625,\n              18.31281085\n            ],\n            [\n              22.8515625,\n              18.64624514\n            ],\n            [\n              23.203125,\n              18.64624514\n            ],\n            [\n              23.203125,\n              18.31281085\n            ],\n            [\n              22.8515625,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              15.62303683\n            ],\n            [\n              23.203125,\n              15.96132908\n            ],\n            [\n              23.5546875,\n              15.96132908\n            ],\n            [\n              23.5546875,\n              15.62303683\n            ],\n            [\n              23.203125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              15.96132908\n            ],\n            [\n              23.203125,\n              16.29905101\n            ],\n            [\n              23.5546875,\n              16.29905101\n            ],\n            [\n              23.5546875,\n              15.96132908\n            ],\n            [\n              23.203125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              16.29905101\n            ],\n            [\n              23.203125,\n              16.63619188\n            ],\n            [\n              23.5546875,\n              16.63619188\n            ],\n            [\n              23.5546875,\n              16.29905101\n            ],\n            [\n              23.203125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              16.63619188\n            ],\n            [\n              23.203125,\n              16.97274102\n            ],\n            [\n              23.5546875,\n              16.97274102\n            ],\n            [\n              23.5546875,\n              16.63619188\n            ],\n            [\n              23.203125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              16.97274102\n            ],\n            [\n              23.203125,\n              17.30868789\n            ],\n            [\n              23.5546875,\n              17.30868789\n            ],\n            [\n              23.5546875,\n              16.97274102\n            ],\n            [\n              23.203125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              17.30868789\n            ],\n            [\n              23.203125,\n              17.64402203\n            ],\n            [\n              23.5546875,\n              17.64402203\n            ],\n            [\n              23.5546875,\n              17.30868789\n            ],\n            [\n              23.203125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              17.64402203\n            ],\n            [\n              23.203125,\n              17.9787331\n            ],\n            [\n              23.5546875,\n              17.9787331\n            ],\n            [\n              23.5546875,\n              17.64402203\n            ],\n            [\n              23.203125,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              17.9787331\n            ],\n            [\n              23.203125,\n              18.31281085\n            ],\n            [\n              23.5546875,\n              18.31281085\n            ],\n            [\n              23.5546875,\n              17.9787331\n            ],\n            [\n              23.203125,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.203125,\n              18.31281085\n            ],\n            [\n              23.203125,\n              18.64624514\n            ],\n            [\n              23.5546875,\n              18.64624514\n            ],\n            [\n              23.5546875,\n              18.31281085\n            ],\n            [\n              23.203125,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              15.62303683\n            ],\n            [\n              23.5546875,\n              15.96132908\n            ],\n            [\n              23.90625,\n              15.96132908\n            ],\n            [\n              23.90625,\n              15.62303683\n            ],\n            [\n              23.5546875,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              15.96132908\n            ],\n            [\n              23.5546875,\n              16.29905101\n            ],\n            [\n              23.90625,\n              16.29905101\n            ],\n            [\n              23.90625,\n              15.96132908\n            ],\n            [\n              23.5546875,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              16.29905101\n            ],\n            [\n              23.5546875,\n              16.63619188\n            ],\n            [\n              23.90625,\n              16.63619188\n            ],\n            [\n              23.90625,\n              16.29905101\n            ],\n            [\n              23.5546875,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              16.63619188\n            ],\n            [\n              23.5546875,\n              16.97274102\n            ],\n            [\n              23.90625,\n              16.97274102\n            ],\n            [\n              23.90625,\n              16.63619188\n            ],\n            [\n              23.5546875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              16.97274102\n            ],\n            [\n              23.5546875,\n              17.30868789\n            ],\n            [\n              23.90625,\n              17.30868789\n            ],\n            [\n              23.90625,\n              16.97274102\n            ],\n            [\n              23.5546875,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              17.30868789\n            ],\n            [\n              23.5546875,\n              17.64402203\n            ],\n            [\n              23.90625,\n              17.64402203\n            ],\n            [\n              23.90625,\n              17.30868789\n            ],\n            [\n              23.5546875,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              17.64402203\n            ],\n            [\n              23.5546875,\n              17.9787331\n            ],\n            [\n              23.90625,\n              17.9787331\n            ],\n            [\n              23.90625,\n              17.64402203\n            ],\n            [\n              23.5546875,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              17.9787331\n            ],\n            [\n              23.5546875,\n              18.31281085\n            ],\n            [\n              23.90625,\n              18.31281085\n            ],\n            [\n              23.90625,\n              17.9787331\n            ],\n            [\n              23.5546875,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.5546875,\n              18.31281085\n            ],\n            [\n              23.5546875,\n              18.64624514\n            ],\n            [\n              23.90625,\n              18.64624514\n            ],\n            [\n              23.90625,\n              18.31281085\n            ],\n            [\n              23.5546875,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              15.62303683\n            ],\n            [\n              23.90625,\n              15.96132908\n            ],\n            [\n              24.2578125,\n              15.96132908\n            ],\n            [\n              24.2578125,\n              15.62303683\n            ],\n            [\n              23.90625,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              15.96132908\n            ],\n            [\n              23.90625,\n              16.29905101\n            ],\n            [\n              24.2578125,\n              16.29905101\n            ],\n            [\n              24.2578125,\n              15.96132908\n            ],\n            [\n              23.90625,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              16.29905101\n            ],\n            [\n              23.90625,\n              16.63619188\n            ],\n            [\n              24.2578125,\n              16.63619188\n            ],\n            [\n              24.2578125,\n              16.29905101\n            ],\n            [\n              23.90625,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              16.63619188\n            ],\n            [\n              23.90625,\n              16.97274102\n            ],\n            [\n              24.2578125,\n              16.97274102\n            ],\n            [\n              24.2578125,\n              16.63619188\n            ],\n            [\n              23.90625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              16.97274102\n            ],\n            [\n              23.90625,\n              17.30868789\n            ],\n            [\n              24.2578125,\n              17.30868789\n            ],\n            [\n              24.2578125,\n              16.97274102\n            ],\n            [\n              23.90625,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              17.30868789\n            ],\n            [\n              23.90625,\n              17.64402203\n            ],\n            [\n              24.2578125,\n              17.64402203\n            ],\n            [\n              24.2578125,\n              17.30868789\n            ],\n            [\n              23.90625,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              17.64402203\n            ],\n            [\n              23.90625,\n              17.9787331\n            ],\n            [\n              24.2578125,\n              17.9787331\n            ],\n            [\n              24.2578125,\n              17.64402203\n            ],\n            [\n              23.90625,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              17.9787331\n            ],\n            [\n              23.90625,\n              18.31281085\n            ],\n            [\n              24.2578125,\n              18.31281085\n            ],\n            [\n              24.2578125,\n              17.9787331\n            ],\n            [\n              23.90625,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.90625,\n              18.31281085\n            ],\n            [\n              23.90625,\n              18.64624514\n            ],\n            [\n              24.2578125,\n              18.64624514\n            ],\n            [\n              24.2578125,\n              18.31281085\n            ],\n            [\n              23.90625,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              15.62303683\n            ],\n            [\n              24.2578125,\n              15.96132908\n            ],\n            [\n              24.609375,\n              15.96132908\n            ],\n            [\n              24.609375,\n              15.62303683\n            ],\n            [\n              24.2578125,\n              15.62303683\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              15.96132908\n            ],\n            [\n              24.2578125,\n              16.29905101\n            ],\n            [\n              24.609375,\n              16.29905101\n            ],\n            [\n              24.609375,\n              15.96132908\n            ],\n            [\n              24.2578125,\n              15.96132908\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              16.29905101\n            ],\n            [\n              24.2578125,\n              16.63619188\n            ],\n            [\n              24.609375,\n              16.63619188\n            ],\n            [\n              24.609375,\n              16.29905101\n            ],\n            [\n              24.2578125,\n              16.29905101\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              16.63619188\n            ],\n            [\n              24.2578125,\n              16.97274102\n            ],\n            [\n              24.609375,\n              16.97274102\n            ],\n            [\n              24.609375,\n              16.63619188\n            ],\n            [\n              24.2578125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              16.97274102\n            ],\n            [\n              24.2578125,\n              17.30868789\n            ],\n            [\n              24.609375,\n              17.30868789\n            ],\n            [\n              24.609375,\n              16.97274102\n            ],\n            [\n              24.2578125,\n              16.97274102\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              17.30868789\n            ],\n            [\n              24.2578125,\n              17.64402203\n            ],\n            [\n              24.609375,\n              17.64402203\n            ],\n            [\n              24.609375,\n              17.30868789\n            ],\n            [\n              24.2578125,\n              17.30868789\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              17.64402203\n            ],\n            [\n              24.2578125,\n              17.9787331\n            ],\n            [\n              24.609375,\n              17.9787331\n            ],\n            [\n              24.609375,\n              17.64402203\n            ],\n            [\n              24.2578125,\n              17.64402203\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              17.9787331\n            ],\n            [\n              24.2578125,\n              18.31281085\n            ],\n            [\n              24.609375,\n              18.31281085\n            ],\n            [\n              24.609375,\n              17.9787331\n            ],\n            [\n              24.2578125,\n              17.9787331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.2578125,\n              18.31281085\n            ],\n            [\n              24.2578125,\n              18.64624514\n            ],\n            [\n              24.609375,\n              18.64624514\n            ],\n            [\n              24.609375,\n              18.31281085\n            ],\n            [\n              24.2578125,\n              18.31281085\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.83105469,\n              13.02596593\n            ],\n            [\n              16.83105469,\n              15.87680906\n            ],\n            [\n              20.10498047,\n              15.87680906\n            ],\n            [\n              20.10498047,\n              18.43792465\n            ],\n            [\n              24.27978516,\n              18.43792465\n            ],\n            [\n              24.30175781,\n              15.87680906\n            ],\n            [\n              21.92871094,\n              15.87680906\n            ],\n            [\n              21.92871094,\n              13.02596593\n            ],\n            [\n              16.83105469,\n              13.02596593\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/uk.geojson",
    "content": "\n  {\n    \"type\": \"Feature\",\n    \"properties\": {\n      \"scalerank\": 1,\n      \"featurecla\": \"Admin-0 country\",\n      \"labelrank\": 2,\n      \"sovereignt\": \"United Kingdom\",\n      \"sov_a3\": \"GB1\",\n      \"adm0_dif\": 1,\n      \"level\": 2,\n      \"type\": \"Country\",\n      \"admin\": \"United Kingdom\",\n      \"adm0_a3\": \"GBR\",\n      \"geou_dif\": 0,\n      \"geounit\": \"United Kingdom\",\n      \"gu_a3\": \"GBR\",\n      \"su_dif\": 0,\n      \"subunit\": \"United Kingdom\",\n      \"su_a3\": \"GBR\",\n      \"brk_diff\": 0,\n      \"name\": \"United Kingdom\",\n      \"name_long\": \"United Kingdom\",\n      \"brk_a3\": \"GBR\",\n      \"brk_name\": \"United Kingdom\",\n      \"brk_group\": null,\n      \"abbrev\": \"U.K.\",\n      \"postal\": \"GB\",\n      \"formal_en\": \"United Kingdom of Great Britain and Northern Ireland\",\n      \"formal_fr\": null,\n      \"note_adm0\": null,\n      \"note_brk\": null,\n      \"name_sort\": \"United Kingdom\",\n      \"name_alt\": null,\n      \"mapcolor7\": 6,\n      \"mapcolor8\": 6,\n      \"mapcolor9\": 6,\n      \"mapcolor13\": 3,\n      \"pop_est\": 62262000,\n      \"gdp_md_est\": 1977704,\n      \"pop_year\": 0,\n      \"lastcensus\": 2011,\n      \"gdp_year\": 2009,\n      \"economy\": \"1. Developed region: G7\",\n      \"income_grp\": \"1. High income: OECD\",\n      \"wikipedia\": -99,\n      \"fips_10\": null,\n      \"iso_a2\": \"GB\",\n      \"iso_a3\": \"GBR\",\n      \"iso_n3\": \"826\",\n      \"un_a3\": \"826\",\n      \"wb_a2\": \"GB\",\n      \"wb_a3\": \"GBR\",\n      \"woe_id\": -99,\n      \"adm0_a3_is\": \"GBR\",\n      \"adm0_a3_us\": \"GBR\",\n      \"adm0_a3_un\": -99,\n      \"adm0_a3_wb\": -99,\n      \"continent\": \"Europe\",\n      \"region_un\": \"Europe\",\n      \"subregion\": \"Northern Europe\",\n      \"region_wb\": \"Europe & Central Asia\",\n      \"name_len\": 14,\n      \"long_len\": 14,\n      \"abbrev_len\": 4,\n      \"tiny\": -99,\n      \"homepart\": 1\n    },\n    \"geometry\": {\n      \"type\": \"MultiPolygon\",\n      \"coordinates\": [\n        [\n          [\n            [\n              -5.661948614921897,\n              54.55460317648385\n            ],\n            [\n              -6.197884894220977,\n              53.86756500916334\n            ],\n            [\n              -6.953730231137996,\n              54.073702297575636\n            ],\n            [\n              -7.572167934591079,\n              54.05995636658599\n            ],\n            [\n              -7.366030646178785,\n              54.595840969452695\n            ],\n            [\n              -7.572167934591079,\n              55.1316222194549\n            ],\n            [\n              -6.733847011736145,\n              55.1728600124238\n            ],\n            [\n              -5.661948614921897,\n              54.55460317648385\n            ]\n          ]\n        ],\n        [\n          [\n            [\n              -3.005004848635281,\n              58.63500010846633\n            ],\n            [\n              -4.073828497728016,\n              57.55302480735526\n            ],\n            [\n              -3.055001796877661,\n              57.69001902936094\n            ],\n            [\n              -1.959280564776918,\n              57.68479970969952\n            ],\n            [\n              -2.219988165689301,\n              56.87001740175353\n            ],\n            [\n              -3.119003058271119,\n              55.973793036515474\n            ],\n            [\n              -2.085009324543023,\n              55.90999848085127\n            ],\n            [\n              -2.005675679673857,\n              55.80490285035023\n            ],\n            [\n              -1.11499101399221,\n              54.624986477265395\n            ],\n            [\n              -0.4304849918542,\n              54.46437612570216\n            ],\n            [\n              0.184981316742039,\n              53.32501414653103\n            ],\n            [\n              0.469976840831777,\n              52.92999949809197\n            ],\n            [\n              1.681530795914739,\n              52.739520168664\n            ],\n            [\n              1.559987827164377,\n              52.09999848083601\n            ],\n            [\n              1.050561557630914,\n              51.806760565795685\n            ],\n            [\n              1.449865349950301,\n              51.28942780212196\n            ],\n            [\n              0.550333693045502,\n              50.765738837275876\n            ],\n            [\n              -0.78751746255864,\n              50.77498891865622\n            ],\n            [\n              -2.489997524414377,\n              50.50001862243124\n            ],\n            [\n              -2.956273972984036,\n              50.696879991247016\n            ],\n            [\n              -3.617448085942328,\n              50.22835561787272\n            ],\n            [\n              -4.542507900399244,\n              50.341837063185665\n            ],\n            [\n              -5.245023159191135,\n              49.95999990498109\n            ],\n            [\n              -5.776566941745301,\n              50.15967763935683\n            ],\n            [\n              -4.309989793301838,\n              51.21000112568916\n            ],\n            [\n              -3.414850633142123,\n              51.42600861266925\n            ],\n            [\n              -3.422719467108323,\n              51.42684816740609\n            ],\n            [\n              -4.984367234710874,\n              51.593466091510976\n            ],\n            [\n              -5.267295701508885,\n              51.991400458374585\n            ],\n            [\n              -4.222346564134853,\n              52.301355699261364\n            ],\n            [\n              -4.770013393564113,\n              52.840004991255626\n            ],\n            [\n              -4.579999152026915,\n              53.49500377055517\n            ],\n            [\n              -3.093830673788659,\n              53.404547400669685\n            ],\n            [\n              -3.092079637047107,\n              53.40444082296355\n            ],\n            [\n              -2.945008510744344,\n              53.984999701546684\n            ],\n            [\n              -3.614700825433033,\n              54.600936773292574\n            ],\n            [\n              -3.630005458989331,\n              54.615012925833014\n            ],\n            [\n              -4.844169073903004,\n              54.790971177786844\n            ],\n            [\n              -5.082526617849226,\n              55.06160065369937\n            ],\n            [\n              -4.719112107756644,\n              55.50847260194348\n            ],\n            [\n              -5.047980922862109,\n              55.78398550070753\n            ],\n            [\n              -5.58639767091114,\n              55.31114614523682\n            ],\n            [\n              -5.644998745130181,\n              56.275014960344805\n            ],\n            [\n              -6.149980841486354,\n              56.78500967063354\n            ],\n            [\n              -5.786824713555291,\n              57.81884837506465\n            ],\n            [\n              -5.009998745127575,\n              58.63001333275005\n            ],\n            [\n              -4.211494513353557,\n              58.55084503847917\n            ],\n            [\n              -3.005004848635281,\n              58.63500010846633\n            ]\n          ]\n        ]\n      ]\n    }\n  }\n"
  },
  {
    "path": "test/fixtures/uk_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -0.703125,\n              54.16243397\n            ],\n            [\n              -0.703125,\n              54.57206166\n            ],\n            [\n              0,\n              54.57206166\n            ],\n            [\n              0,\n              54.16243397\n            ],\n            [\n              -0.703125,\n              54.16243397\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -1.40625,\n              50.28933925\n            ],\n            [\n              -1.40625,\n              50.73645514\n            ],\n            [\n              -0.703125,\n              50.73645514\n            ],\n            [\n              -0.703125,\n              50.28933925\n            ],\n            [\n              -1.40625,\n              50.28933925\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -1.40625,\n              54.16243397\n            ],\n            [\n              -1.40625,\n              54.57206166\n            ],\n            [\n              -0.703125,\n              54.57206166\n            ],\n            [\n              -0.703125,\n              54.16243397\n            ],\n            [\n              -1.40625,\n              54.16243397\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -1.40625,\n              54.57206166\n            ],\n            [\n              -1.40625,\n              54.97761367\n            ],\n            [\n              -0.703125,\n              54.97761367\n            ],\n            [\n              -0.703125,\n              54.57206166\n            ],\n            [\n              -1.40625,\n              54.57206166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -1.40625,\n              54.97761367\n            ],\n            [\n              -1.40625,\n              55.37911045\n            ],\n            [\n              -0.703125,\n              55.37911045\n            ],\n            [\n              -0.703125,\n              54.97761367\n            ],\n            [\n              -1.40625,\n              54.97761367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.109375,\n              50.28933925\n            ],\n            [\n              -2.109375,\n              50.73645514\n            ],\n            [\n              -1.40625,\n              50.73645514\n            ],\n            [\n              -1.40625,\n              50.28933925\n            ],\n            [\n              -2.109375,\n              50.28933925\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.109375,\n              55.77657302\n            ],\n            [\n              -2.109375,\n              56.17002298\n            ],\n            [\n              -1.40625,\n              56.17002298\n            ],\n            [\n              -1.40625,\n              55.77657302\n            ],\n            [\n              -2.109375,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.109375,\n              56.94497418\n            ],\n            [\n              -2.109375,\n              57.32652123\n            ],\n            [\n              -1.40625,\n              57.32652123\n            ],\n            [\n              -1.40625,\n              56.94497418\n            ],\n            [\n              -2.109375,\n              56.94497418\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.109375,\n              57.32652123\n            ],\n            [\n              -2.109375,\n              57.70414723\n            ],\n            [\n              -1.40625,\n              57.70414723\n            ],\n            [\n              -1.40625,\n              57.32652123\n            ],\n            [\n              -2.109375,\n              57.32652123\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              50.28933925\n            ],\n            [\n              -2.8125,\n              50.73645514\n            ],\n            [\n              -2.109375,\n              50.73645514\n            ],\n            [\n              -2.109375,\n              50.28933925\n            ],\n            [\n              -2.8125,\n              50.28933925\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              50.73645514\n            ],\n            [\n              -2.8125,\n              52.48278022\n            ],\n            [\n              0,\n              52.48278022\n            ],\n            [\n              0,\n              50.73645514\n            ],\n            [\n              -2.8125,\n              50.73645514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              52.48278022\n            ],\n            [\n              -2.8125,\n              54.16243397\n            ],\n            [\n              0,\n              54.16243397\n            ],\n            [\n              0,\n              52.48278022\n            ],\n            [\n              -2.8125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              54.16243397\n            ],\n            [\n              -2.8125,\n              54.97761367\n            ],\n            [\n              -1.40625,\n              54.97761367\n            ],\n            [\n              -1.40625,\n              54.16243397\n            ],\n            [\n              -2.8125,\n              54.16243397\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              54.97761367\n            ],\n            [\n              -2.8125,\n              55.77657302\n            ],\n            [\n              -1.40625,\n              55.77657302\n            ],\n            [\n              -1.40625,\n              54.97761367\n            ],\n            [\n              -2.8125,\n              54.97761367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              55.77657302\n            ],\n            [\n              -2.8125,\n              56.17002298\n            ],\n            [\n              -2.109375,\n              56.17002298\n            ],\n            [\n              -2.109375,\n              55.77657302\n            ],\n            [\n              -2.8125,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              56.17002298\n            ],\n            [\n              -2.8125,\n              56.55948248\n            ],\n            [\n              -2.109375,\n              56.55948248\n            ],\n            [\n              -2.109375,\n              56.17002298\n            ],\n            [\n              -2.8125,\n              56.17002298\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              56.55948248\n            ],\n            [\n              -2.8125,\n              56.94497418\n            ],\n            [\n              -2.109375,\n              56.94497418\n            ],\n            [\n              -2.109375,\n              56.55948248\n            ],\n            [\n              -2.8125,\n              56.55948248\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              56.94497418\n            ],\n            [\n              -2.8125,\n              57.32652123\n            ],\n            [\n              -2.109375,\n              57.32652123\n            ],\n            [\n              -2.109375,\n              56.94497418\n            ],\n            [\n              -2.8125,\n              56.94497418\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.8125,\n              57.32652123\n            ],\n            [\n              -2.8125,\n              57.70414723\n            ],\n            [\n              -2.109375,\n              57.70414723\n            ],\n            [\n              -2.109375,\n              57.32652123\n            ],\n            [\n              -2.8125,\n              57.32652123\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -3.515625,\n              50.28933925\n            ],\n            [\n              -3.515625,\n              50.73645514\n            ],\n            [\n              -2.8125,\n              50.73645514\n            ],\n            [\n              -2.8125,\n              50.28933925\n            ],\n            [\n              -3.515625,\n              50.28933925\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -3.515625,\n              53.33087298\n            ],\n            [\n              -3.515625,\n              53.7487108\n            ],\n            [\n              -2.8125,\n              53.7487108\n            ],\n            [\n              -2.8125,\n              53.33087298\n            ],\n            [\n              -3.515625,\n              53.33087298\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -3.515625,\n              53.7487108\n            ],\n            [\n              -3.515625,\n              54.16243397\n            ],\n            [\n              -2.8125,\n              54.16243397\n            ],\n            [\n              -2.8125,\n              53.7487108\n            ],\n            [\n              -3.515625,\n              53.7487108\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -3.515625,\n              57.32652123\n            ],\n            [\n              -3.515625,\n              57.70414723\n            ],\n            [\n              -2.8125,\n              57.70414723\n            ],\n            [\n              -2.8125,\n              57.32652123\n            ],\n            [\n              -3.515625,\n              57.32652123\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              49.83798245\n            ],\n            [\n              -4.21875,\n              50.28933925\n            ],\n            [\n              -3.515625,\n              50.28933925\n            ],\n            [\n              -3.515625,\n              49.83798245\n            ],\n            [\n              -4.21875,\n              49.83798245\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              50.28933925\n            ],\n            [\n              -4.21875,\n              50.73645514\n            ],\n            [\n              -3.515625,\n              50.73645514\n            ],\n            [\n              -3.515625,\n              50.28933925\n            ],\n            [\n              -4.21875,\n              50.28933925\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              52.48278022\n            ],\n            [\n              -4.21875,\n              53.33087298\n            ],\n            [\n              -2.8125,\n              53.33087298\n            ],\n            [\n              -2.8125,\n              52.48278022\n            ],\n            [\n              -4.21875,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              53.33087298\n            ],\n            [\n              -4.21875,\n              53.7487108\n            ],\n            [\n              -3.515625,\n              53.7487108\n            ],\n            [\n              -3.515625,\n              53.33087298\n            ],\n            [\n              -4.21875,\n              53.33087298\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              54.16243397\n            ],\n            [\n              -4.21875,\n              54.97761367\n            ],\n            [\n              -2.8125,\n              54.97761367\n            ],\n            [\n              -2.8125,\n              54.16243397\n            ],\n            [\n              -4.21875,\n              54.16243397\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              54.97761367\n            ],\n            [\n              -4.21875,\n              55.77657302\n            ],\n            [\n              -2.8125,\n              55.77657302\n            ],\n            [\n              -2.8125,\n              54.97761367\n            ],\n            [\n              -4.21875,\n              54.97761367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              57.32652123\n            ],\n            [\n              -4.21875,\n              57.70414723\n            ],\n            [\n              -3.515625,\n              57.70414723\n            ],\n            [\n              -3.515625,\n              57.32652123\n            ],\n            [\n              -4.21875,\n              57.32652123\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              57.70414723\n            ],\n            [\n              -4.21875,\n              58.07787627\n            ],\n            [\n              -3.515625,\n              58.07787627\n            ],\n            [\n              -3.515625,\n              57.70414723\n            ],\n            [\n              -4.21875,\n              57.70414723\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.21875,\n              58.07787627\n            ],\n            [\n              -4.21875,\n              58.81374172\n            ],\n            [\n              -2.8125,\n              58.81374172\n            ],\n            [\n              -2.8125,\n              58.07787627\n            ],\n            [\n              -4.21875,\n              58.07787627\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.921875,\n              52.48278022\n            ],\n            [\n              -4.921875,\n              52.90890205\n            ],\n            [\n              -4.21875,\n              52.90890205\n            ],\n            [\n              -4.21875,\n              52.48278022\n            ],\n            [\n              -4.921875,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.921875,\n              52.90890205\n            ],\n            [\n              -4.921875,\n              53.33087298\n            ],\n            [\n              -4.21875,\n              53.33087298\n            ],\n            [\n              -4.21875,\n              52.90890205\n            ],\n            [\n              -4.921875,\n              52.90890205\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.921875,\n              53.33087298\n            ],\n            [\n              -4.921875,\n              53.7487108\n            ],\n            [\n              -4.21875,\n              53.7487108\n            ],\n            [\n              -4.21875,\n              53.33087298\n            ],\n            [\n              -4.921875,\n              53.33087298\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -4.921875,\n              54.57206166\n            ],\n            [\n              -4.921875,\n              54.97761367\n            ],\n            [\n              -4.21875,\n              54.97761367\n            ],\n            [\n              -4.21875,\n              54.57206166\n            ],\n            [\n              -4.921875,\n              54.57206166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              49.83798245\n            ],\n            [\n              -5.625,\n              50.73645514\n            ],\n            [\n              -4.21875,\n              50.73645514\n            ],\n            [\n              -4.21875,\n              49.83798245\n            ],\n            [\n              -5.625,\n              49.83798245\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              50.73645514\n            ],\n            [\n              -5.625,\n              52.48278022\n            ],\n            [\n              -2.8125,\n              52.48278022\n            ],\n            [\n              -2.8125,\n              50.73645514\n            ],\n            [\n              -5.625,\n              50.73645514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              54.57206166\n            ],\n            [\n              -5.625,\n              54.97761367\n            ],\n            [\n              -4.921875,\n              54.97761367\n            ],\n            [\n              -4.921875,\n              54.57206166\n            ],\n            [\n              -5.625,\n              54.57206166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              54.97761367\n            ],\n            [\n              -5.625,\n              55.77657302\n            ],\n            [\n              -4.21875,\n              55.77657302\n            ],\n            [\n              -4.21875,\n              54.97761367\n            ],\n            [\n              -5.625,\n              54.97761367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              55.77657302\n            ],\n            [\n              -5.625,\n              57.32652123\n            ],\n            [\n              -2.8125,\n              57.32652123\n            ],\n            [\n              -2.8125,\n              55.77657302\n            ],\n            [\n              -5.625,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              57.32652123\n            ],\n            [\n              -5.625,\n              58.07787627\n            ],\n            [\n              -4.21875,\n              58.07787627\n            ],\n            [\n              -4.21875,\n              57.32652123\n            ],\n            [\n              -5.625,\n              57.32652123\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              58.07787627\n            ],\n            [\n              -5.625,\n              58.81374172\n            ],\n            [\n              -4.21875,\n              58.81374172\n            ],\n            [\n              -4.21875,\n              58.07787627\n            ],\n            [\n              -5.625,\n              58.07787627\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.328125,\n              49.83798245\n            ],\n            [\n              -6.328125,\n              50.28933925\n            ],\n            [\n              -5.625,\n              50.28933925\n            ],\n            [\n              -5.625,\n              49.83798245\n            ],\n            [\n              -6.328125,\n              49.83798245\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.328125,\n              53.7487108\n            ],\n            [\n              -6.328125,\n              54.16243397\n            ],\n            [\n              -5.625,\n              54.16243397\n            ],\n            [\n              -5.625,\n              53.7487108\n            ],\n            [\n              -6.328125,\n              53.7487108\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.328125,\n              55.77657302\n            ],\n            [\n              -6.328125,\n              56.17002298\n            ],\n            [\n              -5.625,\n              56.17002298\n            ],\n            [\n              -5.625,\n              55.77657302\n            ],\n            [\n              -6.328125,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.328125,\n              56.17002298\n            ],\n            [\n              -6.328125,\n              56.55948248\n            ],\n            [\n              -5.625,\n              56.55948248\n            ],\n            [\n              -5.625,\n              56.17002298\n            ],\n            [\n              -6.328125,\n              56.17002298\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.328125,\n              56.55948248\n            ],\n            [\n              -6.328125,\n              56.94497418\n            ],\n            [\n              -5.625,\n              56.94497418\n            ],\n            [\n              -5.625,\n              56.55948248\n            ],\n            [\n              -6.328125,\n              56.55948248\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.328125,\n              56.94497418\n            ],\n            [\n              -6.328125,\n              57.32652123\n            ],\n            [\n              -5.625,\n              57.32652123\n            ],\n            [\n              -5.625,\n              56.94497418\n            ],\n            [\n              -6.328125,\n              56.94497418\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.328125,\n              57.32652123\n            ],\n            [\n              -6.328125,\n              57.70414723\n            ],\n            [\n              -5.625,\n              57.70414723\n            ],\n            [\n              -5.625,\n              57.32652123\n            ],\n            [\n              -6.328125,\n              57.32652123\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.328125,\n              57.70414723\n            ],\n            [\n              -6.328125,\n              58.07787627\n            ],\n            [\n              -5.625,\n              58.07787627\n            ],\n            [\n              -5.625,\n              57.70414723\n            ],\n            [\n              -6.328125,\n              57.70414723\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -7.03125,\n              53.7487108\n            ],\n            [\n              -7.03125,\n              54.16243397\n            ],\n            [\n              -6.328125,\n              54.16243397\n            ],\n            [\n              -6.328125,\n              53.7487108\n            ],\n            [\n              -7.03125,\n              53.7487108\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -7.03125,\n              54.16243397\n            ],\n            [\n              -7.03125,\n              54.97761367\n            ],\n            [\n              -5.625,\n              54.97761367\n            ],\n            [\n              -5.625,\n              54.16243397\n            ],\n            [\n              -7.03125,\n              54.16243397\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -7.03125,\n              54.97761367\n            ],\n            [\n              -7.03125,\n              55.37911045\n            ],\n            [\n              -6.328125,\n              55.37911045\n            ],\n            [\n              -6.328125,\n              54.97761367\n            ],\n            [\n              -7.03125,\n              54.97761367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -7.734375,\n              53.7487108\n            ],\n            [\n              -7.734375,\n              54.16243397\n            ],\n            [\n              -7.03125,\n              54.16243397\n            ],\n            [\n              -7.03125,\n              53.7487108\n            ],\n            [\n              -7.734375,\n              53.7487108\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -7.734375,\n              54.16243397\n            ],\n            [\n              -7.734375,\n              54.57206166\n            ],\n            [\n              -7.03125,\n              54.57206166\n            ],\n            [\n              -7.03125,\n              54.16243397\n            ],\n            [\n              -7.734375,\n              54.16243397\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -7.734375,\n              54.57206166\n            ],\n            [\n              -7.734375,\n              54.97761367\n            ],\n            [\n              -7.03125,\n              54.97761367\n            ],\n            [\n              -7.03125,\n              54.57206166\n            ],\n            [\n              -7.734375,\n              54.57206166\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -7.734375,\n              54.97761367\n            ],\n            [\n              -7.734375,\n              55.37911045\n            ],\n            [\n              -7.03125,\n              55.37911045\n            ],\n            [\n              -7.03125,\n              54.97761367\n            ],\n            [\n              -7.734375,\n              54.97761367\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              50.73645514\n            ],\n            [\n              0,\n              51.61801655\n            ],\n            [\n              1.40625,\n              51.61801655\n            ],\n            [\n              1.40625,\n              50.73645514\n            ],\n            [\n              0,\n              50.73645514\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              51.61801655\n            ],\n            [\n              0,\n              52.48278022\n            ],\n            [\n              1.40625,\n              52.48278022\n            ],\n            [\n              1.40625,\n              51.61801655\n            ],\n            [\n              0,\n              51.61801655\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              52.48278022\n            ],\n            [\n              0,\n              52.90890205\n            ],\n            [\n              0.703125,\n              52.90890205\n            ],\n            [\n              0.703125,\n              52.48278022\n            ],\n            [\n              0,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              52.90890205\n            ],\n            [\n              0,\n              53.33087298\n            ],\n            [\n              0.703125,\n              53.33087298\n            ],\n            [\n              0.703125,\n              52.90890205\n            ],\n            [\n              0,\n              52.90890205\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              53.33087298\n            ],\n            [\n              0,\n              53.7487108\n            ],\n            [\n              0.703125,\n              53.7487108\n            ],\n            [\n              0.703125,\n              53.33087298\n            ],\n            [\n              0,\n              53.33087298\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.703125,\n              52.48278022\n            ],\n            [\n              0.703125,\n              52.90890205\n            ],\n            [\n              1.40625,\n              52.90890205\n            ],\n            [\n              1.40625,\n              52.48278022\n            ],\n            [\n              0.703125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              1.40625,\n              51.17934298\n            ],\n            [\n              1.40625,\n              51.61801655\n            ],\n            [\n              2.109375,\n              51.61801655\n            ],\n            [\n              2.109375,\n              51.17934298\n            ],\n            [\n              1.40625,\n              51.17934298\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              1.40625,\n              51.61801655\n            ],\n            [\n              1.40625,\n              52.05249048\n            ],\n            [\n              2.109375,\n              52.05249048\n            ],\n            [\n              2.109375,\n              51.61801655\n            ],\n            [\n              1.40625,\n              51.61801655\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              1.40625,\n              52.05249048\n            ],\n            [\n              1.40625,\n              52.48278022\n            ],\n            [\n              2.109375,\n              52.48278022\n            ],\n            [\n              2.109375,\n              52.05249048\n            ],\n            [\n              1.40625,\n              52.05249048\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              1.40625,\n              52.48278022\n            ],\n            [\n              1.40625,\n              52.90890205\n            ],\n            [\n              2.109375,\n              52.90890205\n            ],\n            [\n              2.109375,\n              52.48278022\n            ],\n            [\n              1.40625,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                -5.66194861,\n                54.55460318\n              ],\n              [\n                -6.19788489,\n                53.86756501\n              ],\n              [\n                -6.95373023,\n                54.0737023\n              ],\n              [\n                -7.57216793,\n                54.05995637\n              ],\n              [\n                -7.36603065,\n                54.59584097\n              ],\n              [\n                -7.57216793,\n                55.13162222\n              ],\n              [\n                -6.73384701,\n                55.17286001\n              ],\n              [\n                -5.66194861,\n                54.55460318\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -3.00500485,\n                58.63500011\n              ],\n              [\n                -4.0738285,\n                57.55302481\n              ],\n              [\n                -3.0550018,\n                57.69001903\n              ],\n              [\n                -1.95928056,\n                57.68479971\n              ],\n              [\n                -2.21998817,\n                56.8700174\n              ],\n              [\n                -3.11900306,\n                55.97379304\n              ],\n              [\n                -2.08500932,\n                55.90999848\n              ],\n              [\n                -2.00567568,\n                55.80490285\n              ],\n              [\n                -1.11499101,\n                54.62498648\n              ],\n              [\n                -0.43048499,\n                54.46437613\n              ],\n              [\n                0.18498132,\n                53.32501415\n              ],\n              [\n                0.46997684,\n                52.9299995\n              ],\n              [\n                1.6815308,\n                52.73952017\n              ],\n              [\n                1.55998783,\n                52.09999848\n              ],\n              [\n                1.05056156,\n                51.80676057\n              ],\n              [\n                1.44986535,\n                51.2894278\n              ],\n              [\n                0.55033369,\n                50.76573884\n              ],\n              [\n                -0.78751746,\n                50.77498892\n              ],\n              [\n                -2.48999752,\n                50.50001862\n              ],\n              [\n                -2.95627397,\n                50.69687999\n              ],\n              [\n                -3.61744809,\n                50.22835562\n              ],\n              [\n                -4.5425079,\n                50.34183706\n              ],\n              [\n                -5.24502316,\n                49.9599999\n              ],\n              [\n                -5.77656694,\n                50.15967764\n              ],\n              [\n                -4.30998979,\n                51.21000113\n              ],\n              [\n                -3.41485063,\n                51.42600861\n              ],\n              [\n                -3.42271947,\n                51.42684817\n              ],\n              [\n                -4.98436723,\n                51.59346609\n              ],\n              [\n                -5.2672957,\n                51.99140046\n              ],\n              [\n                -4.22234656,\n                52.3013557\n              ],\n              [\n                -4.77001339,\n                52.84000499\n              ],\n              [\n                -4.57999915,\n                53.49500377\n              ],\n              [\n                -3.09383067,\n                53.4045474\n              ],\n              [\n                -3.09207964,\n                53.40444082\n              ],\n              [\n                -2.94500851,\n                53.9849997\n              ],\n              [\n                -3.61470083,\n                54.60093677\n              ],\n              [\n                -3.63000546,\n                54.61501293\n              ],\n              [\n                -4.84416907,\n                54.79097118\n              ],\n              [\n                -5.08252662,\n                55.06160065\n              ],\n              [\n                -4.71911211,\n                55.5084726\n              ],\n              [\n                -5.04798092,\n                55.7839855\n              ],\n              [\n                -5.58639767,\n                55.31114615\n              ],\n              [\n                -5.64499875,\n                56.27501496\n              ],\n              [\n                -6.14998084,\n                56.78500967\n              ],\n              [\n                -5.78682471,\n                57.81884838\n              ],\n              [\n                -5.00999875,\n                58.63001333\n              ],\n              [\n                -4.21149451,\n                58.55084504\n              ],\n              [\n                -3.00500485,\n                58.63500011\n              ]\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/AFG.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"AFG\",\"properties\":{\"name\":\"Afghanistan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[61.210817,35.650072],[62.230651,35.270664],[62.984662,35.404041],[63.193538,35.857166],[63.982896,36.007957],[64.546479,36.312073],[64.746105,37.111818],[65.588948,37.305217],[65.745631,37.661164],[66.217385,37.39379],[66.518607,37.362784],[67.075782,37.356144],[67.83,37.144994],[68.135562,37.023115],[68.859446,37.344336],[69.196273,37.151144],[69.518785,37.608997],[70.116578,37.588223],[70.270574,37.735165],[70.376304,38.138396],[70.806821,38.486282],[71.348131,38.258905],[71.239404,37.953265],[71.541918,37.905774],[71.448693,37.065645],[71.844638,36.738171],[72.193041,36.948288],[72.63689,37.047558],[73.260056,37.495257],[73.948696,37.421566],[74.980002,37.41999],[75.158028,37.133031],[74.575893,37.020841],[74.067552,36.836176],[72.920025,36.720007],[71.846292,36.509942],[71.262348,36.074388],[71.498768,35.650563],[71.613076,35.153203],[71.115019,34.733126],[71.156773,34.348911],[70.881803,33.988856],[69.930543,34.02012],[70.323594,33.358533],[69.687147,33.105499],[69.262522,32.501944],[69.317764,31.901412],[68.926677,31.620189],[68.556932,31.71331],[67.792689,31.58293],[67.683394,31.303154],[66.938891,31.304911],[66.381458,30.738899],[66.346473,29.887943],[65.046862,29.472181],[64.350419,29.560031],[64.148002,29.340819],[63.550261,29.468331],[62.549857,29.318572],[60.874248,29.829239],[61.781222,30.73585],[61.699314,31.379506],[60.941945,31.548075],[60.863655,32.18292],[60.536078,32.981269],[60.9637,33.528832],[60.52843,33.676446],[60.803193,34.404102],[61.210817,35.650072]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/AFG_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              56.25,\n              31.95216224\n            ],\n            [\n              61.875,\n              31.95216224\n            ],\n            [\n              61.875,\n              27.05912578\n            ],\n            [\n              56.25,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              31.95216224\n            ],\n            [\n              56.25,\n              36.59788913\n            ],\n            [\n              61.875,\n              36.59788913\n            ],\n            [\n              61.875,\n              31.95216224\n            ],\n            [\n              56.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              27.05912578\n            ],\n            [\n              61.875,\n              31.95216224\n            ],\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              67.5,\n              27.05912578\n            ],\n            [\n              61.875,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              31.95216224\n            ],\n            [\n              61.875,\n              36.59788913\n            ],\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              61.875,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              36.59788913\n            ],\n            [\n              61.875,\n              40.97989807\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              61.875,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              27.05912578\n            ],\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              73.125,\n              31.95216224\n            ],\n            [\n              73.125,\n              27.05912578\n            ],\n            [\n              67.5,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              73.125,\n              31.95216224\n            ],\n            [\n              67.5,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              67.5,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              78.75,\n              36.59788913\n            ],\n            [\n              73.125,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.210817,\n              35.650072\n            ],\n            [\n              62.230651,\n              35.270664\n            ],\n            [\n              62.984662,\n              35.404041\n            ],\n            [\n              63.193538,\n              35.857166\n            ],\n            [\n              63.982896,\n              36.007957\n            ],\n            [\n              64.546479,\n              36.312073\n            ],\n            [\n              64.746105,\n              37.111818\n            ],\n            [\n              65.588948,\n              37.305217\n            ],\n            [\n              65.745631,\n              37.661164\n            ],\n            [\n              66.217385,\n              37.39379\n            ],\n            [\n              66.518607,\n              37.362784\n            ],\n            [\n              67.075782,\n              37.356144\n            ],\n            [\n              67.83,\n              37.144994\n            ],\n            [\n              68.135562,\n              37.023115\n            ],\n            [\n              68.859446,\n              37.344336\n            ],\n            [\n              69.196273,\n              37.151144\n            ],\n            [\n              69.518785,\n              37.608997\n            ],\n            [\n              70.116578,\n              37.588223\n            ],\n            [\n              70.270574,\n              37.735165\n            ],\n            [\n              70.376304,\n              38.138396\n            ],\n            [\n              70.806821,\n              38.486282\n            ],\n            [\n              71.348131,\n              38.258905\n            ],\n            [\n              71.239404,\n              37.953265\n            ],\n            [\n              71.541918,\n              37.905774\n            ],\n            [\n              71.448693,\n              37.065645\n            ],\n            [\n              71.844638,\n              36.738171\n            ],\n            [\n              72.193041,\n              36.948288\n            ],\n            [\n              72.63689,\n              37.047558\n            ],\n            [\n              73.260056,\n              37.495257\n            ],\n            [\n              73.948696,\n              37.421566\n            ],\n            [\n              74.980002,\n              37.41999\n            ],\n            [\n              75.158028,\n              37.133031\n            ],\n            [\n              74.575893,\n              37.020841\n            ],\n            [\n              74.067552,\n              36.836176\n            ],\n            [\n              72.920025,\n              36.720007\n            ],\n            [\n              71.846292,\n              36.509942\n            ],\n            [\n              71.262348,\n              36.074388\n            ],\n            [\n              71.498768,\n              35.650563\n            ],\n            [\n              71.613076,\n              35.153203\n            ],\n            [\n              71.115019,\n              34.733126\n            ],\n            [\n              71.156773,\n              34.348911\n            ],\n            [\n              70.881803,\n              33.988856\n            ],\n            [\n              69.930543,\n              34.02012\n            ],\n            [\n              70.323594,\n              33.358533\n            ],\n            [\n              69.687147,\n              33.105499\n            ],\n            [\n              69.262522,\n              32.501944\n            ],\n            [\n              69.317764,\n              31.901412\n            ],\n            [\n              68.926677,\n              31.620189\n            ],\n            [\n              68.556932,\n              31.71331\n            ],\n            [\n              67.792689,\n              31.58293\n            ],\n            [\n              67.683394,\n              31.303154\n            ],\n            [\n              66.938891,\n              31.304911\n            ],\n            [\n              66.381458,\n              30.738899\n            ],\n            [\n              66.346473,\n              29.887943\n            ],\n            [\n              65.046862,\n              29.472181\n            ],\n            [\n              64.350419,\n              29.560031\n            ],\n            [\n              64.148002,\n              29.340819\n            ],\n            [\n              63.550261,\n              29.468331\n            ],\n            [\n              62.549857,\n              29.318572\n            ],\n            [\n              60.874248,\n              29.829239\n            ],\n            [\n              61.781222,\n              30.73585\n            ],\n            [\n              61.699314,\n              31.379506\n            ],\n            [\n              60.941945,\n              31.548075\n            ],\n            [\n              60.863655,\n              32.18292\n            ],\n            [\n              60.536078,\n              32.981269\n            ],\n            [\n              60.9637,\n              33.528832\n            ],\n            [\n              60.52843,\n              33.676446\n            ],\n            [\n              60.803193,\n              34.404102\n            ],\n            [\n              61.210817,\n              35.650072\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/AGO.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"AGO\",\"properties\":{\"name\":\"Angola\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[16.326528,-5.87747],[16.57318,-6.622645],[16.860191,-7.222298],[17.089996,-7.545689],[17.47297,-8.068551],[18.134222,-7.987678],[18.464176,-7.847014],[19.016752,-7.988246],[19.166613,-7.738184],[19.417502,-7.155429],[20.037723,-7.116361],[20.091622,-6.94309],[20.601823,-6.939318],[20.514748,-7.299606],[21.728111,-7.290872],[21.746456,-7.920085],[21.949131,-8.305901],[21.801801,-8.908707],[21.875182,-9.523708],[22.208753,-9.894796],[22.155268,-11.084801],[22.402798,-10.993075],[22.837345,-11.017622],[23.456791,-10.867863],[23.912215,-10.926826],[24.017894,-11.237298],[23.904154,-11.722282],[24.079905,-12.191297],[23.930922,-12.565848],[24.016137,-12.911046],[21.933886,-12.898437],[21.887843,-16.08031],[22.562478,-16.898451],[23.215048,-17.523116],[21.377176,-17.930636],[18.956187,-17.789095],[18.263309,-17.309951],[14.209707,-17.353101],[14.058501,-17.423381],[13.462362,-16.971212],[12.814081,-16.941343],[12.215461,-17.111668],[11.734199,-17.301889],[11.640096,-16.673142],[11.778537,-15.793816],[12.123581,-14.878316],[12.175619,-14.449144],[12.500095,-13.5477],[12.738479,-13.137906],[13.312914,-12.48363],[13.633721,-12.038645],[13.738728,-11.297863],[13.686379,-10.731076],[13.387328,-10.373578],[13.120988,-9.766897],[12.87537,-9.166934],[12.929061,-8.959091],[13.236433,-8.562629],[12.93304,-7.596539],[12.728298,-6.927122],[12.227347,-6.294448],[12.322432,-6.100092],[12.735171,-5.965682],[13.024869,-5.984389],[13.375597,-5.864241],[16.326528,-5.87747]]],[[[12.436688,-5.684304],[12.182337,-5.789931],[11.914963,-5.037987],[12.318608,-4.60623],[12.62076,-4.438023],[12.995517,-4.781103],[12.631612,-4.991271],[12.468004,-5.248362],[12.436688,-5.684304]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/AGO_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -11.17840187\n            ],\n            [\n              11.25,\n              -5.61598582\n            ],\n            [\n              16.875,\n              -5.61598582\n            ],\n            [\n              16.875,\n              -11.17840187\n            ],\n            [\n              11.25,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -21.94304553\n            ],\n            [\n              11.25,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              11.25,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -5.61598582\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              16.875,\n              -5.61598582\n            ],\n            [\n              11.25,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -11.17840187\n            ],\n            [\n              16.875,\n              -5.61598582\n            ],\n            [\n              22.5,\n              -5.61598582\n            ],\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              16.875,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -5.61598582\n            ],\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                16.326528,\n                -5.87747\n              ],\n              [\n                16.57318,\n                -6.622645\n              ],\n              [\n                16.860191,\n                -7.222298\n              ],\n              [\n                17.089996,\n                -7.545689\n              ],\n              [\n                17.47297,\n                -8.068551\n              ],\n              [\n                18.134222,\n                -7.987678\n              ],\n              [\n                18.464176,\n                -7.847014\n              ],\n              [\n                19.016752,\n                -7.988246\n              ],\n              [\n                19.166613,\n                -7.738184\n              ],\n              [\n                19.417502,\n                -7.155429\n              ],\n              [\n                20.037723,\n                -7.116361\n              ],\n              [\n                20.091622,\n                -6.94309\n              ],\n              [\n                20.601823,\n                -6.939318\n              ],\n              [\n                20.514748,\n                -7.299606\n              ],\n              [\n                21.728111,\n                -7.290872\n              ],\n              [\n                21.746456,\n                -7.920085\n              ],\n              [\n                21.949131,\n                -8.305901\n              ],\n              [\n                21.801801,\n                -8.908707\n              ],\n              [\n                21.875182,\n                -9.523708\n              ],\n              [\n                22.208753,\n                -9.894796\n              ],\n              [\n                22.155268,\n                -11.084801\n              ],\n              [\n                22.402798,\n                -10.993075\n              ],\n              [\n                22.837345,\n                -11.017622\n              ],\n              [\n                23.456791,\n                -10.867863\n              ],\n              [\n                23.912215,\n                -10.926826\n              ],\n              [\n                24.017894,\n                -11.237298\n              ],\n              [\n                23.904154,\n                -11.722282\n              ],\n              [\n                24.079905,\n                -12.191297\n              ],\n              [\n                23.930922,\n                -12.565848\n              ],\n              [\n                24.016137,\n                -12.911046\n              ],\n              [\n                21.933886,\n                -12.898437\n              ],\n              [\n                21.887843,\n                -16.08031\n              ],\n              [\n                22.562478,\n                -16.898451\n              ],\n              [\n                23.215048,\n                -17.523116\n              ],\n              [\n                21.377176,\n                -17.930636\n              ],\n              [\n                18.956187,\n                -17.789095\n              ],\n              [\n                18.263309,\n                -17.309951\n              ],\n              [\n                14.209707,\n                -17.353101\n              ],\n              [\n                14.058501,\n                -17.423381\n              ],\n              [\n                13.462362,\n                -16.971212\n              ],\n              [\n                12.814081,\n                -16.941343\n              ],\n              [\n                12.215461,\n                -17.111668\n              ],\n              [\n                11.734199,\n                -17.301889\n              ],\n              [\n                11.640096,\n                -16.673142\n              ],\n              [\n                11.778537,\n                -15.793816\n              ],\n              [\n                12.123581,\n                -14.878316\n              ],\n              [\n                12.175619,\n                -14.449144\n              ],\n              [\n                12.500095,\n                -13.5477\n              ],\n              [\n                12.738479,\n                -13.137906\n              ],\n              [\n                13.312914,\n                -12.48363\n              ],\n              [\n                13.633721,\n                -12.038645\n              ],\n              [\n                13.738728,\n                -11.297863\n              ],\n              [\n                13.686379,\n                -10.731076\n              ],\n              [\n                13.387328,\n                -10.373578\n              ],\n              [\n                13.120988,\n                -9.766897\n              ],\n              [\n                12.87537,\n                -9.166934\n              ],\n              [\n                12.929061,\n                -8.959091\n              ],\n              [\n                13.236433,\n                -8.562629\n              ],\n              [\n                12.93304,\n                -7.596539\n              ],\n              [\n                12.728298,\n                -6.927122\n              ],\n              [\n                12.227347,\n                -6.294448\n              ],\n              [\n                12.322432,\n                -6.100092\n              ],\n              [\n                12.735171,\n                -5.965682\n              ],\n              [\n                13.024869,\n                -5.984389\n              ],\n              [\n                13.375597,\n                -5.864241\n              ],\n              [\n                16.326528,\n                -5.87747\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                12.436688,\n                -5.684304\n              ],\n              [\n                12.182337,\n                -5.789931\n              ],\n              [\n                11.914963,\n                -5.037987\n              ],\n              [\n                12.318608,\n                -4.60623\n              ],\n              [\n                12.62076,\n                -4.438023\n              ],\n              [\n                12.995517,\n                -4.781103\n              ],\n              [\n                12.631612,\n                -4.991271\n              ],\n              [\n                12.468004,\n                -5.248362\n              ],\n              [\n                12.436688,\n                -5.684304\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ALB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ALB\",\"properties\":{\"name\":\"Albania\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[20.590247,41.855404],[20.463175,41.515089],[20.605182,41.086226],[21.02004,40.842727],[20.99999,40.580004],[20.674997,40.435],[20.615,40.110007],[20.150016,39.624998],[19.98,39.694993],[19.960002,39.915006],[19.406082,40.250773],[19.319059,40.72723],[19.40355,41.409566],[19.540027,41.719986],[19.371769,41.877548],[19.304486,42.195745],[19.738051,42.688247],[19.801613,42.500093],[20.0707,42.58863],[20.283755,42.32026],[20.52295,42.21787],[20.590247,41.855404]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ALB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              16.875,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.590247,\n              41.855404\n            ],\n            [\n              20.463175,\n              41.515089\n            ],\n            [\n              20.605182,\n              41.086226\n            ],\n            [\n              21.02004,\n              40.842727\n            ],\n            [\n              20.99999,\n              40.580004\n            ],\n            [\n              20.674997,\n              40.435\n            ],\n            [\n              20.615,\n              40.110007\n            ],\n            [\n              20.150016,\n              39.624998\n            ],\n            [\n              19.98,\n              39.694993\n            ],\n            [\n              19.960002,\n              39.915006\n            ],\n            [\n              19.406082,\n              40.250773\n            ],\n            [\n              19.319059,\n              40.72723\n            ],\n            [\n              19.40355,\n              41.409566\n            ],\n            [\n              19.540027,\n              41.719986\n            ],\n            [\n              19.371769,\n              41.877548\n            ],\n            [\n              19.304486,\n              42.195745\n            ],\n            [\n              19.738051,\n              42.688247\n            ],\n            [\n              19.801613,\n              42.500093\n            ],\n            [\n              20.0707,\n              42.58863\n            ],\n            [\n              20.283755,\n              42.32026\n            ],\n            [\n              20.52295,\n              42.21787\n            ],\n            [\n              20.590247,\n              41.855404\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ARE.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ARE\",\"properties\":{\"name\":\"United Arab Emirates\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[51.579519,24.245497],[51.757441,24.294073],[51.794389,24.019826],[52.577081,24.177439],[53.404007,24.151317],[54.008001,24.121758],[54.693024,24.797892],[55.439025,25.439145],[56.070821,26.055464],[56.261042,25.714606],[56.396847,24.924732],[55.886233,24.920831],[55.804119,24.269604],[55.981214,24.130543],[55.528632,23.933604],[55.525841,23.524869],[55.234489,23.110993],[55.208341,22.70833],[55.006803,22.496948],[52.000733,23.001154],[51.617708,24.014219],[51.579519,24.245497]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ARE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              50.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              61.875,\n              27.05912578\n            ],\n            [\n              61.875,\n              21.94304553\n            ],\n            [\n              56.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              51.579519,\n              24.245497\n            ],\n            [\n              51.757441,\n              24.294073\n            ],\n            [\n              51.794389,\n              24.019826\n            ],\n            [\n              52.577081,\n              24.177439\n            ],\n            [\n              53.404007,\n              24.151317\n            ],\n            [\n              54.008001,\n              24.121758\n            ],\n            [\n              54.693024,\n              24.797892\n            ],\n            [\n              55.439025,\n              25.439145\n            ],\n            [\n              56.070821,\n              26.055464\n            ],\n            [\n              56.261042,\n              25.714606\n            ],\n            [\n              56.396847,\n              24.924732\n            ],\n            [\n              55.886233,\n              24.920831\n            ],\n            [\n              55.804119,\n              24.269604\n            ],\n            [\n              55.981214,\n              24.130543\n            ],\n            [\n              55.528632,\n              23.933604\n            ],\n            [\n              55.525841,\n              23.524869\n            ],\n            [\n              55.234489,\n              23.110993\n            ],\n            [\n              55.208341,\n              22.70833\n            ],\n            [\n              55.006803,\n              22.496948\n            ],\n            [\n              52.000733,\n              23.001154\n            ],\n            [\n              51.617708,\n              24.014219\n            ],\n            [\n              51.579519,\n              24.245497\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ARG.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ARG\",\"properties\":{\"name\":\"Argentina\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401,-52.63637],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ARG_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -50.625,\n              -21.94304553\n            ],\n            [\n              -50.625,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -50.625,\n              -27.05912578\n            ],\n            [\n              -50.625,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -16.63619188\n            ],\n            [\n              -61.875,\n              -16.63619188\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -31.95216224\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -67.5,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -40.97989807\n            ],\n            [\n              -67.5,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -40.97989807\n            ],\n            [\n              -67.5,\n              -40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -45.08903556\n            ],\n            [\n              -67.5,\n              -40.97989807\n            ],\n            [\n              -61.875,\n              -40.97989807\n            ],\n            [\n              -61.875,\n              -45.08903556\n            ],\n            [\n              -67.5,\n              -45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -48.92249926\n            ],\n            [\n              -67.5,\n              -45.08903556\n            ],\n            [\n              -61.875,\n              -45.08903556\n            ],\n            [\n              -61.875,\n              -48.92249926\n            ],\n            [\n              -67.5,\n              -48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -52.48278022\n            ],\n            [\n              -67.5,\n              -48.92249926\n            ],\n            [\n              -61.875,\n              -48.92249926\n            ],\n            [\n              -61.875,\n              -52.48278022\n            ],\n            [\n              -67.5,\n              -52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -55.77657302\n            ],\n            [\n              -67.5,\n              -52.48278022\n            ],\n            [\n              -61.875,\n              -52.48278022\n            ],\n            [\n              -61.875,\n              -55.77657302\n            ],\n            [\n              -67.5,\n              -55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -27.05912578\n            ],\n            [\n              -73.125,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -27.05912578\n            ],\n            [\n              -73.125,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -31.95216224\n            ],\n            [\n              -73.125,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -31.95216224\n            ],\n            [\n              -73.125,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -36.59788913\n            ],\n            [\n              -73.125,\n              -31.95216224\n            ],\n            [\n              -67.5,\n              -31.95216224\n            ],\n            [\n              -67.5,\n              -36.59788913\n            ],\n            [\n              -73.125,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -40.97989807\n            ],\n            [\n              -73.125,\n              -36.59788913\n            ],\n            [\n              -67.5,\n              -36.59788913\n            ],\n            [\n              -67.5,\n              -40.97989807\n            ],\n            [\n              -73.125,\n              -40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -45.08903556\n            ],\n            [\n              -73.125,\n              -40.97989807\n            ],\n            [\n              -67.5,\n              -40.97989807\n            ],\n            [\n              -67.5,\n              -45.08903556\n            ],\n            [\n              -73.125,\n              -45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -48.92249926\n            ],\n            [\n              -73.125,\n              -45.08903556\n            ],\n            [\n              -67.5,\n              -45.08903556\n            ],\n            [\n              -67.5,\n              -48.92249926\n            ],\n            [\n              -73.125,\n              -48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -52.48278022\n            ],\n            [\n              -73.125,\n              -48.92249926\n            ],\n            [\n              -67.5,\n              -48.92249926\n            ],\n            [\n              -67.5,\n              -52.48278022\n            ],\n            [\n              -73.125,\n              -52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -55.77657302\n            ],\n            [\n              -73.125,\n              -52.48278022\n            ],\n            [\n              -67.5,\n              -52.48278022\n            ],\n            [\n              -67.5,\n              -55.77657302\n            ],\n            [\n              -73.125,\n              -55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -52.48278022\n            ],\n            [\n              -78.75,\n              -48.92249926\n            ],\n            [\n              -73.125,\n              -48.92249926\n            ],\n            [\n              -73.125,\n              -52.48278022\n            ],\n            [\n              -78.75,\n              -52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                -65.5,\n                -55.2\n              ],\n              [\n                -66.45,\n                -55.25\n              ],\n              [\n                -66.95992,\n                -54.89681\n              ],\n              [\n                -67.56244,\n                -54.87001\n              ],\n              [\n                -68.63335,\n                -54.8695\n              ],\n              [\n                -68.63401,\n                -52.63637\n              ],\n              [\n                -68.25,\n                -53.1\n              ],\n              [\n                -67.75,\n                -53.85\n              ],\n              [\n                -66.45,\n                -54.45\n              ],\n              [\n                -65.05,\n                -54.7\n              ],\n              [\n                -65.5,\n                -55.2\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -64.964892,\n                -22.075862\n              ],\n              [\n                -64.377021,\n                -22.798091\n              ],\n              [\n                -63.986838,\n                -21.993644\n              ],\n              [\n                -62.846468,\n                -22.034985\n              ],\n              [\n                -62.685057,\n                -22.249029\n              ],\n              [\n                -60.846565,\n                -23.880713\n              ],\n              [\n                -60.028966,\n                -24.032796\n              ],\n              [\n                -58.807128,\n                -24.771459\n              ],\n              [\n                -57.777217,\n                -25.16234\n              ],\n              [\n                -57.63366,\n                -25.603657\n              ],\n              [\n                -58.618174,\n                -27.123719\n              ],\n              [\n                -57.60976,\n                -27.395899\n              ],\n              [\n                -56.486702,\n                -27.548499\n              ],\n              [\n                -55.695846,\n                -27.387837\n              ],\n              [\n                -54.788795,\n                -26.621786\n              ],\n              [\n                -54.625291,\n                -25.739255\n              ],\n              [\n                -54.13005,\n                -25.547639\n              ],\n              [\n                -53.628349,\n                -26.124865\n              ],\n              [\n                -53.648735,\n                -26.923473\n              ],\n              [\n                -54.490725,\n                -27.474757\n              ],\n              [\n                -55.162286,\n                -27.881915\n              ],\n              [\n                -56.2909,\n                -28.852761\n              ],\n              [\n                -57.625133,\n                -30.216295\n              ],\n              [\n                -57.874937,\n                -31.016556\n              ],\n              [\n                -58.14244,\n                -32.044504\n              ],\n              [\n                -58.132648,\n                -33.040567\n              ],\n              [\n                -58.349611,\n                -33.263189\n              ],\n              [\n                -58.427074,\n                -33.909454\n              ],\n              [\n                -58.495442,\n                -34.43149\n              ],\n              [\n                -57.22583,\n                -35.288027\n              ],\n              [\n                -57.362359,\n                -35.97739\n              ],\n              [\n                -56.737487,\n                -36.413126\n              ],\n              [\n                -56.788285,\n                -36.901572\n              ],\n              [\n                -57.749157,\n                -38.183871\n              ],\n              [\n                -59.231857,\n                -38.72022\n              ],\n              [\n                -61.237445,\n                -38.928425\n              ],\n              [\n                -62.335957,\n                -38.827707\n              ],\n              [\n                -62.125763,\n                -39.424105\n              ],\n              [\n                -62.330531,\n                -40.172586\n              ],\n              [\n                -62.145994,\n                -40.676897\n              ],\n              [\n                -62.745803,\n                -41.028761\n              ],\n              [\n                -63.770495,\n                -41.166789\n              ],\n              [\n                -64.73209,\n                -40.802677\n              ],\n              [\n                -65.118035,\n                -41.064315\n              ],\n              [\n                -64.978561,\n                -42.058001\n              ],\n              [\n                -64.303408,\n                -42.359016\n              ],\n              [\n                -63.755948,\n                -42.043687\n              ],\n              [\n                -63.458059,\n                -42.563138\n              ],\n              [\n                -64.378804,\n                -42.873558\n              ],\n              [\n                -65.181804,\n                -43.495381\n              ],\n              [\n                -65.328823,\n                -44.501366\n              ],\n              [\n                -65.565269,\n                -45.036786\n              ],\n              [\n                -66.509966,\n                -45.039628\n              ],\n              [\n                -67.293794,\n                -45.551896\n              ],\n              [\n                -67.580546,\n                -46.301773\n              ],\n              [\n                -66.597066,\n                -47.033925\n              ],\n              [\n                -65.641027,\n                -47.236135\n              ],\n              [\n                -65.985088,\n                -48.133289\n              ],\n              [\n                -67.166179,\n                -48.697337\n              ],\n              [\n                -67.816088,\n                -49.869669\n              ],\n              [\n                -68.728745,\n                -50.264218\n              ],\n              [\n                -69.138539,\n                -50.73251\n              ],\n              [\n                -68.815561,\n                -51.771104\n              ],\n              [\n                -68.149995,\n                -52.349983\n              ],\n              [\n                -68.571545,\n                -52.299444\n              ],\n              [\n                -69.498362,\n                -52.142761\n              ],\n              [\n                -71.914804,\n                -52.009022\n              ],\n              [\n                -72.329404,\n                -51.425956\n              ],\n              [\n                -72.309974,\n                -50.67701\n              ],\n              [\n                -72.975747,\n                -50.74145\n              ],\n              [\n                -73.328051,\n                -50.378785\n              ],\n              [\n                -73.415436,\n                -49.318436\n              ],\n              [\n                -72.648247,\n                -48.878618\n              ],\n              [\n                -72.331161,\n                -48.244238\n              ],\n              [\n                -72.447355,\n                -47.738533\n              ],\n              [\n                -71.917258,\n                -46.884838\n              ],\n              [\n                -71.552009,\n                -45.560733\n              ],\n              [\n                -71.659316,\n                -44.973689\n              ],\n              [\n                -71.222779,\n                -44.784243\n              ],\n              [\n                -71.329801,\n                -44.407522\n              ],\n              [\n                -71.793623,\n                -44.207172\n              ],\n              [\n                -71.464056,\n                -43.787611\n              ],\n              [\n                -71.915424,\n                -43.408565\n              ],\n              [\n                -72.148898,\n                -42.254888\n              ],\n              [\n                -71.746804,\n                -42.051386\n              ],\n              [\n                -71.915734,\n                -40.832339\n              ],\n              [\n                -71.680761,\n                -39.808164\n              ],\n              [\n                -71.413517,\n                -38.916022\n              ],\n              [\n                -70.814664,\n                -38.552995\n              ],\n              [\n                -71.118625,\n                -37.576827\n              ],\n              [\n                -71.121881,\n                -36.658124\n              ],\n              [\n                -70.364769,\n                -36.005089\n              ],\n              [\n                -70.388049,\n                -35.169688\n              ],\n              [\n                -69.817309,\n                -34.193571\n              ],\n              [\n                -69.814777,\n                -33.273886\n              ],\n              [\n                -70.074399,\n                -33.09121\n              ],\n              [\n                -70.535069,\n                -31.36501\n              ],\n              [\n                -69.919008,\n                -30.336339\n              ],\n              [\n                -70.01355,\n                -29.367923\n              ],\n              [\n                -69.65613,\n                -28.459141\n              ],\n              [\n                -69.001235,\n                -27.521214\n              ],\n              [\n                -68.295542,\n                -26.89934\n              ],\n              [\n                -68.5948,\n                -26.506909\n              ],\n              [\n                -68.386001,\n                -26.185016\n              ],\n              [\n                -68.417653,\n                -24.518555\n              ],\n              [\n                -67.328443,\n                -24.025303\n              ],\n              [\n                -66.985234,\n                -22.986349\n              ],\n              [\n                -67.106674,\n                -22.735925\n              ],\n              [\n                -66.273339,\n                -21.83231\n              ],\n              [\n                -64.964892,\n                -22.075862\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ARM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ARM\",\"properties\":{\"name\":\"Armenia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ARM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              39.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              36.59788913\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              50.625,\n              36.59788913\n            ],\n            [\n              45,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              43.582746,\n              41.092143\n            ],\n            [\n              44.97248,\n              41.248129\n            ],\n            [\n              45.179496,\n              40.985354\n            ],\n            [\n              45.560351,\n              40.81229\n            ],\n            [\n              45.359175,\n              40.561504\n            ],\n            [\n              45.891907,\n              40.218476\n            ],\n            [\n              45.610012,\n              39.899994\n            ],\n            [\n              46.034534,\n              39.628021\n            ],\n            [\n              46.483499,\n              39.464155\n            ],\n            [\n              46.50572,\n              38.770605\n            ],\n            [\n              46.143623,\n              38.741201\n            ],\n            [\n              45.735379,\n              39.319719\n            ],\n            [\n              45.739978,\n              39.473999\n            ],\n            [\n              45.298145,\n              39.471751\n            ],\n            [\n              45.001987,\n              39.740004\n            ],\n            [\n              44.79399,\n              39.713003\n            ],\n            [\n              44.400009,\n              40.005\n            ],\n            [\n              43.656436,\n              40.253564\n            ],\n            [\n              43.752658,\n              40.740201\n            ],\n            [\n              43.582746,\n              41.092143\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ATF.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ATF\",\"properties\":{\"name\":\"French Southern and Antarctic Lands\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ATF_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              -48.92249926\n            ],\n            [\n              67.5,\n              -45.08903556\n            ],\n            [\n              73.125,\n              -45.08903556\n            ],\n            [\n              73.125,\n              -48.92249926\n            ],\n            [\n              67.5,\n              -48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              -52.48278022\n            ],\n            [\n              67.5,\n              -48.92249926\n            ],\n            [\n              73.125,\n              -48.92249926\n            ],\n            [\n              73.125,\n              -52.48278022\n            ],\n            [\n              67.5,\n              -52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              68.935,\n              -48.625\n            ],\n            [\n              69.58,\n              -48.94\n            ],\n            [\n              70.525,\n              -49.065\n            ],\n            [\n              70.56,\n              -49.255\n            ],\n            [\n              70.28,\n              -49.71\n            ],\n            [\n              68.745,\n              -49.775\n            ],\n            [\n              68.72,\n              -49.2425\n            ],\n            [\n              68.8675,\n              -48.83\n            ],\n            [\n              68.935,\n              -48.625\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/AUS.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"AUS\",\"properties\":{\"name\":\"Australia\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[145.397978,-40.792549],[146.364121,-41.137695],[146.908584,-41.000546],[147.689259,-40.808258],[148.289068,-40.875438],[148.359865,-42.062445],[148.017301,-42.407024],[147.914052,-43.211522],[147.564564,-42.937689],[146.870343,-43.634597],[146.663327,-43.580854],[146.048378,-43.549745],[145.43193,-42.693776],[145.29509,-42.03361],[144.718071,-41.162552],[144.743755,-40.703975],[145.397978,-40.792549]]],[[[143.561811,-13.763656],[143.922099,-14.548311],[144.563714,-14.171176],[144.894908,-14.594458],[145.374724,-14.984976],[145.271991,-15.428205],[145.48526,-16.285672],[145.637033,-16.784918],[145.888904,-16.906926],[146.160309,-17.761655],[146.063674,-18.280073],[146.387478,-18.958274],[147.471082,-19.480723],[148.177602,-19.955939],[148.848414,-20.39121],[148.717465,-20.633469],[149.28942,-21.260511],[149.678337,-22.342512],[150.077382,-22.122784],[150.482939,-22.556142],[150.727265,-22.402405],[150.899554,-23.462237],[151.609175,-24.076256],[152.07354,-24.457887],[152.855197,-25.267501],[153.136162,-26.071173],[153.161949,-26.641319],[153.092909,-27.2603],[153.569469,-28.110067],[153.512108,-28.995077],[153.339095,-29.458202],[153.069241,-30.35024],[153.089602,-30.923642],[152.891578,-31.640446],[152.450002,-32.550003],[151.709117,-33.041342],[151.343972,-33.816023],[151.010555,-34.31036],[150.714139,-35.17346],[150.32822,-35.671879],[150.075212,-36.420206],[149.946124,-37.109052],[149.997284,-37.425261],[149.423882,-37.772681],[148.304622,-37.809061],[147.381733,-38.219217],[146.922123,-38.606532],[146.317922,-39.035757],[145.489652,-38.593768],[144.876976,-38.417448],[145.032212,-37.896188],[144.485682,-38.085324],[143.609974,-38.809465],[142.745427,-38.538268],[142.17833,-38.380034],[141.606582,-38.308514],[140.638579,-38.019333],[139.992158,-37.402936],[139.806588,-36.643603],[139.574148,-36.138362],[139.082808,-35.732754],[138.120748,-35.612296],[138.449462,-35.127261],[138.207564,-34.384723],[137.71917,-35.076825],[136.829406,-35.260535],[137.352371,-34.707339],[137.503886,-34.130268],[137.890116,-33.640479],[137.810328,-32.900007],[136.996837,-33.752771],[136.372069,-34.094766],[135.989043,-34.890118],[135.208213,-34.47867],[135.239218,-33.947953],[134.613417,-33.222778],[134.085904,-32.848072],[134.273903,-32.617234],[132.990777,-32.011224],[132.288081,-31.982647],[131.326331,-31.495803],[129.535794,-31.590423],[128.240938,-31.948489],[127.102867,-32.282267],[126.148714,-32.215966],[125.088623,-32.728751],[124.221648,-32.959487],[124.028947,-33.483847],[123.659667,-33.890179],[122.811036,-33.914467],[122.183064,-34.003402],[121.299191,-33.821036],[120.580268,-33.930177],[119.893695,-33.976065],[119.298899,-34.509366],[119.007341,-34.464149],[118.505718,-34.746819],[118.024972,-35.064733],[117.295507,-35.025459],[116.625109,-35.025097],[115.564347,-34.386428],[115.026809,-34.196517],[115.048616,-33.623425],[115.545123,-33.487258],[115.714674,-33.259572],[115.679379,-32.900369],[115.801645,-32.205062],[115.689611,-31.612437],[115.160909,-30.601594],[114.997043,-30.030725],[115.040038,-29.461095],[114.641974,-28.810231],[114.616498,-28.516399],[114.173579,-28.118077],[114.048884,-27.334765],[113.477498,-26.543134],[113.338953,-26.116545],[113.778358,-26.549025],[113.440962,-25.621278],[113.936901,-25.911235],[114.232852,-26.298446],[114.216161,-25.786281],[113.721255,-24.998939],[113.625344,-24.683971],[113.393523,-24.384764],[113.502044,-23.80635],[113.706993,-23.560215],[113.843418,-23.059987],[113.736552,-22.475475],[114.149756,-21.755881],[114.225307,-22.517488],[114.647762,-21.82952],[115.460167,-21.495173],[115.947373,-21.068688],[116.711615,-20.701682],[117.166316,-20.623599],[117.441545,-20.746899],[118.229559,-20.374208],[118.836085,-20.263311],[118.987807,-20.044203],[119.252494,-19.952942],[119.805225,-19.976506],[120.85622,-19.683708],[121.399856,-19.239756],[121.655138,-18.705318],[122.241665,-18.197649],[122.286624,-17.798603],[122.312772,-17.254967],[123.012574,-16.4052],[123.433789,-17.268558],[123.859345,-17.069035],[123.503242,-16.596506],[123.817073,-16.111316],[124.258287,-16.327944],[124.379726,-15.56706],[124.926153,-15.0751],[125.167275,-14.680396],[125.670087,-14.51007],[125.685796,-14.230656],[126.125149,-14.347341],[126.142823,-14.095987],[126.582589,-13.952791],[127.065867,-13.817968],[127.804633,-14.276906],[128.35969,-14.86917],[128.985543,-14.875991],[129.621473,-14.969784],[129.4096,-14.42067],[129.888641,-13.618703],[130.339466,-13.357376],[130.183506,-13.10752],[130.617795,-12.536392],[131.223495,-12.183649],[131.735091,-12.302453],[132.575298,-12.114041],[132.557212,-11.603012],[131.824698,-11.273782],[132.357224,-11.128519],[133.019561,-11.376411],[133.550846,-11.786515],[134.393068,-12.042365],[134.678632,-11.941183],[135.298491,-12.248606],[135.882693,-11.962267],[136.258381,-12.049342],[136.492475,-11.857209],[136.95162,-12.351959],[136.685125,-12.887223],[136.305407,-13.29123],[135.961758,-13.324509],[136.077617,-13.724278],[135.783836,-14.223989],[135.428664,-14.715432],[135.500184,-14.997741],[136.295175,-15.550265],[137.06536,-15.870762],[137.580471,-16.215082],[138.303217,-16.807604],[138.585164,-16.806622],[139.108543,-17.062679],[139.260575,-17.371601],[140.215245,-17.710805],[140.875463,-17.369069],[141.07111,-16.832047],[141.274095,-16.38887],[141.398222,-15.840532],[141.702183,-15.044921],[141.56338,-14.561333],[141.63552,-14.270395],[141.519869,-13.698078],[141.65092,-12.944688],[141.842691,-12.741548],[141.68699,-12.407614],[141.928629,-11.877466],[142.118488,-11.328042],[142.143706,-11.042737],[142.51526,-10.668186],[142.79731,-11.157355],[142.866763,-11.784707],[143.115947,-11.90563],[143.158632,-12.325656],[143.522124,-12.834358],[143.597158,-13.400422],[143.561811,-13.763656]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/AUS_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              -21.94304553\n            ],\n            [\n              112.5,\n              -16.63619188\n            ],\n            [\n              118.125,\n              -16.63619188\n            ],\n            [\n              118.125,\n              -21.94304553\n            ],\n            [\n              112.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              -31.95216224\n            ],\n            [\n              112.5,\n              -21.94304553\n            ],\n            [\n              123.75,\n              -21.94304553\n            ],\n            [\n              123.75,\n              -31.95216224\n            ],\n            [\n              112.5,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              -36.59788913\n            ],\n            [\n              112.5,\n              -31.95216224\n            ],\n            [\n              118.125,\n              -31.95216224\n            ],\n            [\n              118.125,\n              -36.59788913\n            ],\n            [\n              112.5,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              -16.63619188\n            ],\n            [\n              118.125,\n              -11.17840187\n            ],\n            [\n              123.75,\n              -11.17840187\n            ],\n            [\n              123.75,\n              -16.63619188\n            ],\n            [\n              118.125,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              -21.94304553\n            ],\n            [\n              118.125,\n              -16.63619188\n            ],\n            [\n              123.75,\n              -16.63619188\n            ],\n            [\n              123.75,\n              -21.94304553\n            ],\n            [\n              118.125,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              -36.59788913\n            ],\n            [\n              118.125,\n              -31.95216224\n            ],\n            [\n              123.75,\n              -31.95216224\n            ],\n            [\n              123.75,\n              -36.59788913\n            ],\n            [\n              118.125,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              -21.94304553\n            ],\n            [\n              123.75,\n              -11.17840187\n            ],\n            [\n              135,\n              -11.17840187\n            ],\n            [\n              135,\n              -21.94304553\n            ],\n            [\n              123.75,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              -31.95216224\n            ],\n            [\n              123.75,\n              -21.94304553\n            ],\n            [\n              135,\n              -21.94304553\n            ],\n            [\n              135,\n              -31.95216224\n            ],\n            [\n              123.75,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              -36.59788913\n            ],\n            [\n              123.75,\n              -31.95216224\n            ],\n            [\n              129.375,\n              -31.95216224\n            ],\n            [\n              129.375,\n              -36.59788913\n            ],\n            [\n              123.75,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              -11.17840187\n            ],\n            [\n              129.375,\n              -5.61598582\n            ],\n            [\n              135,\n              -5.61598582\n            ],\n            [\n              135,\n              -11.17840187\n            ],\n            [\n              129.375,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              -36.59788913\n            ],\n            [\n              129.375,\n              -31.95216224\n            ],\n            [\n              135,\n              -31.95216224\n            ],\n            [\n              135,\n              -36.59788913\n            ],\n            [\n              129.375,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              -21.94304553\n            ],\n            [\n              135,\n              -11.17840187\n            ],\n            [\n              146.25,\n              -11.17840187\n            ],\n            [\n              146.25,\n              -21.94304553\n            ],\n            [\n              135,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              -31.95216224\n            ],\n            [\n              135,\n              -21.94304553\n            ],\n            [\n              146.25,\n              -21.94304553\n            ],\n            [\n              146.25,\n              -31.95216224\n            ],\n            [\n              135,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              -40.97989807\n            ],\n            [\n              135,\n              -31.95216224\n            ],\n            [\n              146.25,\n              -31.95216224\n            ],\n            [\n              146.25,\n              -40.97989807\n            ],\n            [\n              135,\n              -40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              -11.17840187\n            ],\n            [\n              140.625,\n              -5.61598582\n            ],\n            [\n              146.25,\n              -5.61598582\n            ],\n            [\n              146.25,\n              -11.17840187\n            ],\n            [\n              140.625,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              -45.08903556\n            ],\n            [\n              140.625,\n              -40.97989807\n            ],\n            [\n              146.25,\n              -40.97989807\n            ],\n            [\n              146.25,\n              -45.08903556\n            ],\n            [\n              140.625,\n              -45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              -21.94304553\n            ],\n            [\n              146.25,\n              -16.63619188\n            ],\n            [\n              151.875,\n              -16.63619188\n            ],\n            [\n              151.875,\n              -21.94304553\n            ],\n            [\n              146.25,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              -31.95216224\n            ],\n            [\n              146.25,\n              -21.94304553\n            ],\n            [\n              157.5,\n              -21.94304553\n            ],\n            [\n              157.5,\n              -31.95216224\n            ],\n            [\n              146.25,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              -36.59788913\n            ],\n            [\n              146.25,\n              -31.95216224\n            ],\n            [\n              151.875,\n              -31.95216224\n            ],\n            [\n              151.875,\n              -36.59788913\n            ],\n            [\n              146.25,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              -40.97989807\n            ],\n            [\n              146.25,\n              -36.59788913\n            ],\n            [\n              151.875,\n              -36.59788913\n            ],\n            [\n              151.875,\n              -40.97989807\n            ],\n            [\n              146.25,\n              -40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              -45.08903556\n            ],\n            [\n              146.25,\n              -40.97989807\n            ],\n            [\n              151.875,\n              -40.97989807\n            ],\n            [\n              151.875,\n              -45.08903556\n            ],\n            [\n              146.25,\n              -45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              -36.59788913\n            ],\n            [\n              151.875,\n              -31.95216224\n            ],\n            [\n              157.5,\n              -31.95216224\n            ],\n            [\n              157.5,\n              -36.59788913\n            ],\n            [\n              151.875,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                145.397978,\n                -40.792549\n              ],\n              [\n                146.364121,\n                -41.137695\n              ],\n              [\n                146.908584,\n                -41.000546\n              ],\n              [\n                147.689259,\n                -40.808258\n              ],\n              [\n                148.289068,\n                -40.875438\n              ],\n              [\n                148.359865,\n                -42.062445\n              ],\n              [\n                148.017301,\n                -42.407024\n              ],\n              [\n                147.914052,\n                -43.211522\n              ],\n              [\n                147.564564,\n                -42.937689\n              ],\n              [\n                146.870343,\n                -43.634597\n              ],\n              [\n                146.663327,\n                -43.580854\n              ],\n              [\n                146.048378,\n                -43.549745\n              ],\n              [\n                145.43193,\n                -42.693776\n              ],\n              [\n                145.29509,\n                -42.03361\n              ],\n              [\n                144.718071,\n                -41.162552\n              ],\n              [\n                144.743755,\n                -40.703975\n              ],\n              [\n                145.397978,\n                -40.792549\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                143.561811,\n                -13.763656\n              ],\n              [\n                143.922099,\n                -14.548311\n              ],\n              [\n                144.563714,\n                -14.171176\n              ],\n              [\n                144.894908,\n                -14.594458\n              ],\n              [\n                145.374724,\n                -14.984976\n              ],\n              [\n                145.271991,\n                -15.428205\n              ],\n              [\n                145.48526,\n                -16.285672\n              ],\n              [\n                145.637033,\n                -16.784918\n              ],\n              [\n                145.888904,\n                -16.906926\n              ],\n              [\n                146.160309,\n                -17.761655\n              ],\n              [\n                146.063674,\n                -18.280073\n              ],\n              [\n                146.387478,\n                -18.958274\n              ],\n              [\n                147.471082,\n                -19.480723\n              ],\n              [\n                148.177602,\n                -19.955939\n              ],\n              [\n                148.848414,\n                -20.39121\n              ],\n              [\n                148.717465,\n                -20.633469\n              ],\n              [\n                149.28942,\n                -21.260511\n              ],\n              [\n                149.678337,\n                -22.342512\n              ],\n              [\n                150.077382,\n                -22.122784\n              ],\n              [\n                150.482939,\n                -22.556142\n              ],\n              [\n                150.727265,\n                -22.402405\n              ],\n              [\n                150.899554,\n                -23.462237\n              ],\n              [\n                151.609175,\n                -24.076256\n              ],\n              [\n                152.07354,\n                -24.457887\n              ],\n              [\n                152.855197,\n                -25.267501\n              ],\n              [\n                153.136162,\n                -26.071173\n              ],\n              [\n                153.161949,\n                -26.641319\n              ],\n              [\n                153.092909,\n                -27.2603\n              ],\n              [\n                153.569469,\n                -28.110067\n              ],\n              [\n                153.512108,\n                -28.995077\n              ],\n              [\n                153.339095,\n                -29.458202\n              ],\n              [\n                153.069241,\n                -30.35024\n              ],\n              [\n                153.089602,\n                -30.923642\n              ],\n              [\n                152.891578,\n                -31.640446\n              ],\n              [\n                152.450002,\n                -32.550003\n              ],\n              [\n                151.709117,\n                -33.041342\n              ],\n              [\n                151.343972,\n                -33.816023\n              ],\n              [\n                151.010555,\n                -34.31036\n              ],\n              [\n                150.714139,\n                -35.17346\n              ],\n              [\n                150.32822,\n                -35.671879\n              ],\n              [\n                150.075212,\n                -36.420206\n              ],\n              [\n                149.946124,\n                -37.109052\n              ],\n              [\n                149.997284,\n                -37.425261\n              ],\n              [\n                149.423882,\n                -37.772681\n              ],\n              [\n                148.304622,\n                -37.809061\n              ],\n              [\n                147.381733,\n                -38.219217\n              ],\n              [\n                146.922123,\n                -38.606532\n              ],\n              [\n                146.317922,\n                -39.035757\n              ],\n              [\n                145.489652,\n                -38.593768\n              ],\n              [\n                144.876976,\n                -38.417448\n              ],\n              [\n                145.032212,\n                -37.896188\n              ],\n              [\n                144.485682,\n                -38.085324\n              ],\n              [\n                143.609974,\n                -38.809465\n              ],\n              [\n                142.745427,\n                -38.538268\n              ],\n              [\n                142.17833,\n                -38.380034\n              ],\n              [\n                141.606582,\n                -38.308514\n              ],\n              [\n                140.638579,\n                -38.019333\n              ],\n              [\n                139.992158,\n                -37.402936\n              ],\n              [\n                139.806588,\n                -36.643603\n              ],\n              [\n                139.574148,\n                -36.138362\n              ],\n              [\n                139.082808,\n                -35.732754\n              ],\n              [\n                138.120748,\n                -35.612296\n              ],\n              [\n                138.449462,\n                -35.127261\n              ],\n              [\n                138.207564,\n                -34.384723\n              ],\n              [\n                137.71917,\n                -35.076825\n              ],\n              [\n                136.829406,\n                -35.260535\n              ],\n              [\n                137.352371,\n                -34.707339\n              ],\n              [\n                137.503886,\n                -34.130268\n              ],\n              [\n                137.890116,\n                -33.640479\n              ],\n              [\n                137.810328,\n                -32.900007\n              ],\n              [\n                136.996837,\n                -33.752771\n              ],\n              [\n                136.372069,\n                -34.094766\n              ],\n              [\n                135.989043,\n                -34.890118\n              ],\n              [\n                135.208213,\n                -34.47867\n              ],\n              [\n                135.239218,\n                -33.947953\n              ],\n              [\n                134.613417,\n                -33.222778\n              ],\n              [\n                134.085904,\n                -32.848072\n              ],\n              [\n                134.273903,\n                -32.617234\n              ],\n              [\n                132.990777,\n                -32.011224\n              ],\n              [\n                132.288081,\n                -31.982647\n              ],\n              [\n                131.326331,\n                -31.495803\n              ],\n              [\n                129.535794,\n                -31.590423\n              ],\n              [\n                128.240938,\n                -31.948489\n              ],\n              [\n                127.102867,\n                -32.282267\n              ],\n              [\n                126.148714,\n                -32.215966\n              ],\n              [\n                125.088623,\n                -32.728751\n              ],\n              [\n                124.221648,\n                -32.959487\n              ],\n              [\n                124.028947,\n                -33.483847\n              ],\n              [\n                123.659667,\n                -33.890179\n              ],\n              [\n                122.811036,\n                -33.914467\n              ],\n              [\n                122.183064,\n                -34.003402\n              ],\n              [\n                121.299191,\n                -33.821036\n              ],\n              [\n                120.580268,\n                -33.930177\n              ],\n              [\n                119.893695,\n                -33.976065\n              ],\n              [\n                119.298899,\n                -34.509366\n              ],\n              [\n                119.007341,\n                -34.464149\n              ],\n              [\n                118.505718,\n                -34.746819\n              ],\n              [\n                118.024972,\n                -35.064733\n              ],\n              [\n                117.295507,\n                -35.025459\n              ],\n              [\n                116.625109,\n                -35.025097\n              ],\n              [\n                115.564347,\n                -34.386428\n              ],\n              [\n                115.026809,\n                -34.196517\n              ],\n              [\n                115.048616,\n                -33.623425\n              ],\n              [\n                115.545123,\n                -33.487258\n              ],\n              [\n                115.714674,\n                -33.259572\n              ],\n              [\n                115.679379,\n                -32.900369\n              ],\n              [\n                115.801645,\n                -32.205062\n              ],\n              [\n                115.689611,\n                -31.612437\n              ],\n              [\n                115.160909,\n                -30.601594\n              ],\n              [\n                114.997043,\n                -30.030725\n              ],\n              [\n                115.040038,\n                -29.461095\n              ],\n              [\n                114.641974,\n                -28.810231\n              ],\n              [\n                114.616498,\n                -28.516399\n              ],\n              [\n                114.173579,\n                -28.118077\n              ],\n              [\n                114.048884,\n                -27.334765\n              ],\n              [\n                113.477498,\n                -26.543134\n              ],\n              [\n                113.338953,\n                -26.116545\n              ],\n              [\n                113.778358,\n                -26.549025\n              ],\n              [\n                113.440962,\n                -25.621278\n              ],\n              [\n                113.936901,\n                -25.911235\n              ],\n              [\n                114.232852,\n                -26.298446\n              ],\n              [\n                114.216161,\n                -25.786281\n              ],\n              [\n                113.721255,\n                -24.998939\n              ],\n              [\n                113.625344,\n                -24.683971\n              ],\n              [\n                113.393523,\n                -24.384764\n              ],\n              [\n                113.502044,\n                -23.80635\n              ],\n              [\n                113.706993,\n                -23.560215\n              ],\n              [\n                113.843418,\n                -23.059987\n              ],\n              [\n                113.736552,\n                -22.475475\n              ],\n              [\n                114.149756,\n                -21.755881\n              ],\n              [\n                114.225307,\n                -22.517488\n              ],\n              [\n                114.647762,\n                -21.82952\n              ],\n              [\n                115.460167,\n                -21.495173\n              ],\n              [\n                115.947373,\n                -21.068688\n              ],\n              [\n                116.711615,\n                -20.701682\n              ],\n              [\n                117.166316,\n                -20.623599\n              ],\n              [\n                117.441545,\n                -20.746899\n              ],\n              [\n                118.229559,\n                -20.374208\n              ],\n              [\n                118.836085,\n                -20.263311\n              ],\n              [\n                118.987807,\n                -20.044203\n              ],\n              [\n                119.252494,\n                -19.952942\n              ],\n              [\n                119.805225,\n                -19.976506\n              ],\n              [\n                120.85622,\n                -19.683708\n              ],\n              [\n                121.399856,\n                -19.239756\n              ],\n              [\n                121.655138,\n                -18.705318\n              ],\n              [\n                122.241665,\n                -18.197649\n              ],\n              [\n                122.286624,\n                -17.798603\n              ],\n              [\n                122.312772,\n                -17.254967\n              ],\n              [\n                123.012574,\n                -16.4052\n              ],\n              [\n                123.433789,\n                -17.268558\n              ],\n              [\n                123.859345,\n                -17.069035\n              ],\n              [\n                123.503242,\n                -16.596506\n              ],\n              [\n                123.817073,\n                -16.111316\n              ],\n              [\n                124.258287,\n                -16.327944\n              ],\n              [\n                124.379726,\n                -15.56706\n              ],\n              [\n                124.926153,\n                -15.0751\n              ],\n              [\n                125.167275,\n                -14.680396\n              ],\n              [\n                125.670087,\n                -14.51007\n              ],\n              [\n                125.685796,\n                -14.230656\n              ],\n              [\n                126.125149,\n                -14.347341\n              ],\n              [\n                126.142823,\n                -14.095987\n              ],\n              [\n                126.582589,\n                -13.952791\n              ],\n              [\n                127.065867,\n                -13.817968\n              ],\n              [\n                127.804633,\n                -14.276906\n              ],\n              [\n                128.35969,\n                -14.86917\n              ],\n              [\n                128.985543,\n                -14.875991\n              ],\n              [\n                129.621473,\n                -14.969784\n              ],\n              [\n                129.4096,\n                -14.42067\n              ],\n              [\n                129.888641,\n                -13.618703\n              ],\n              [\n                130.339466,\n                -13.357376\n              ],\n              [\n                130.183506,\n                -13.10752\n              ],\n              [\n                130.617795,\n                -12.536392\n              ],\n              [\n                131.223495,\n                -12.183649\n              ],\n              [\n                131.735091,\n                -12.302453\n              ],\n              [\n                132.575298,\n                -12.114041\n              ],\n              [\n                132.557212,\n                -11.603012\n              ],\n              [\n                131.824698,\n                -11.273782\n              ],\n              [\n                132.357224,\n                -11.128519\n              ],\n              [\n                133.019561,\n                -11.376411\n              ],\n              [\n                133.550846,\n                -11.786515\n              ],\n              [\n                134.393068,\n                -12.042365\n              ],\n              [\n                134.678632,\n                -11.941183\n              ],\n              [\n                135.298491,\n                -12.248606\n              ],\n              [\n                135.882693,\n                -11.962267\n              ],\n              [\n                136.258381,\n                -12.049342\n              ],\n              [\n                136.492475,\n                -11.857209\n              ],\n              [\n                136.95162,\n                -12.351959\n              ],\n              [\n                136.685125,\n                -12.887223\n              ],\n              [\n                136.305407,\n                -13.29123\n              ],\n              [\n                135.961758,\n                -13.324509\n              ],\n              [\n                136.077617,\n                -13.724278\n              ],\n              [\n                135.783836,\n                -14.223989\n              ],\n              [\n                135.428664,\n                -14.715432\n              ],\n              [\n                135.500184,\n                -14.997741\n              ],\n              [\n                136.295175,\n                -15.550265\n              ],\n              [\n                137.06536,\n                -15.870762\n              ],\n              [\n                137.580471,\n                -16.215082\n              ],\n              [\n                138.303217,\n                -16.807604\n              ],\n              [\n                138.585164,\n                -16.806622\n              ],\n              [\n                139.108543,\n                -17.062679\n              ],\n              [\n                139.260575,\n                -17.371601\n              ],\n              [\n                140.215245,\n                -17.710805\n              ],\n              [\n                140.875463,\n                -17.369069\n              ],\n              [\n                141.07111,\n                -16.832047\n              ],\n              [\n                141.274095,\n                -16.38887\n              ],\n              [\n                141.398222,\n                -15.840532\n              ],\n              [\n                141.702183,\n                -15.044921\n              ],\n              [\n                141.56338,\n                -14.561333\n              ],\n              [\n                141.63552,\n                -14.270395\n              ],\n              [\n                141.519869,\n                -13.698078\n              ],\n              [\n                141.65092,\n                -12.944688\n              ],\n              [\n                141.842691,\n                -12.741548\n              ],\n              [\n                141.68699,\n                -12.407614\n              ],\n              [\n                141.928629,\n                -11.877466\n              ],\n              [\n                142.118488,\n                -11.328042\n              ],\n              [\n                142.143706,\n                -11.042737\n              ],\n              [\n                142.51526,\n                -10.668186\n              ],\n              [\n                142.79731,\n                -11.157355\n              ],\n              [\n                142.866763,\n                -11.784707\n              ],\n              [\n                143.115947,\n                -11.90563\n              ],\n              [\n                143.158632,\n                -12.325656\n              ],\n              [\n                143.522124,\n                -12.834358\n              ],\n              [\n                143.597158,\n                -13.400422\n              ],\n              [\n                143.561811,\n                -13.763656\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/AUT.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"AUT\",\"properties\":{\"name\":\"Austria\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[16.979667,48.123497],[16.903754,47.714866],[16.340584,47.712902],[16.534268,47.496171],[16.202298,46.852386],[16.011664,46.683611],[15.137092,46.658703],[14.632472,46.431817],[13.806475,46.509306],[12.376485,46.767559],[12.153088,47.115393],[11.164828,46.941579],[11.048556,46.751359],[10.442701,46.893546],[9.932448,46.920728],[9.47997,47.10281],[9.632932,47.347601],[9.594226,47.525058],[9.896068,47.580197],[10.402084,47.302488],[10.544504,47.566399],[11.426414,47.523766],[12.141357,47.703083],[12.62076,47.672388],[12.932627,47.467646],[13.025851,47.637584],[12.884103,48.289146],[13.243357,48.416115],[13.595946,48.877172],[14.338898,48.555305],[14.901447,48.964402],[15.253416,49.039074],[16.029647,48.733899],[16.499283,48.785808],[16.960288,48.596982],[16.879983,48.470013],[16.979667,48.123497]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/AUT_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              11.25,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              16.875,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              45.08903556\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              5.625,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.979667,\n              48.123497\n            ],\n            [\n              16.903754,\n              47.714866\n            ],\n            [\n              16.340584,\n              47.712902\n            ],\n            [\n              16.534268,\n              47.496171\n            ],\n            [\n              16.202298,\n              46.852386\n            ],\n            [\n              16.011664,\n              46.683611\n            ],\n            [\n              15.137092,\n              46.658703\n            ],\n            [\n              14.632472,\n              46.431817\n            ],\n            [\n              13.806475,\n              46.509306\n            ],\n            [\n              12.376485,\n              46.767559\n            ],\n            [\n              12.153088,\n              47.115393\n            ],\n            [\n              11.164828,\n              46.941579\n            ],\n            [\n              11.048556,\n              46.751359\n            ],\n            [\n              10.442701,\n              46.893546\n            ],\n            [\n              9.932448,\n              46.920728\n            ],\n            [\n              9.47997,\n              47.10281\n            ],\n            [\n              9.632932,\n              47.347601\n            ],\n            [\n              9.594226,\n              47.525058\n            ],\n            [\n              9.896068,\n              47.580197\n            ],\n            [\n              10.402084,\n              47.302488\n            ],\n            [\n              10.544504,\n              47.566399\n            ],\n            [\n              11.426414,\n              47.523766\n            ],\n            [\n              12.141357,\n              47.703083\n            ],\n            [\n              12.62076,\n              47.672388\n            ],\n            [\n              12.932627,\n              47.467646\n            ],\n            [\n              13.025851,\n              47.637584\n            ],\n            [\n              12.884103,\n              48.289146\n            ],\n            [\n              13.243357,\n              48.416115\n            ],\n            [\n              13.595946,\n              48.877172\n            ],\n            [\n              14.338898,\n              48.555305\n            ],\n            [\n              14.901447,\n              48.964402\n            ],\n            [\n              15.253416,\n              49.039074\n            ],\n            [\n              16.029647,\n              48.733899\n            ],\n            [\n              16.499283,\n              48.785808\n            ],\n            [\n              16.960288,\n              48.596982\n            ],\n            [\n              16.879983,\n              48.470013\n            ],\n            [\n              16.979667,\n              48.123497\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/AZE.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"AZE\",\"properties\":{\"name\":\"Azerbaijan\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]]],[[[47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/AZE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              39.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              36.59788913\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              50.625,\n              36.59788913\n            ],\n            [\n              45,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                45.001987,\n                39.740004\n              ],\n              [\n                45.298145,\n                39.471751\n              ],\n              [\n                45.739978,\n                39.473999\n              ],\n              [\n                45.735379,\n                39.319719\n              ],\n              [\n                46.143623,\n                38.741201\n              ],\n              [\n                45.457722,\n                38.874139\n              ],\n              [\n                44.952688,\n                39.335765\n              ],\n              [\n                44.79399,\n                39.713003\n              ],\n              [\n                45.001987,\n                39.740004\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                47.373315,\n                41.219732\n              ],\n              [\n                47.815666,\n                41.151416\n              ],\n              [\n                47.987283,\n                41.405819\n              ],\n              [\n                48.584353,\n                41.80887\n              ],\n              [\n                49.110264,\n                41.282287\n              ],\n              [\n                49.618915,\n                40.572924\n              ],\n              [\n                50.08483,\n                40.526157\n              ],\n              [\n                50.392821,\n                40.256561\n              ],\n              [\n                49.569202,\n                40.176101\n              ],\n              [\n                49.395259,\n                39.399482\n              ],\n              [\n                49.223228,\n                39.049219\n              ],\n              [\n                48.856532,\n                38.815486\n              ],\n              [\n                48.883249,\n                38.320245\n              ],\n              [\n                48.634375,\n                38.270378\n              ],\n              [\n                48.010744,\n                38.794015\n              ],\n              [\n                48.355529,\n                39.288765\n              ],\n              [\n                48.060095,\n                39.582235\n              ],\n              [\n                47.685079,\n                39.508364\n              ],\n              [\n                46.50572,\n                38.770605\n              ],\n              [\n                46.483499,\n                39.464155\n              ],\n              [\n                46.034534,\n                39.628021\n              ],\n              [\n                45.610012,\n                39.899994\n              ],\n              [\n                45.891907,\n                40.218476\n              ],\n              [\n                45.359175,\n                40.561504\n              ],\n              [\n                45.560351,\n                40.81229\n              ],\n              [\n                45.179496,\n                40.985354\n              ],\n              [\n                44.97248,\n                41.248129\n              ],\n              [\n                45.217426,\n                41.411452\n              ],\n              [\n                45.962601,\n                41.123873\n              ],\n              [\n                46.501637,\n                41.064445\n              ],\n              [\n                46.637908,\n                41.181673\n              ],\n              [\n                46.145432,\n                41.722802\n              ],\n              [\n                46.404951,\n                41.860675\n              ],\n              [\n                46.686071,\n                41.827137\n              ],\n              [\n                47.373315,\n                41.219732\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BDI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BDI\",\"properties\":{\"name\":\"Burundi\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[29.339998,-4.499983],[29.276384,-3.293907],[29.024926,-2.839258],[29.632176,-2.917858],[29.938359,-2.348487],[30.469696,-2.413858],[30.527677,-2.807632],[30.743013,-3.034285],[30.752263,-3.35933],[30.50556,-3.568567],[30.116333,-4.090138],[29.753512,-4.452389],[29.339998,-4.499983]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BDI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              28.125,\n              0\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              28.125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              29.339998,\n              -4.499983\n            ],\n            [\n              29.276384,\n              -3.293907\n            ],\n            [\n              29.024926,\n              -2.839258\n            ],\n            [\n              29.632176,\n              -2.917858\n            ],\n            [\n              29.938359,\n              -2.348487\n            ],\n            [\n              30.469696,\n              -2.413858\n            ],\n            [\n              30.527677,\n              -2.807632\n            ],\n            [\n              30.743013,\n              -3.034285\n            ],\n            [\n              30.752263,\n              -3.35933\n            ],\n            [\n              30.50556,\n              -3.568567\n            ],\n            [\n              30.116333,\n              -4.090138\n            ],\n            [\n              29.753512,\n              -4.452389\n            ],\n            [\n              29.339998,\n              -4.499983\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BEL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BEL\",\"properties\":{\"name\":\"Belgium\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[3.314971,51.345781],[4.047071,51.267259],[4.973991,51.475024],[5.606976,51.037298],[6.156658,50.803721],[6.043073,50.128052],[5.782417,50.090328],[5.674052,49.529484],[4.799222,49.985373],[4.286023,49.907497],[3.588184,50.378992],[3.123252,50.780363],[2.658422,50.796848],[2.513573,51.148506],[3.314971,51.345781]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BEL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              48.92249926\n            ],\n            [\n              0,\n              52.48278022\n            ],\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              0,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              5.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              3.314971,\n              51.345781\n            ],\n            [\n              4.047071,\n              51.267259\n            ],\n            [\n              4.973991,\n              51.475024\n            ],\n            [\n              5.606976,\n              51.037298\n            ],\n            [\n              6.156658,\n              50.803721\n            ],\n            [\n              6.043073,\n              50.128052\n            ],\n            [\n              5.782417,\n              50.090328\n            ],\n            [\n              5.674052,\n              49.529484\n            ],\n            [\n              4.799222,\n              49.985373\n            ],\n            [\n              4.286023,\n              49.907497\n            ],\n            [\n              3.588184,\n              50.378992\n            ],\n            [\n              3.123252,\n              50.780363\n            ],\n            [\n              2.658422,\n              50.796848\n            ],\n            [\n              2.513573,\n              51.148506\n            ],\n            [\n              3.314971,\n              51.345781\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BEN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BEN\",\"properties\":{\"name\":\"Benin\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[2.691702,6.258817],[1.865241,6.142158],[1.618951,6.832038],[1.664478,9.12859],[1.463043,9.334624],[1.425061,9.825395],[1.077795,10.175607],[0.772336,10.470808],[0.899563,10.997339],[1.24347,11.110511],[1.447178,11.547719],[1.935986,11.64115],[2.154474,11.94015],[2.490164,12.233052],[2.848643,12.235636],[3.61118,11.660167],[3.572216,11.327939],[3.797112,10.734746],[3.60007,10.332186],[3.705438,10.06321],[3.220352,9.444153],[2.912308,9.137608],[2.723793,8.506845],[2.749063,7.870734],[2.691702,6.258817]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BEN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              16.63619188\n            ],\n            [\n              5.625,\n              16.63619188\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              5.61598582\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              0,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              2.691702,\n              6.258817\n            ],\n            [\n              1.865241,\n              6.142158\n            ],\n            [\n              1.618951,\n              6.832038\n            ],\n            [\n              1.664478,\n              9.12859\n            ],\n            [\n              1.463043,\n              9.334624\n            ],\n            [\n              1.425061,\n              9.825395\n            ],\n            [\n              1.077795,\n              10.175607\n            ],\n            [\n              0.772336,\n              10.470808\n            ],\n            [\n              0.899563,\n              10.997339\n            ],\n            [\n              1.24347,\n              11.110511\n            ],\n            [\n              1.447178,\n              11.547719\n            ],\n            [\n              1.935986,\n              11.64115\n            ],\n            [\n              2.154474,\n              11.94015\n            ],\n            [\n              2.490164,\n              12.233052\n            ],\n            [\n              2.848643,\n              12.235636\n            ],\n            [\n              3.61118,\n              11.660167\n            ],\n            [\n              3.572216,\n              11.327939\n            ],\n            [\n              3.797112,\n              10.734746\n            ],\n            [\n              3.60007,\n              10.332186\n            ],\n            [\n              3.705438,\n              10.06321\n            ],\n            [\n              3.220352,\n              9.444153\n            ],\n            [\n              2.912308,\n              9.137608\n            ],\n            [\n              2.723793,\n              8.506845\n            ],\n            [\n              2.749063,\n              7.870734\n            ],\n            [\n              2.691702,\n              6.258817\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BFA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BFA\",\"properties\":{\"name\":\"Burkina Faso\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-2.827496,9.642461],[-3.511899,9.900326],[-3.980449,9.862344],[-4.330247,9.610835],[-4.779884,9.821985],[-4.954653,10.152714],[-5.404342,10.370737],[-5.470565,10.95127],[-5.197843,11.375146],[-5.220942,11.713859],[-4.427166,12.542646],[-4.280405,13.228444],[-4.006391,13.472485],[-3.522803,13.337662],[-3.103707,13.541267],[-2.967694,13.79815],[-2.191825,14.246418],[-2.001035,14.559008],[-1.066363,14.973815],[-0.515854,15.116158],[-0.266257,14.924309],[0.374892,14.928908],[0.295646,14.444235],[0.429928,13.988733],[0.993046,13.33575],[1.024103,12.851826],[2.177108,12.625018],[2.154474,11.94015],[1.935986,11.64115],[1.447178,11.547719],[1.24347,11.110511],[0.899563,10.997339],[0.023803,11.018682],[-0.438702,11.098341],[-0.761576,10.93693],[-1.203358,11.009819],[-2.940409,10.96269],[-2.963896,10.395335],[-2.827496,9.642461]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BFA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              -5.625,\n              16.63619188\n            ],\n            [\n              0,\n              16.63619188\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              -5.625,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              5.61598582\n            ],\n            [\n              -5.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              16.63619188\n            ],\n            [\n              5.625,\n              16.63619188\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              5.61598582\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              0,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.827496,\n              9.642461\n            ],\n            [\n              -3.511899,\n              9.900326\n            ],\n            [\n              -3.980449,\n              9.862344\n            ],\n            [\n              -4.330247,\n              9.610835\n            ],\n            [\n              -4.779884,\n              9.821985\n            ],\n            [\n              -4.954653,\n              10.152714\n            ],\n            [\n              -5.404342,\n              10.370737\n            ],\n            [\n              -5.470565,\n              10.95127\n            ],\n            [\n              -5.197843,\n              11.375146\n            ],\n            [\n              -5.220942,\n              11.713859\n            ],\n            [\n              -4.427166,\n              12.542646\n            ],\n            [\n              -4.280405,\n              13.228444\n            ],\n            [\n              -4.006391,\n              13.472485\n            ],\n            [\n              -3.522803,\n              13.337662\n            ],\n            [\n              -3.103707,\n              13.541267\n            ],\n            [\n              -2.967694,\n              13.79815\n            ],\n            [\n              -2.191825,\n              14.246418\n            ],\n            [\n              -2.001035,\n              14.559008\n            ],\n            [\n              -1.066363,\n              14.973815\n            ],\n            [\n              -0.515854,\n              15.116158\n            ],\n            [\n              -0.266257,\n              14.924309\n            ],\n            [\n              0.374892,\n              14.928908\n            ],\n            [\n              0.295646,\n              14.444235\n            ],\n            [\n              0.429928,\n              13.988733\n            ],\n            [\n              0.993046,\n              13.33575\n            ],\n            [\n              1.024103,\n              12.851826\n            ],\n            [\n              2.177108,\n              12.625018\n            ],\n            [\n              2.154474,\n              11.94015\n            ],\n            [\n              1.935986,\n              11.64115\n            ],\n            [\n              1.447178,\n              11.547719\n            ],\n            [\n              1.24347,\n              11.110511\n            ],\n            [\n              0.899563,\n              10.997339\n            ],\n            [\n              0.023803,\n              11.018682\n            ],\n            [\n              -0.438702,\n              11.098341\n            ],\n            [\n              -0.761576,\n              10.93693\n            ],\n            [\n              -1.203358,\n              11.009819\n            ],\n            [\n              -2.940409,\n              10.96269\n            ],\n            [\n              -2.963896,\n              10.395335\n            ],\n            [\n              -2.827496,\n              9.642461\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BGD.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BGD\",\"properties\":{\"name\":\"Bangladesh\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[92.672721,22.041239],[92.652257,21.324048],[92.303234,21.475485],[92.368554,20.670883],[92.082886,21.192195],[92.025215,21.70157],[91.834891,22.182936],[91.417087,22.765019],[90.496006,22.805017],[90.586957,22.392794],[90.272971,21.836368],[89.847467,22.039146],[89.70205,21.857116],[89.418863,21.966179],[89.031961,22.055708],[88.876312,22.879146],[88.52977,23.631142],[88.69994,24.233715],[88.084422,24.501657],[88.306373,24.866079],[88.931554,25.238692],[88.209789,25.768066],[88.563049,26.446526],[89.355094,26.014407],[89.832481,25.965082],[89.920693,25.26975],[90.872211,25.132601],[91.799596,25.147432],[92.376202,24.976693],[91.915093,24.130414],[91.46773,24.072639],[91.158963,23.503527],[91.706475,22.985264],[91.869928,23.624346],[92.146035,23.627499],[92.672721,22.041239]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BGD_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              16.63619188\n            ],\n            [\n              84.375,\n              21.94304553\n            ],\n            [\n              90,\n              21.94304553\n            ],\n            [\n              90,\n              16.63619188\n            ],\n            [\n              84.375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              21.94304553\n            ],\n            [\n              84.375,\n              27.05912578\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              90,\n              21.94304553\n            ],\n            [\n              84.375,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              16.63619188\n            ],\n            [\n              90,\n              21.94304553\n            ],\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              95.625,\n              16.63619188\n            ],\n            [\n              90,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              21.94304553\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              90,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              92.672721,\n              22.041239\n            ],\n            [\n              92.652257,\n              21.324048\n            ],\n            [\n              92.303234,\n              21.475485\n            ],\n            [\n              92.368554,\n              20.670883\n            ],\n            [\n              92.082886,\n              21.192195\n            ],\n            [\n              92.025215,\n              21.70157\n            ],\n            [\n              91.834891,\n              22.182936\n            ],\n            [\n              91.417087,\n              22.765019\n            ],\n            [\n              90.496006,\n              22.805017\n            ],\n            [\n              90.586957,\n              22.392794\n            ],\n            [\n              90.272971,\n              21.836368\n            ],\n            [\n              89.847467,\n              22.039146\n            ],\n            [\n              89.70205,\n              21.857116\n            ],\n            [\n              89.418863,\n              21.966179\n            ],\n            [\n              89.031961,\n              22.055708\n            ],\n            [\n              88.876312,\n              22.879146\n            ],\n            [\n              88.52977,\n              23.631142\n            ],\n            [\n              88.69994,\n              24.233715\n            ],\n            [\n              88.084422,\n              24.501657\n            ],\n            [\n              88.306373,\n              24.866079\n            ],\n            [\n              88.931554,\n              25.238692\n            ],\n            [\n              88.209789,\n              25.768066\n            ],\n            [\n              88.563049,\n              26.446526\n            ],\n            [\n              89.355094,\n              26.014407\n            ],\n            [\n              89.832481,\n              25.965082\n            ],\n            [\n              89.920693,\n              25.26975\n            ],\n            [\n              90.872211,\n              25.132601\n            ],\n            [\n              91.799596,\n              25.147432\n            ],\n            [\n              92.376202,\n              24.976693\n            ],\n            [\n              91.915093,\n              24.130414\n            ],\n            [\n              91.46773,\n              24.072639\n            ],\n            [\n              91.158963,\n              23.503527\n            ],\n            [\n              91.706475,\n              22.985264\n            ],\n            [\n              91.869928,\n              23.624346\n            ],\n            [\n              92.146035,\n              23.627499\n            ],\n            [\n              92.672721,\n              22.041239\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BGR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BGR\",\"properties\":{\"name\":\"Bulgaria\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[22.65715,44.234923],[22.944832,43.823785],[23.332302,43.897011],[24.100679,43.741051],[25.569272,43.688445],[26.065159,43.943494],[27.2424,44.175986],[27.970107,43.812468],[28.558081,43.707462],[28.039095,43.293172],[27.673898,42.577892],[27.99672,42.007359],[27.135739,42.141485],[26.117042,41.826905],[26.106138,41.328899],[25.197201,41.234486],[24.492645,41.583896],[23.692074,41.309081],[22.952377,41.337994],[22.881374,41.999297],[22.380526,42.32026],[22.545012,42.461362],[22.436595,42.580321],[22.604801,42.898519],[22.986019,43.211161],[22.500157,43.642814],[22.410446,44.008063],[22.65715,44.234923]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BGR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              28.125,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.65715,\n              44.234923\n            ],\n            [\n              22.944832,\n              43.823785\n            ],\n            [\n              23.332302,\n              43.897011\n            ],\n            [\n              24.100679,\n              43.741051\n            ],\n            [\n              25.569272,\n              43.688445\n            ],\n            [\n              26.065159,\n              43.943494\n            ],\n            [\n              27.2424,\n              44.175986\n            ],\n            [\n              27.970107,\n              43.812468\n            ],\n            [\n              28.558081,\n              43.707462\n            ],\n            [\n              28.039095,\n              43.293172\n            ],\n            [\n              27.673898,\n              42.577892\n            ],\n            [\n              27.99672,\n              42.007359\n            ],\n            [\n              27.135739,\n              42.141485\n            ],\n            [\n              26.117042,\n              41.826905\n            ],\n            [\n              26.106138,\n              41.328899\n            ],\n            [\n              25.197201,\n              41.234486\n            ],\n            [\n              24.492645,\n              41.583896\n            ],\n            [\n              23.692074,\n              41.309081\n            ],\n            [\n              22.952377,\n              41.337994\n            ],\n            [\n              22.881374,\n              41.999297\n            ],\n            [\n              22.380526,\n              42.32026\n            ],\n            [\n              22.545012,\n              42.461362\n            ],\n            [\n              22.436595,\n              42.580321\n            ],\n            [\n              22.604801,\n              42.898519\n            ],\n            [\n              22.986019,\n              43.211161\n            ],\n            [\n              22.500157,\n              43.642814\n            ],\n            [\n              22.410446,\n              44.008063\n            ],\n            [\n              22.65715,\n              44.234923\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BHS.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BHS\",\"properties\":{\"name\":\"The Bahamas\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BHS_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -78.75,\n              27.05912578\n            ],\n            [\n              -73.125,\n              27.05912578\n            ],\n            [\n              -73.125,\n              21.94304553\n            ],\n            [\n              -78.75,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -84.375,\n              27.05912578\n            ],\n            [\n              -78.75,\n              27.05912578\n            ],\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -84.375,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                -77.53466,\n                23.75975\n              ],\n              [\n                -77.78,\n                23.71\n              ],\n              [\n                -78.03405,\n                24.28615\n              ],\n              [\n                -78.40848,\n                24.57564\n              ],\n              [\n                -78.19087,\n                25.2103\n              ],\n              [\n                -77.89,\n                25.17\n              ],\n              [\n                -77.54,\n                24.34\n              ],\n              [\n                -77.53466,\n                23.75975\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -77.82,\n                26.58\n              ],\n              [\n                -78.91,\n                26.42\n              ],\n              [\n                -78.98,\n                26.79\n              ],\n              [\n                -78.51,\n                26.87\n              ],\n              [\n                -77.85,\n                26.84\n              ],\n              [\n                -77.82,\n                26.58\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -77,\n                26.59\n              ],\n              [\n                -77.17255,\n                25.87918\n              ],\n              [\n                -77.35641,\n                26.00735\n              ],\n              [\n                -77.34,\n                26.53\n              ],\n              [\n                -77.78802,\n                26.92516\n              ],\n              [\n                -77.79,\n                27.04\n              ],\n              [\n                -77,\n                26.59\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BIH.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BIH\",\"properties\":{\"name\":\"Bosnia and Herzegovina\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[19.005486,44.860234],[19.36803,44.863],[19.11761,44.42307],[19.59976,44.03847],[19.454,43.5681],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674922,43.028563],[17.297373,43.446341],[16.916156,43.667722],[16.456443,44.04124],[16.23966,44.351143],[15.750026,44.818712],[15.959367,45.233777],[16.318157,45.004127],[16.534939,45.211608],[17.002146,45.233777],[17.861783,45.06774],[18.553214,45.08159],[19.005486,44.860234]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BIH_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              11.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.005486,\n              44.860234\n            ],\n            [\n              19.36803,\n              44.863\n            ],\n            [\n              19.11761,\n              44.42307\n            ],\n            [\n              19.59976,\n              44.03847\n            ],\n            [\n              19.454,\n              43.5681\n            ],\n            [\n              19.21852,\n              43.52384\n            ],\n            [\n              19.03165,\n              43.43253\n            ],\n            [\n              18.70648,\n              43.20011\n            ],\n            [\n              18.56,\n              42.65\n            ],\n            [\n              17.674922,\n              43.028563\n            ],\n            [\n              17.297373,\n              43.446341\n            ],\n            [\n              16.916156,\n              43.667722\n            ],\n            [\n              16.456443,\n              44.04124\n            ],\n            [\n              16.23966,\n              44.351143\n            ],\n            [\n              15.750026,\n              44.818712\n            ],\n            [\n              15.959367,\n              45.233777\n            ],\n            [\n              16.318157,\n              45.004127\n            ],\n            [\n              16.534939,\n              45.211608\n            ],\n            [\n              17.002146,\n              45.233777\n            ],\n            [\n              17.861783,\n              45.06774\n            ],\n            [\n              18.553214,\n              45.08159\n            ],\n            [\n              19.005486,\n              44.860234\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BLR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BLR\",\"properties\":{\"name\":\"Belarus\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[23.484128,53.912498],[24.450684,53.905702],[25.536354,54.282423],[25.768433,54.846963],[26.588279,55.167176],[26.494331,55.615107],[27.10246,55.783314],[28.176709,56.16913],[29.229513,55.918344],[29.371572,55.670091],[29.896294,55.789463],[30.873909,55.550976],[30.971836,55.081548],[30.757534,54.811771],[31.384472,54.157056],[31.791424,53.974639],[31.731273,53.794029],[32.405599,53.618045],[32.693643,53.351421],[32.304519,53.132726],[31.497644,53.167427],[31.305201,53.073996],[31.540018,52.742052],[31.785998,52.101678],[30.927549,52.042353],[30.619454,51.822806],[30.555117,51.319503],[30.157364,51.416138],[29.254938,51.368234],[28.992835,51.602044],[28.617613,51.427714],[28.241615,51.572227],[27.454066,51.592303],[26.337959,51.832289],[25.327788,51.910656],[24.553106,51.888461],[24.005078,51.617444],[23.527071,51.578454],[23.508002,52.023647],[23.199494,52.486977],[23.799199,52.691099],[23.804935,53.089731],[23.527536,53.470122],[23.484128,53.912498]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BLR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              22.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              33.75,\n              58.81374172\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              28.125,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              23.484128,\n              53.912498\n            ],\n            [\n              24.450684,\n              53.905702\n            ],\n            [\n              25.536354,\n              54.282423\n            ],\n            [\n              25.768433,\n              54.846963\n            ],\n            [\n              26.588279,\n              55.167176\n            ],\n            [\n              26.494331,\n              55.615107\n            ],\n            [\n              27.10246,\n              55.783314\n            ],\n            [\n              28.176709,\n              56.16913\n            ],\n            [\n              29.229513,\n              55.918344\n            ],\n            [\n              29.371572,\n              55.670091\n            ],\n            [\n              29.896294,\n              55.789463\n            ],\n            [\n              30.873909,\n              55.550976\n            ],\n            [\n              30.971836,\n              55.081548\n            ],\n            [\n              30.757534,\n              54.811771\n            ],\n            [\n              31.384472,\n              54.157056\n            ],\n            [\n              31.791424,\n              53.974639\n            ],\n            [\n              31.731273,\n              53.794029\n            ],\n            [\n              32.405599,\n              53.618045\n            ],\n            [\n              32.693643,\n              53.351421\n            ],\n            [\n              32.304519,\n              53.132726\n            ],\n            [\n              31.497644,\n              53.167427\n            ],\n            [\n              31.305201,\n              53.073996\n            ],\n            [\n              31.540018,\n              52.742052\n            ],\n            [\n              31.785998,\n              52.101678\n            ],\n            [\n              30.927549,\n              52.042353\n            ],\n            [\n              30.619454,\n              51.822806\n            ],\n            [\n              30.555117,\n              51.319503\n            ],\n            [\n              30.157364,\n              51.416138\n            ],\n            [\n              29.254938,\n              51.368234\n            ],\n            [\n              28.992835,\n              51.602044\n            ],\n            [\n              28.617613,\n              51.427714\n            ],\n            [\n              28.241615,\n              51.572227\n            ],\n            [\n              27.454066,\n              51.592303\n            ],\n            [\n              26.337959,\n              51.832289\n            ],\n            [\n              25.327788,\n              51.910656\n            ],\n            [\n              24.553106,\n              51.888461\n            ],\n            [\n              24.005078,\n              51.617444\n            ],\n            [\n              23.527071,\n              51.578454\n            ],\n            [\n              23.508002,\n              52.023647\n            ],\n            [\n              23.199494,\n              52.486977\n            ],\n            [\n              23.799199,\n              52.691099\n            ],\n            [\n              23.804935,\n              53.089731\n            ],\n            [\n              23.527536,\n              53.470122\n            ],\n            [\n              23.484128,\n              53.912498\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BLZ.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BLZ\",\"properties\":{\"name\":\"Belize\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-89.14308,17.808319],[-89.150909,17.955468],[-89.029857,18.001511],[-88.848344,17.883198],[-88.490123,18.486831],[-88.300031,18.499982],[-88.296336,18.353273],[-88.106813,18.348674],[-88.123479,18.076675],[-88.285355,17.644143],[-88.197867,17.489475],[-88.302641,17.131694],[-88.239518,17.036066],[-88.355428,16.530774],[-88.551825,16.265467],[-88.732434,16.233635],[-88.930613,15.887273],[-89.229122,15.886938],[-89.150806,17.015577],[-89.14308,17.808319]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BLZ_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -90,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -90,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -89.14308,\n              17.808319\n            ],\n            [\n              -89.150909,\n              17.955468\n            ],\n            [\n              -89.029857,\n              18.001511\n            ],\n            [\n              -88.848344,\n              17.883198\n            ],\n            [\n              -88.490123,\n              18.486831\n            ],\n            [\n              -88.300031,\n              18.499982\n            ],\n            [\n              -88.296336,\n              18.353273\n            ],\n            [\n              -88.106813,\n              18.348674\n            ],\n            [\n              -88.123479,\n              18.076675\n            ],\n            [\n              -88.285355,\n              17.644143\n            ],\n            [\n              -88.197867,\n              17.489475\n            ],\n            [\n              -88.302641,\n              17.131694\n            ],\n            [\n              -88.239518,\n              17.036066\n            ],\n            [\n              -88.355428,\n              16.530774\n            ],\n            [\n              -88.551825,\n              16.265467\n            ],\n            [\n              -88.732434,\n              16.233635\n            ],\n            [\n              -88.930613,\n              15.887273\n            ],\n            [\n              -89.229122,\n              15.886938\n            ],\n            [\n              -89.150806,\n              17.015577\n            ],\n            [\n              -89.14308,\n              17.808319\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BMU.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BMU\",\"properties\":{\"name\":\"Bermuda\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.7799734332998,32.3072000581802],[-64.7873319183061,32.3039237143428],[-64.7946942710173,32.3032682700388],[-64.8094297981283,32.3098175728414],[-64.8167896352437,32.3058845718466],[-64.8101968029642,32.3022833180511],[-64.7962291465484,32.2934409732427],[-64.7815086336978,32.2868973114514],[-64.7997025513437,32.2796896417328],[-64.8066707691087,32.2747767569465],[-64.8225587873683,32.2669111289395],[-64.8287548840306,32.2669075473817],[-64.8306732143498,32.2583944840235],[-64.8399924854972,32.254782282336],[-64.8566090462354,32.2547740387514],[-64.8682296789446,32.2616393614322],[-64.8628241459563,32.2724481933959],[-64.8748651338951,32.2757120264753],[-64.8717752856644,32.2819371582026],[-64.8671422127295,32.2930760547989],[-64.8559068764437,32.2960321186471],[-64.8597429072279,32.3015842021933],[-64.8439233486717,32.3140553852543],[-64.8350242329311,32.3242161760006],[-64.8338690593672,32.3294587561557],[-64.8520298651164,32.3110911879954],[-64.8635922932573,32.3048469433363],[-64.8686668994079,32.30910745083],[-64.8721354593415,32.3041908606301],[-64.8779667328485,32.3038632800462],[-64.8780046844321,32.2907757831692],[-64.8849776658292,32.2819261366004],[-64.8783230004629,32.2613001418681],[-64.863194968877,32.2465799485801],[-64.8519819555722,32.2485519134663],[-64.842311980074,32.2492123317296],[-64.8388242605209,32.2475773472534],[-64.8334002575532,32.2462714714698],[-64.8256389530584,32.2472637398594],[-64.8205697556026,32.2531698880328],[-64.8105087275579,32.2561208974156],[-64.7900177727338,32.2659446936992],[-64.7745415970416,32.2718413023427],[-64.7644742436426,32.2855931353214],[-64.7551803442276,32.2908326702531],[-64.7423982971436,32.2996734994024],[-64.7206991797682,32.3137542201258],[-64.7117851247134,32.3176823360806],[-64.6962778813133,32.3275029115532],[-64.6768921127452,32.3324095397555],[-64.6567136927777,32.3451776458469],[-64.6532168823499,32.3494356627941],[-64.6605720384429,32.3589423487763],[-64.65125819471,32.3615600906466],[-64.6462011670816,32.36975169749],[-64.6613227512832,32.3763135008721],[-64.6690666074397,32.388444543924],[-64.6834270548595,32.3854968316788],[-64.6954617672714,32.3763221285869],[-64.70438689565,32.3704254760469],[-64.7117569982798,32.368132600249],[-64.7061764744404,32.3600110593559],[-64.700531552697,32.3590601356818],[-64.6940348033967,32.3640708659835],[-64.6895164826082,32.3633598579866],[-64.6864150099255,32.3547797587266],[-64.6824635995504,32.3540628176846],[-64.6835876652835,32.3626447677968],[-64.6801998697415,32.3631199096979],[-64.6672170444687,32.3597751617473],[-64.6598811264978,32.3497625771755],[-64.6737331235384,32.3390281851635],[-64.6887090648183,32.3342439408053],[-64.706732854446,32.3429010723036],[-64.7149301576112,32.3552188753513],[-64.7185967666669,32.3552239212394],[-64.7214189847314,32.3518830231342],[-64.7270616067222,32.3466461715475],[-64.734962460882,32.3442819830499],[-64.7383521549094,32.3407216514918],[-64.7411729976333,32.3311790864627],[-64.7423019216485,32.323311561213],[-64.7462482354281,32.318538611581],[-64.7566773739613,32.3130509130175],[-64.768738200563,32.3088369816572],[-64.7799734332998,32.3072000581802]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BMU_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              31.95216224\n            ],\n            [\n              -67.5,\n              36.59788913\n            ],\n            [\n              -61.875,\n              36.59788913\n            ],\n            [\n              -61.875,\n              31.95216224\n            ],\n            [\n              -67.5,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -64.77997343,\n              32.30720006\n            ],\n            [\n              -64.78733192,\n              32.30392371\n            ],\n            [\n              -64.79469427,\n              32.30326827\n            ],\n            [\n              -64.8094298,\n              32.30981757\n            ],\n            [\n              -64.81678964,\n              32.30588457\n            ],\n            [\n              -64.8101968,\n              32.30228332\n            ],\n            [\n              -64.79622915,\n              32.29344097\n            ],\n            [\n              -64.78150863,\n              32.28689731\n            ],\n            [\n              -64.79970255,\n              32.27968964\n            ],\n            [\n              -64.80667077,\n              32.27477676\n            ],\n            [\n              -64.82255879,\n              32.26691113\n            ],\n            [\n              -64.82875488,\n              32.26690755\n            ],\n            [\n              -64.83067321,\n              32.25839448\n            ],\n            [\n              -64.83999249,\n              32.25478228\n            ],\n            [\n              -64.85660905,\n              32.25477404\n            ],\n            [\n              -64.86822968,\n              32.26163936\n            ],\n            [\n              -64.86282415,\n              32.27244819\n            ],\n            [\n              -64.87486513,\n              32.27571203\n            ],\n            [\n              -64.87177529,\n              32.28193716\n            ],\n            [\n              -64.86714221,\n              32.29307605\n            ],\n            [\n              -64.85590688,\n              32.29603212\n            ],\n            [\n              -64.85974291,\n              32.3015842\n            ],\n            [\n              -64.84392335,\n              32.31405539\n            ],\n            [\n              -64.83502423,\n              32.32421618\n            ],\n            [\n              -64.83386906,\n              32.32945876\n            ],\n            [\n              -64.85202987,\n              32.31109119\n            ],\n            [\n              -64.86359229,\n              32.30484694\n            ],\n            [\n              -64.8686669,\n              32.30910745\n            ],\n            [\n              -64.87213546,\n              32.30419086\n            ],\n            [\n              -64.87796673,\n              32.30386328\n            ],\n            [\n              -64.87800468,\n              32.29077578\n            ],\n            [\n              -64.88497767,\n              32.28192614\n            ],\n            [\n              -64.878323,\n              32.26130014\n            ],\n            [\n              -64.86319497,\n              32.24657995\n            ],\n            [\n              -64.85198196,\n              32.24855191\n            ],\n            [\n              -64.84231198,\n              32.24921233\n            ],\n            [\n              -64.83882426,\n              32.24757735\n            ],\n            [\n              -64.83340026,\n              32.24627147\n            ],\n            [\n              -64.82563895,\n              32.24726374\n            ],\n            [\n              -64.82056976,\n              32.25316989\n            ],\n            [\n              -64.81050873,\n              32.2561209\n            ],\n            [\n              -64.79001777,\n              32.26594469\n            ],\n            [\n              -64.7745416,\n              32.2718413\n            ],\n            [\n              -64.76447424,\n              32.28559314\n            ],\n            [\n              -64.75518034,\n              32.29083267\n            ],\n            [\n              -64.7423983,\n              32.2996735\n            ],\n            [\n              -64.72069918,\n              32.31375422\n            ],\n            [\n              -64.71178512,\n              32.31768234\n            ],\n            [\n              -64.69627788,\n              32.32750291\n            ],\n            [\n              -64.67689211,\n              32.33240954\n            ],\n            [\n              -64.65671369,\n              32.34517765\n            ],\n            [\n              -64.65321688,\n              32.34943566\n            ],\n            [\n              -64.66057204,\n              32.35894235\n            ],\n            [\n              -64.65125819,\n              32.36156009\n            ],\n            [\n              -64.64620117,\n              32.3697517\n            ],\n            [\n              -64.66132275,\n              32.3763135\n            ],\n            [\n              -64.66906661,\n              32.38844454\n            ],\n            [\n              -64.68342705,\n              32.38549683\n            ],\n            [\n              -64.69546177,\n              32.37632213\n            ],\n            [\n              -64.7043869,\n              32.37042548\n            ],\n            [\n              -64.711757,\n              32.3681326\n            ],\n            [\n              -64.70617647,\n              32.36001106\n            ],\n            [\n              -64.70053155,\n              32.35906014\n            ],\n            [\n              -64.6940348,\n              32.36407087\n            ],\n            [\n              -64.68951648,\n              32.36335986\n            ],\n            [\n              -64.68641501,\n              32.35477976\n            ],\n            [\n              -64.6824636,\n              32.35406282\n            ],\n            [\n              -64.68358767,\n              32.36264477\n            ],\n            [\n              -64.68019987,\n              32.36311991\n            ],\n            [\n              -64.66721704,\n              32.35977516\n            ],\n            [\n              -64.65988113,\n              32.34976258\n            ],\n            [\n              -64.67373312,\n              32.33902819\n            ],\n            [\n              -64.68870906,\n              32.33424394\n            ],\n            [\n              -64.70673285,\n              32.34290107\n            ],\n            [\n              -64.71493016,\n              32.35521888\n            ],\n            [\n              -64.71859677,\n              32.35522392\n            ],\n            [\n              -64.72141898,\n              32.35188302\n            ],\n            [\n              -64.72706161,\n              32.34664617\n            ],\n            [\n              -64.73496246,\n              32.34428198\n            ],\n            [\n              -64.73835215,\n              32.34072165\n            ],\n            [\n              -64.741173,\n              32.33117909\n            ],\n            [\n              -64.74230192,\n              32.32331156\n            ],\n            [\n              -64.74624824,\n              32.31853861\n            ],\n            [\n              -64.75667737,\n              32.31305091\n            ],\n            [\n              -64.7687382,\n              32.30883698\n            ],\n            [\n              -64.77997343,\n              32.30720006\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BOL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BOL\",\"properties\":{\"name\":\"Bolivia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-62.846468,-22.034985],[-63.986838,-21.993644],[-64.377021,-22.798091],[-64.964892,-22.075862],[-66.273339,-21.83231],[-67.106674,-22.735925],[-67.82818,-22.872919],[-68.219913,-21.494347],[-68.757167,-20.372658],[-68.442225,-19.405068],[-68.966818,-18.981683],[-69.100247,-18.260125],[-69.590424,-17.580012],[-68.959635,-16.500698],[-69.389764,-15.660129],[-69.160347,-15.323974],[-69.339535,-14.953195],[-68.948887,-14.453639],[-68.929224,-13.602684],[-68.88008,-12.899729],[-68.66508,-12.5613],[-69.529678,-10.951734],[-68.786158,-11.03638],[-68.271254,-11.014521],[-68.048192,-10.712059],[-67.173801,-10.306812],[-66.646908,-9.931331],[-65.338435,-9.761988],[-65.444837,-10.511451],[-65.321899,-10.895872],[-65.402281,-11.56627],[-64.316353,-12.461978],[-63.196499,-12.627033],[-62.80306,-13.000653],[-62.127081,-13.198781],[-61.713204,-13.489202],[-61.084121,-13.479384],[-60.503304,-13.775955],[-60.459198,-14.354007],[-60.264326,-14.645979],[-60.251149,-15.077219],[-60.542966,-15.09391],[-60.15839,-16.258284],[-58.24122,-16.299573],[-58.388058,-16.877109],[-58.280804,-17.27171],[-57.734558,-17.552468],[-57.498371,-18.174188],[-57.676009,-18.96184],[-57.949997,-19.400004],[-57.853802,-19.969995],[-58.166392,-20.176701],[-58.183471,-19.868399],[-59.115042,-19.356906],[-60.043565,-19.342747],[-61.786326,-19.633737],[-62.265961,-20.513735],[-62.291179,-21.051635],[-62.685057,-22.249029],[-62.846468,-22.034985]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BOL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -67.5,\n              -5.61598582\n            ],\n            [\n              -61.875,\n              -5.61598582\n            ],\n            [\n              -61.875,\n              -11.17840187\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -56.25,\n              -11.17840187\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -11.17840187\n            ],\n            [\n              -73.125,\n              -5.61598582\n            ],\n            [\n              -67.5,\n              -5.61598582\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -73.125,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -16.63619188\n            ],\n            [\n              -73.125,\n              -11.17840187\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -67.5,\n              -16.63619188\n            ],\n            [\n              -73.125,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -21.94304553\n            ],\n            [\n              -73.125,\n              -16.63619188\n            ],\n            [\n              -67.5,\n              -16.63619188\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -73.125,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -27.05912578\n            ],\n            [\n              -73.125,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -27.05912578\n            ],\n            [\n              -73.125,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -62.846468,\n              -22.034985\n            ],\n            [\n              -63.986838,\n              -21.993644\n            ],\n            [\n              -64.377021,\n              -22.798091\n            ],\n            [\n              -64.964892,\n              -22.075862\n            ],\n            [\n              -66.273339,\n              -21.83231\n            ],\n            [\n              -67.106674,\n              -22.735925\n            ],\n            [\n              -67.82818,\n              -22.872919\n            ],\n            [\n              -68.219913,\n              -21.494347\n            ],\n            [\n              -68.757167,\n              -20.372658\n            ],\n            [\n              -68.442225,\n              -19.405068\n            ],\n            [\n              -68.966818,\n              -18.981683\n            ],\n            [\n              -69.100247,\n              -18.260125\n            ],\n            [\n              -69.590424,\n              -17.580012\n            ],\n            [\n              -68.959635,\n              -16.500698\n            ],\n            [\n              -69.389764,\n              -15.660129\n            ],\n            [\n              -69.160347,\n              -15.323974\n            ],\n            [\n              -69.339535,\n              -14.953195\n            ],\n            [\n              -68.948887,\n              -14.453639\n            ],\n            [\n              -68.929224,\n              -13.602684\n            ],\n            [\n              -68.88008,\n              -12.899729\n            ],\n            [\n              -68.66508,\n              -12.5613\n            ],\n            [\n              -69.529678,\n              -10.951734\n            ],\n            [\n              -68.786158,\n              -11.03638\n            ],\n            [\n              -68.271254,\n              -11.014521\n            ],\n            [\n              -68.048192,\n              -10.712059\n            ],\n            [\n              -67.173801,\n              -10.306812\n            ],\n            [\n              -66.646908,\n              -9.931331\n            ],\n            [\n              -65.338435,\n              -9.761988\n            ],\n            [\n              -65.444837,\n              -10.511451\n            ],\n            [\n              -65.321899,\n              -10.895872\n            ],\n            [\n              -65.402281,\n              -11.56627\n            ],\n            [\n              -64.316353,\n              -12.461978\n            ],\n            [\n              -63.196499,\n              -12.627033\n            ],\n            [\n              -62.80306,\n              -13.000653\n            ],\n            [\n              -62.127081,\n              -13.198781\n            ],\n            [\n              -61.713204,\n              -13.489202\n            ],\n            [\n              -61.084121,\n              -13.479384\n            ],\n            [\n              -60.503304,\n              -13.775955\n            ],\n            [\n              -60.459198,\n              -14.354007\n            ],\n            [\n              -60.264326,\n              -14.645979\n            ],\n            [\n              -60.251149,\n              -15.077219\n            ],\n            [\n              -60.542966,\n              -15.09391\n            ],\n            [\n              -60.15839,\n              -16.258284\n            ],\n            [\n              -58.24122,\n              -16.299573\n            ],\n            [\n              -58.388058,\n              -16.877109\n            ],\n            [\n              -58.280804,\n              -17.27171\n            ],\n            [\n              -57.734558,\n              -17.552468\n            ],\n            [\n              -57.498371,\n              -18.174188\n            ],\n            [\n              -57.676009,\n              -18.96184\n            ],\n            [\n              -57.949997,\n              -19.400004\n            ],\n            [\n              -57.853802,\n              -19.969995\n            ],\n            [\n              -58.166392,\n              -20.176701\n            ],\n            [\n              -58.183471,\n              -19.868399\n            ],\n            [\n              -59.115042,\n              -19.356906\n            ],\n            [\n              -60.043565,\n              -19.342747\n            ],\n            [\n              -61.786326,\n              -19.633737\n            ],\n            [\n              -62.265961,\n              -20.513735\n            ],\n            [\n              -62.291179,\n              -21.051635\n            ],\n            [\n              -62.685057,\n              -22.249029\n            ],\n            [\n              -62.846468,\n              -22.034985\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BRA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BRA\",\"properties\":{\"name\":\"Brazil\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-57.625133,-30.216295],[-56.2909,-28.852761],[-55.162286,-27.881915],[-54.490725,-27.474757],[-53.648735,-26.923473],[-53.628349,-26.124865],[-54.13005,-25.547639],[-54.625291,-25.739255],[-54.428946,-25.162185],[-54.293476,-24.5708],[-54.29296,-24.021014],[-54.652834,-23.839578],[-55.027902,-24.001274],[-55.400747,-23.956935],[-55.517639,-23.571998],[-55.610683,-22.655619],[-55.797958,-22.35693],[-56.473317,-22.0863],[-56.88151,-22.282154],[-57.937156,-22.090176],[-57.870674,-20.732688],[-58.166392,-20.176701],[-57.853802,-19.969995],[-57.949997,-19.400004],[-57.676009,-18.96184],[-57.498371,-18.174188],[-57.734558,-17.552468],[-58.280804,-17.27171],[-58.388058,-16.877109],[-58.24122,-16.299573],[-60.15839,-16.258284],[-60.542966,-15.09391],[-60.251149,-15.077219],[-60.264326,-14.645979],[-60.459198,-14.354007],[-60.503304,-13.775955],[-61.084121,-13.479384],[-61.713204,-13.489202],[-62.127081,-13.198781],[-62.80306,-13.000653],[-63.196499,-12.627033],[-64.316353,-12.461978],[-65.402281,-11.56627],[-65.321899,-10.895872],[-65.444837,-10.511451],[-65.338435,-9.761988],[-66.646908,-9.931331],[-67.173801,-10.306812],[-68.048192,-10.712059],[-68.271254,-11.014521],[-68.786158,-11.03638],[-69.529678,-10.951734],[-70.093752,-11.123972],[-70.548686,-11.009147],[-70.481894,-9.490118],[-71.302412,-10.079436],[-72.184891,-10.053598],[-72.563033,-9.520194],[-73.226713,-9.462213],[-73.015383,-9.032833],[-73.571059,-8.424447],[-73.987235,-7.52383],[-73.723401,-7.340999],[-73.724487,-6.918595],[-73.120027,-6.629931],[-73.219711,-6.089189],[-72.964507,-5.741251],[-72.891928,-5.274561],[-71.748406,-4.593983],[-70.928843,-4.401591],[-70.794769,-4.251265],[-69.893635,-4.298187],[-69.444102,-1.556287],[-69.420486,-1.122619],[-69.577065,-0.549992],[-70.020656,-0.185156],[-70.015566,0.541414],[-69.452396,0.706159],[-69.252434,0.602651],[-69.218638,0.985677],[-69.804597,1.089081],[-69.816973,1.714805],[-67.868565,1.692455],[-67.53781,2.037163],[-67.259998,1.719999],[-67.065048,1.130112],[-66.876326,1.253361],[-66.325765,0.724452],[-65.548267,0.789254],[-65.354713,1.095282],[-64.611012,1.328731],[-64.199306,1.492855],[-64.083085,1.916369],[-63.368788,2.2009],[-63.422867,2.411068],[-64.269999,2.497006],[-64.408828,3.126786],[-64.368494,3.79721],[-64.816064,4.056445],[-64.628659,4.148481],[-63.888343,4.02053],[-63.093198,3.770571],[-62.804533,4.006965],[-62.08543,4.162124],[-60.966893,4.536468],[-60.601179,4.918098],[-60.733574,5.200277],[-60.213683,5.244486],[-59.980959,5.014061],[-60.111002,4.574967],[-59.767406,4.423503],[-59.53804,3.958803],[-59.815413,3.606499],[-59.974525,2.755233],[-59.718546,2.24963],[-59.646044,1.786894],[-59.030862,1.317698],[-58.540013,1.268088],[-58.429477,1.463942],[-58.11345,1.507195],[-57.660971,1.682585],[-57.335823,1.948538],[-56.782704,1.863711],[-56.539386,1.899523],[-55.995698,1.817667],[-55.9056,2.021996],[-56.073342,2.220795],[-55.973322,2.510364],[-55.569755,2.421506],[-55.097587,2.523748],[-54.524754,2.311849],[-54.088063,2.105557],[-53.778521,2.376703],[-53.554839,2.334897],[-53.418465,2.053389],[-52.939657,2.124858],[-52.556425,2.504705],[-52.249338,3.241094],[-51.657797,4.156232],[-51.317146,4.203491],[-51.069771,3.650398],[-50.508875,1.901564],[-49.974076,1.736483],[-49.947101,1.04619],[-50.699251,0.222984],[-50.388211,-0.078445],[-48.620567,-0.235489],[-48.584497,-1.237805],[-47.824956,-0.581618],[-46.566584,-0.941028],[-44.905703,-1.55174],[-44.417619,-2.13775],[-44.581589,-2.691308],[-43.418791,-2.38311],[-41.472657,-2.912018],[-39.978665,-2.873054],[-38.500383,-3.700652],[-37.223252,-4.820946],[-36.452937,-5.109404],[-35.597796,-5.149504],[-35.235389,-5.464937],[-34.89603,-6.738193],[-34.729993,-7.343221],[-35.128212,-8.996401],[-35.636967,-9.649282],[-37.046519,-11.040721],[-37.683612,-12.171195],[-38.423877,-13.038119],[-38.673887,-13.057652],[-38.953276,-13.79337],[-38.882298,-15.667054],[-39.161092,-17.208407],[-39.267339,-17.867746],[-39.583521,-18.262296],[-39.760823,-19.599113],[-40.774741,-20.904512],[-40.944756,-21.937317],[-41.754164,-22.370676],[-41.988284,-22.97007],[-43.074704,-22.967693],[-44.647812,-23.351959],[-45.352136,-23.796842],[-46.472093,-24.088969],[-47.648972,-24.885199],[-48.495458,-25.877025],[-48.641005,-26.623698],[-48.474736,-27.175912],[-48.66152,-28.186135],[-48.888457,-28.674115],[-49.587329,-29.224469],[-50.696874,-30.984465],[-51.576226,-31.777698],[-52.256081,-32.24537],[-52.7121,-33.196578],[-53.373662,-33.768378],[-53.650544,-33.202004],[-53.209589,-32.727666],[-53.787952,-32.047243],[-54.572452,-31.494511],[-55.60151,-30.853879],[-55.973245,-30.883076],[-56.976026,-30.109686],[-57.625133,-30.216295]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BRA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              -11.17840187\n            ],\n            [\n              -45,\n              0\n            ],\n            [\n              -33.75,\n              0\n            ],\n            [\n              -33.75,\n              -11.17840187\n            ],\n            [\n              -45,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              -21.94304553\n            ],\n            [\n              -45,\n              -11.17840187\n            ],\n            [\n              -33.75,\n              -11.17840187\n            ],\n            [\n              -33.75,\n              -21.94304553\n            ],\n            [\n              -45,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              -27.05912578\n            ],\n            [\n              -45,\n              -21.94304553\n            ],\n            [\n              -39.375,\n              -21.94304553\n            ],\n            [\n              -39.375,\n              -27.05912578\n            ],\n            [\n              -45,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -50.625,\n              0\n            ],\n            [\n              -50.625,\n              5.61598582\n            ],\n            [\n              -45,\n              5.61598582\n            ],\n            [\n              -45,\n              0\n            ],\n            [\n              -50.625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -11.17840187\n            ],\n            [\n              -56.25,\n              0\n            ],\n            [\n              -45,\n              0\n            ],\n            [\n              -45,\n              -11.17840187\n            ],\n            [\n              -56.25,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -56.25,\n              -11.17840187\n            ],\n            [\n              -45,\n              -11.17840187\n            ],\n            [\n              -45,\n              -21.94304553\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -45,\n              -21.94304553\n            ],\n            [\n              -45,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -36.59788913\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -50.625,\n              -31.95216224\n            ],\n            [\n              -50.625,\n              -36.59788913\n            ],\n            [\n              -56.25,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              0\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -50.625,\n              5.61598582\n            ],\n            [\n              -50.625,\n              0\n            ],\n            [\n              -56.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -16.63619188\n            ],\n            [\n              -61.875,\n              -11.17840187\n            ],\n            [\n              -56.25,\n              -11.17840187\n            ],\n            [\n              -56.25,\n              -16.63619188\n            ],\n            [\n              -61.875,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -16.63619188\n            ],\n            [\n              -56.25,\n              -16.63619188\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -27.05912578\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -61.875,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -31.95216224\n            ],\n            [\n              -61.875,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -61.875,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              0\n            ],\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -56.25,\n              0\n            ],\n            [\n              -61.875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -67.5,\n              0\n            ],\n            [\n              -56.25,\n              0\n            ],\n            [\n              -56.25,\n              -11.17840187\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -16.63619188\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -61.875,\n              -11.17840187\n            ],\n            [\n              -61.875,\n              -16.63619188\n            ],\n            [\n              -67.5,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              0\n            ],\n            [\n              -67.5,\n              5.61598582\n            ],\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -61.875,\n              0\n            ],\n            [\n              -67.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -11.17840187\n            ],\n            [\n              -73.125,\n              -5.61598582\n            ],\n            [\n              -67.5,\n              -5.61598582\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -73.125,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -5.61598582\n            ],\n            [\n              -73.125,\n              0\n            ],\n            [\n              -67.5,\n              0\n            ],\n            [\n              -67.5,\n              -5.61598582\n            ],\n            [\n              -73.125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              0\n            ],\n            [\n              -73.125,\n              5.61598582\n            ],\n            [\n              -67.5,\n              5.61598582\n            ],\n            [\n              -67.5,\n              0\n            ],\n            [\n              -73.125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -11.17840187\n            ],\n            [\n              -78.75,\n              -5.61598582\n            ],\n            [\n              -73.125,\n              -5.61598582\n            ],\n            [\n              -73.125,\n              -11.17840187\n            ],\n            [\n              -78.75,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -57.625133,\n              -30.216295\n            ],\n            [\n              -56.2909,\n              -28.852761\n            ],\n            [\n              -55.162286,\n              -27.881915\n            ],\n            [\n              -54.490725,\n              -27.474757\n            ],\n            [\n              -53.648735,\n              -26.923473\n            ],\n            [\n              -53.628349,\n              -26.124865\n            ],\n            [\n              -54.13005,\n              -25.547639\n            ],\n            [\n              -54.625291,\n              -25.739255\n            ],\n            [\n              -54.428946,\n              -25.162185\n            ],\n            [\n              -54.293476,\n              -24.5708\n            ],\n            [\n              -54.29296,\n              -24.021014\n            ],\n            [\n              -54.652834,\n              -23.839578\n            ],\n            [\n              -55.027902,\n              -24.001274\n            ],\n            [\n              -55.400747,\n              -23.956935\n            ],\n            [\n              -55.517639,\n              -23.571998\n            ],\n            [\n              -55.610683,\n              -22.655619\n            ],\n            [\n              -55.797958,\n              -22.35693\n            ],\n            [\n              -56.473317,\n              -22.0863\n            ],\n            [\n              -56.88151,\n              -22.282154\n            ],\n            [\n              -57.937156,\n              -22.090176\n            ],\n            [\n              -57.870674,\n              -20.732688\n            ],\n            [\n              -58.166392,\n              -20.176701\n            ],\n            [\n              -57.853802,\n              -19.969995\n            ],\n            [\n              -57.949997,\n              -19.400004\n            ],\n            [\n              -57.676009,\n              -18.96184\n            ],\n            [\n              -57.498371,\n              -18.174188\n            ],\n            [\n              -57.734558,\n              -17.552468\n            ],\n            [\n              -58.280804,\n              -17.27171\n            ],\n            [\n              -58.388058,\n              -16.877109\n            ],\n            [\n              -58.24122,\n              -16.299573\n            ],\n            [\n              -60.15839,\n              -16.258284\n            ],\n            [\n              -60.542966,\n              -15.09391\n            ],\n            [\n              -60.251149,\n              -15.077219\n            ],\n            [\n              -60.264326,\n              -14.645979\n            ],\n            [\n              -60.459198,\n              -14.354007\n            ],\n            [\n              -60.503304,\n              -13.775955\n            ],\n            [\n              -61.084121,\n              -13.479384\n            ],\n            [\n              -61.713204,\n              -13.489202\n            ],\n            [\n              -62.127081,\n              -13.198781\n            ],\n            [\n              -62.80306,\n              -13.000653\n            ],\n            [\n              -63.196499,\n              -12.627033\n            ],\n            [\n              -64.316353,\n              -12.461978\n            ],\n            [\n              -65.402281,\n              -11.56627\n            ],\n            [\n              -65.321899,\n              -10.895872\n            ],\n            [\n              -65.444837,\n              -10.511451\n            ],\n            [\n              -65.338435,\n              -9.761988\n            ],\n            [\n              -66.646908,\n              -9.931331\n            ],\n            [\n              -67.173801,\n              -10.306812\n            ],\n            [\n              -68.048192,\n              -10.712059\n            ],\n            [\n              -68.271254,\n              -11.014521\n            ],\n            [\n              -68.786158,\n              -11.03638\n            ],\n            [\n              -69.529678,\n              -10.951734\n            ],\n            [\n              -70.093752,\n              -11.123972\n            ],\n            [\n              -70.548686,\n              -11.009147\n            ],\n            [\n              -70.481894,\n              -9.490118\n            ],\n            [\n              -71.302412,\n              -10.079436\n            ],\n            [\n              -72.184891,\n              -10.053598\n            ],\n            [\n              -72.563033,\n              -9.520194\n            ],\n            [\n              -73.226713,\n              -9.462213\n            ],\n            [\n              -73.015383,\n              -9.032833\n            ],\n            [\n              -73.571059,\n              -8.424447\n            ],\n            [\n              -73.987235,\n              -7.52383\n            ],\n            [\n              -73.723401,\n              -7.340999\n            ],\n            [\n              -73.724487,\n              -6.918595\n            ],\n            [\n              -73.120027,\n              -6.629931\n            ],\n            [\n              -73.219711,\n              -6.089189\n            ],\n            [\n              -72.964507,\n              -5.741251\n            ],\n            [\n              -72.891928,\n              -5.274561\n            ],\n            [\n              -71.748406,\n              -4.593983\n            ],\n            [\n              -70.928843,\n              -4.401591\n            ],\n            [\n              -70.794769,\n              -4.251265\n            ],\n            [\n              -69.893635,\n              -4.298187\n            ],\n            [\n              -69.444102,\n              -1.556287\n            ],\n            [\n              -69.420486,\n              -1.122619\n            ],\n            [\n              -69.577065,\n              -0.549992\n            ],\n            [\n              -70.020656,\n              -0.185156\n            ],\n            [\n              -70.015566,\n              0.541414\n            ],\n            [\n              -69.452396,\n              0.706159\n            ],\n            [\n              -69.252434,\n              0.602651\n            ],\n            [\n              -69.218638,\n              0.985677\n            ],\n            [\n              -69.804597,\n              1.089081\n            ],\n            [\n              -69.816973,\n              1.714805\n            ],\n            [\n              -67.868565,\n              1.692455\n            ],\n            [\n              -67.53781,\n              2.037163\n            ],\n            [\n              -67.259998,\n              1.719999\n            ],\n            [\n              -67.065048,\n              1.130112\n            ],\n            [\n              -66.876326,\n              1.253361\n            ],\n            [\n              -66.325765,\n              0.724452\n            ],\n            [\n              -65.548267,\n              0.789254\n            ],\n            [\n              -65.354713,\n              1.095282\n            ],\n            [\n              -64.611012,\n              1.328731\n            ],\n            [\n              -64.199306,\n              1.492855\n            ],\n            [\n              -64.083085,\n              1.916369\n            ],\n            [\n              -63.368788,\n              2.2009\n            ],\n            [\n              -63.422867,\n              2.411068\n            ],\n            [\n              -64.269999,\n              2.497006\n            ],\n            [\n              -64.408828,\n              3.126786\n            ],\n            [\n              -64.368494,\n              3.79721\n            ],\n            [\n              -64.816064,\n              4.056445\n            ],\n            [\n              -64.628659,\n              4.148481\n            ],\n            [\n              -63.888343,\n              4.02053\n            ],\n            [\n              -63.093198,\n              3.770571\n            ],\n            [\n              -62.804533,\n              4.006965\n            ],\n            [\n              -62.08543,\n              4.162124\n            ],\n            [\n              -60.966893,\n              4.536468\n            ],\n            [\n              -60.601179,\n              4.918098\n            ],\n            [\n              -60.733574,\n              5.200277\n            ],\n            [\n              -60.213683,\n              5.244486\n            ],\n            [\n              -59.980959,\n              5.014061\n            ],\n            [\n              -60.111002,\n              4.574967\n            ],\n            [\n              -59.767406,\n              4.423503\n            ],\n            [\n              -59.53804,\n              3.958803\n            ],\n            [\n              -59.815413,\n              3.606499\n            ],\n            [\n              -59.974525,\n              2.755233\n            ],\n            [\n              -59.718546,\n              2.24963\n            ],\n            [\n              -59.646044,\n              1.786894\n            ],\n            [\n              -59.030862,\n              1.317698\n            ],\n            [\n              -58.540013,\n              1.268088\n            ],\n            [\n              -58.429477,\n              1.463942\n            ],\n            [\n              -58.11345,\n              1.507195\n            ],\n            [\n              -57.660971,\n              1.682585\n            ],\n            [\n              -57.335823,\n              1.948538\n            ],\n            [\n              -56.782704,\n              1.863711\n            ],\n            [\n              -56.539386,\n              1.899523\n            ],\n            [\n              -55.995698,\n              1.817667\n            ],\n            [\n              -55.9056,\n              2.021996\n            ],\n            [\n              -56.073342,\n              2.220795\n            ],\n            [\n              -55.973322,\n              2.510364\n            ],\n            [\n              -55.569755,\n              2.421506\n            ],\n            [\n              -55.097587,\n              2.523748\n            ],\n            [\n              -54.524754,\n              2.311849\n            ],\n            [\n              -54.088063,\n              2.105557\n            ],\n            [\n              -53.778521,\n              2.376703\n            ],\n            [\n              -53.554839,\n              2.334897\n            ],\n            [\n              -53.418465,\n              2.053389\n            ],\n            [\n              -52.939657,\n              2.124858\n            ],\n            [\n              -52.556425,\n              2.504705\n            ],\n            [\n              -52.249338,\n              3.241094\n            ],\n            [\n              -51.657797,\n              4.156232\n            ],\n            [\n              -51.317146,\n              4.203491\n            ],\n            [\n              -51.069771,\n              3.650398\n            ],\n            [\n              -50.508875,\n              1.901564\n            ],\n            [\n              -49.974076,\n              1.736483\n            ],\n            [\n              -49.947101,\n              1.04619\n            ],\n            [\n              -50.699251,\n              0.222984\n            ],\n            [\n              -50.388211,\n              -0.078445\n            ],\n            [\n              -48.620567,\n              -0.235489\n            ],\n            [\n              -48.584497,\n              -1.237805\n            ],\n            [\n              -47.824956,\n              -0.581618\n            ],\n            [\n              -46.566584,\n              -0.941028\n            ],\n            [\n              -44.905703,\n              -1.55174\n            ],\n            [\n              -44.417619,\n              -2.13775\n            ],\n            [\n              -44.581589,\n              -2.691308\n            ],\n            [\n              -43.418791,\n              -2.38311\n            ],\n            [\n              -41.472657,\n              -2.912018\n            ],\n            [\n              -39.978665,\n              -2.873054\n            ],\n            [\n              -38.500383,\n              -3.700652\n            ],\n            [\n              -37.223252,\n              -4.820946\n            ],\n            [\n              -36.452937,\n              -5.109404\n            ],\n            [\n              -35.597796,\n              -5.149504\n            ],\n            [\n              -35.235389,\n              -5.464937\n            ],\n            [\n              -34.89603,\n              -6.738193\n            ],\n            [\n              -34.729993,\n              -7.343221\n            ],\n            [\n              -35.128212,\n              -8.996401\n            ],\n            [\n              -35.636967,\n              -9.649282\n            ],\n            [\n              -37.046519,\n              -11.040721\n            ],\n            [\n              -37.683612,\n              -12.171195\n            ],\n            [\n              -38.423877,\n              -13.038119\n            ],\n            [\n              -38.673887,\n              -13.057652\n            ],\n            [\n              -38.953276,\n              -13.79337\n            ],\n            [\n              -38.882298,\n              -15.667054\n            ],\n            [\n              -39.161092,\n              -17.208407\n            ],\n            [\n              -39.267339,\n              -17.867746\n            ],\n            [\n              -39.583521,\n              -18.262296\n            ],\n            [\n              -39.760823,\n              -19.599113\n            ],\n            [\n              -40.774741,\n              -20.904512\n            ],\n            [\n              -40.944756,\n              -21.937317\n            ],\n            [\n              -41.754164,\n              -22.370676\n            ],\n            [\n              -41.988284,\n              -22.97007\n            ],\n            [\n              -43.074704,\n              -22.967693\n            ],\n            [\n              -44.647812,\n              -23.351959\n            ],\n            [\n              -45.352136,\n              -23.796842\n            ],\n            [\n              -46.472093,\n              -24.088969\n            ],\n            [\n              -47.648972,\n              -24.885199\n            ],\n            [\n              -48.495458,\n              -25.877025\n            ],\n            [\n              -48.641005,\n              -26.623698\n            ],\n            [\n              -48.474736,\n              -27.175912\n            ],\n            [\n              -48.66152,\n              -28.186135\n            ],\n            [\n              -48.888457,\n              -28.674115\n            ],\n            [\n              -49.587329,\n              -29.224469\n            ],\n            [\n              -50.696874,\n              -30.984465\n            ],\n            [\n              -51.576226,\n              -31.777698\n            ],\n            [\n              -52.256081,\n              -32.24537\n            ],\n            [\n              -52.7121,\n              -33.196578\n            ],\n            [\n              -53.373662,\n              -33.768378\n            ],\n            [\n              -53.650544,\n              -33.202004\n            ],\n            [\n              -53.209589,\n              -32.727666\n            ],\n            [\n              -53.787952,\n              -32.047243\n            ],\n            [\n              -54.572452,\n              -31.494511\n            ],\n            [\n              -55.60151,\n              -30.853879\n            ],\n            [\n              -55.973245,\n              -30.883076\n            ],\n            [\n              -56.976026,\n              -30.109686\n            ],\n            [\n              -57.625133,\n              -30.216295\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BRN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BRN\",\"properties\":{\"name\":\"Brunei\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[114.204017,4.525874],[114.599961,4.900011],[115.45071,5.44773],[115.4057,4.955228],[115.347461,4.316636],[114.869557,4.348314],[114.659596,4.007637],[114.204017,4.525874]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BRN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              0\n            ],\n            [\n              112.5,\n              5.61598582\n            ],\n            [\n              118.125,\n              5.61598582\n            ],\n            [\n              118.125,\n              0\n            ],\n            [\n              112.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              114.204017,\n              4.525874\n            ],\n            [\n              114.599961,\n              4.900011\n            ],\n            [\n              115.45071,\n              5.44773\n            ],\n            [\n              115.4057,\n              4.955228\n            ],\n            [\n              115.347461,\n              4.316636\n            ],\n            [\n              114.869557,\n              4.348314\n            ],\n            [\n              114.659596,\n              4.007637\n            ],\n            [\n              114.204017,\n              4.525874\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BTN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BTN\",\"properties\":{\"name\":\"Bhutan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[91.696657,27.771742],[92.103712,27.452614],[92.033484,26.83831],[91.217513,26.808648],[90.373275,26.875724],[89.744528,26.719403],[88.835643,27.098966],[88.814248,27.299316],[89.47581,28.042759],[90.015829,28.296439],[90.730514,28.064954],[91.258854,28.040614],[91.696657,27.771742]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BTN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              21.94304553\n            ],\n            [\n              84.375,\n              27.05912578\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              90,\n              21.94304553\n            ],\n            [\n              84.375,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              27.05912578\n            ],\n            [\n              84.375,\n              31.95216224\n            ],\n            [\n              90,\n              31.95216224\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              84.375,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              21.94304553\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              90,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              27.05912578\n            ],\n            [\n              90,\n              31.95216224\n            ],\n            [\n              95.625,\n              31.95216224\n            ],\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              90,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              91.696657,\n              27.771742\n            ],\n            [\n              92.103712,\n              27.452614\n            ],\n            [\n              92.033484,\n              26.83831\n            ],\n            [\n              91.217513,\n              26.808648\n            ],\n            [\n              90.373275,\n              26.875724\n            ],\n            [\n              89.744528,\n              26.719403\n            ],\n            [\n              88.835643,\n              27.098966\n            ],\n            [\n              88.814248,\n              27.299316\n            ],\n            [\n              89.47581,\n              28.042759\n            ],\n            [\n              90.015829,\n              28.296439\n            ],\n            [\n              90.730514,\n              28.064954\n            ],\n            [\n              91.258854,\n              28.040614\n            ],\n            [\n              91.696657,\n              27.771742\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/BWA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"BWA\",\"properties\":{\"name\":\"Botswana\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[25.649163,-18.536026],[25.850391,-18.714413],[26.164791,-19.293086],[27.296505,-20.39152],[27.724747,-20.499059],[27.727228,-20.851802],[28.02137,-21.485975],[28.794656,-21.639454],[29.432188,-22.091313],[28.017236,-22.827754],[27.11941,-23.574323],[26.786407,-24.240691],[26.485753,-24.616327],[25.941652,-24.696373],[25.765849,-25.174845],[25.664666,-25.486816],[25.025171,-25.71967],[24.211267,-25.670216],[23.73357,-25.390129],[23.312097,-25.26869],[22.824271,-25.500459],[22.579532,-25.979448],[22.105969,-26.280256],[21.605896,-26.726534],[20.889609,-26.828543],[20.66647,-26.477453],[20.758609,-25.868136],[20.165726,-24.917962],[19.895768,-24.76779],[19.895458,-21.849157],[20.881134,-21.814327],[20.910641,-18.252219],[21.65504,-18.219146],[23.196858,-17.869038],[23.579006,-18.281261],[24.217365,-17.889347],[24.520705,-17.887125],[25.084443,-17.661816],[25.264226,-17.73654],[25.649163,-18.536026]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/BWA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -21.94304553\n            ],\n            [\n              16.875,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              16.875,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -27.05912578\n            ],\n            [\n              16.875,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -27.05912578\n            ],\n            [\n              16.875,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -27.05912578\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              28.125,\n              -27.05912578\n            ],\n            [\n              22.5,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              28.125,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              25.649163,\n              -18.536026\n            ],\n            [\n              25.850391,\n              -18.714413\n            ],\n            [\n              26.164791,\n              -19.293086\n            ],\n            [\n              27.296505,\n              -20.39152\n            ],\n            [\n              27.724747,\n              -20.499059\n            ],\n            [\n              27.727228,\n              -20.851802\n            ],\n            [\n              28.02137,\n              -21.485975\n            ],\n            [\n              28.794656,\n              -21.639454\n            ],\n            [\n              29.432188,\n              -22.091313\n            ],\n            [\n              28.017236,\n              -22.827754\n            ],\n            [\n              27.11941,\n              -23.574323\n            ],\n            [\n              26.786407,\n              -24.240691\n            ],\n            [\n              26.485753,\n              -24.616327\n            ],\n            [\n              25.941652,\n              -24.696373\n            ],\n            [\n              25.765849,\n              -25.174845\n            ],\n            [\n              25.664666,\n              -25.486816\n            ],\n            [\n              25.025171,\n              -25.71967\n            ],\n            [\n              24.211267,\n              -25.670216\n            ],\n            [\n              23.73357,\n              -25.390129\n            ],\n            [\n              23.312097,\n              -25.26869\n            ],\n            [\n              22.824271,\n              -25.500459\n            ],\n            [\n              22.579532,\n              -25.979448\n            ],\n            [\n              22.105969,\n              -26.280256\n            ],\n            [\n              21.605896,\n              -26.726534\n            ],\n            [\n              20.889609,\n              -26.828543\n            ],\n            [\n              20.66647,\n              -26.477453\n            ],\n            [\n              20.758609,\n              -25.868136\n            ],\n            [\n              20.165726,\n              -24.917962\n            ],\n            [\n              19.895768,\n              -24.76779\n            ],\n            [\n              19.895458,\n              -21.849157\n            ],\n            [\n              20.881134,\n              -21.814327\n            ],\n            [\n              20.910641,\n              -18.252219\n            ],\n            [\n              21.65504,\n              -18.219146\n            ],\n            [\n              23.196858,\n              -17.869038\n            ],\n            [\n              23.579006,\n              -18.281261\n            ],\n            [\n              24.217365,\n              -17.889347\n            ],\n            [\n              24.520705,\n              -17.887125\n            ],\n            [\n              25.084443,\n              -17.661816\n            ],\n            [\n              25.264226,\n              -17.73654\n            ],\n            [\n              25.649163,\n              -18.536026\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CAF.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CAF\",\"properties\":{\"name\":\"Central African Republic\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[15.27946,7.421925],[16.106232,7.497088],[16.290562,7.754307],[16.456185,7.734774],[16.705988,7.508328],[17.96493,7.890914],[18.389555,8.281304],[18.911022,8.630895],[18.81201,8.982915],[19.094008,9.074847],[20.059685,9.012706],[21.000868,9.475985],[21.723822,10.567056],[22.231129,10.971889],[22.864165,11.142395],[22.977544,10.714463],[23.554304,10.089255],[23.55725,9.681218],[23.394779,9.265068],[23.459013,8.954286],[23.805813,8.666319],[24.567369,8.229188],[25.114932,7.825104],[25.124131,7.500085],[25.796648,6.979316],[26.213418,6.546603],[26.465909,5.946717],[27.213409,5.550953],[27.374226,5.233944],[27.044065,5.127853],[26.402761,5.150875],[25.650455,5.256088],[25.278798,5.170408],[25.128833,4.927245],[24.805029,4.897247],[24.410531,5.108784],[23.297214,4.609693],[22.84148,4.710126],[22.704124,4.633051],[22.405124,4.02916],[21.659123,4.224342],[20.927591,4.322786],[20.290679,4.691678],[19.467784,5.031528],[18.932312,4.709506],[18.542982,4.201785],[18.453065,3.504386],[17.8099,3.560196],[17.133042,3.728197],[16.537058,3.198255],[16.012852,2.26764],[15.907381,2.557389],[15.862732,3.013537],[15.405396,3.335301],[15.03622,3.851367],[14.950953,4.210389],[14.478372,4.732605],[14.558936,5.030598],[14.459407,5.451761],[14.53656,6.226959],[14.776545,6.408498],[15.27946,7.421925]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CAF_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              0\n            ],\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              11.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              0\n            ],\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              28.125,\n              0\n            ],\n            [\n              22.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              28.125,\n              11.17840187\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.27946,\n              7.421925\n            ],\n            [\n              16.106232,\n              7.497088\n            ],\n            [\n              16.290562,\n              7.754307\n            ],\n            [\n              16.456185,\n              7.734774\n            ],\n            [\n              16.705988,\n              7.508328\n            ],\n            [\n              17.96493,\n              7.890914\n            ],\n            [\n              18.389555,\n              8.281304\n            ],\n            [\n              18.911022,\n              8.630895\n            ],\n            [\n              18.81201,\n              8.982915\n            ],\n            [\n              19.094008,\n              9.074847\n            ],\n            [\n              20.059685,\n              9.012706\n            ],\n            [\n              21.000868,\n              9.475985\n            ],\n            [\n              21.723822,\n              10.567056\n            ],\n            [\n              22.231129,\n              10.971889\n            ],\n            [\n              22.864165,\n              11.142395\n            ],\n            [\n              22.977544,\n              10.714463\n            ],\n            [\n              23.554304,\n              10.089255\n            ],\n            [\n              23.55725,\n              9.681218\n            ],\n            [\n              23.394779,\n              9.265068\n            ],\n            [\n              23.459013,\n              8.954286\n            ],\n            [\n              23.805813,\n              8.666319\n            ],\n            [\n              24.567369,\n              8.229188\n            ],\n            [\n              25.114932,\n              7.825104\n            ],\n            [\n              25.124131,\n              7.500085\n            ],\n            [\n              25.796648,\n              6.979316\n            ],\n            [\n              26.213418,\n              6.546603\n            ],\n            [\n              26.465909,\n              5.946717\n            ],\n            [\n              27.213409,\n              5.550953\n            ],\n            [\n              27.374226,\n              5.233944\n            ],\n            [\n              27.044065,\n              5.127853\n            ],\n            [\n              26.402761,\n              5.150875\n            ],\n            [\n              25.650455,\n              5.256088\n            ],\n            [\n              25.278798,\n              5.170408\n            ],\n            [\n              25.128833,\n              4.927245\n            ],\n            [\n              24.805029,\n              4.897247\n            ],\n            [\n              24.410531,\n              5.108784\n            ],\n            [\n              23.297214,\n              4.609693\n            ],\n            [\n              22.84148,\n              4.710126\n            ],\n            [\n              22.704124,\n              4.633051\n            ],\n            [\n              22.405124,\n              4.02916\n            ],\n            [\n              21.659123,\n              4.224342\n            ],\n            [\n              20.927591,\n              4.322786\n            ],\n            [\n              20.290679,\n              4.691678\n            ],\n            [\n              19.467784,\n              5.031528\n            ],\n            [\n              18.932312,\n              4.709506\n            ],\n            [\n              18.542982,\n              4.201785\n            ],\n            [\n              18.453065,\n              3.504386\n            ],\n            [\n              17.8099,\n              3.560196\n            ],\n            [\n              17.133042,\n              3.728197\n            ],\n            [\n              16.537058,\n              3.198255\n            ],\n            [\n              16.012852,\n              2.26764\n            ],\n            [\n              15.907381,\n              2.557389\n            ],\n            [\n              15.862732,\n              3.013537\n            ],\n            [\n              15.405396,\n              3.335301\n            ],\n            [\n              15.03622,\n              3.851367\n            ],\n            [\n              14.950953,\n              4.210389\n            ],\n            [\n              14.478372,\n              4.732605\n            ],\n            [\n              14.558936,\n              5.030598\n            ],\n            [\n              14.459407,\n              5.451761\n            ],\n            [\n              14.53656,\n              6.226959\n            ],\n            [\n              14.776545,\n              6.408498\n            ],\n            [\n              15.27946,\n              7.421925\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CAN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CAN\",\"properties\":{\"name\":\"Canada\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.510002,48.510011],[-124.012891,48.370846],[-125.655013,48.825005],[-125.954994,49.179996],[-126.850004,49.53],[-127.029993,49.814996],[-128.059336,49.994959],[-128.444584,50.539138],[-128.358414,50.770648],[-127.308581,50.552574],[-126.695001,50.400903],[-125.755007,50.295018],[-125.415002,49.950001],[-124.920768,49.475275],[-123.922509,49.062484],[-123.510002,48.510011]]],[[[-56.134036,50.68701],[-56.795882,49.812309],[-56.143105,50.150117],[-55.471492,49.935815],[-55.822401,49.587129],[-54.935143,49.313011],[-54.473775,49.556691],[-53.476549,49.249139],[-53.786014,48.516781],[-53.086134,48.687804],[-52.958648,48.157164],[-52.648099,47.535548],[-53.069158,46.655499],[-53.521456,46.618292],[-54.178936,46.807066],[-53.961869,47.625207],[-54.240482,47.752279],[-55.400773,46.884994],[-55.997481,46.91972],[-55.291219,47.389562],[-56.250799,47.632545],[-57.325229,47.572807],[-59.266015,47.603348],[-59.419494,47.899454],[-58.796586,48.251525],[-59.231625,48.523188],[-58.391805,49.125581],[-57.35869,50.718274],[-56.73865,51.287438],[-55.870977,51.632094],[-55.406974,51.588273],[-55.600218,51.317075],[-56.134036,50.68701]]],[[[-132.710008,54.040009],[-131.74999,54.120004],[-132.04948,52.984621],[-131.179043,52.180433],[-131.57783,52.182371],[-132.180428,52.639707],[-132.549992,53.100015],[-133.054611,53.411469],[-133.239664,53.85108],[-133.180004,54.169975],[-132.710008,54.040009]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.161308,65.657285],[-84.975764,65.217518],[-84.464012,65.371772],[-83.882626,65.109618],[-82.787577,64.766693],[-81.642014,64.455136],[-81.55344,63.979609],[-80.817361,64.057486],[-80.103451,63.725981],[-80.99102,63.411246],[-82.547178,63.651722],[-83.108798,64.101876],[-84.100417,63.569712],[-85.523405,63.052379],[-85.866769,63.637253],[-87.221983,63.541238],[-86.35276,64.035833],[-86.224886,64.822917],[-85.883848,65.738778],[-85.161308,65.657285]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.647681,69.10769],[-96.269521,68.75704],[-97.617401,69.06003],[-98.431801,68.9507],[-99.797401,69.40003],[-98.917401,69.71003],[-98.218261,70.14354],[-97.157401,69.86003],[-96.557401,69.68003],[-96.257401,69.49003],[-95.647681,69.10769]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.018459],[-76.820034,43.628784],[-77.737885,43.629056],[-78.72028,43.625089],[-79.171674,43.466339],[-79.01,43.27],[-78.92,42.965],[-78.939362,42.863611],[-80.247448,42.3662],[-81.277747,42.209026],[-82.439278,41.675105],[-82.690089,41.675105],[-83.02981,41.832796],[-83.142,41.975681],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.137642,43.571088],[-82.337763,44.44],[-82.550925,45.347517],[-83.592851,45.816894],[-83.469551,45.994686],[-83.616131,46.116927],[-83.890765,46.116927],[-84.091851,46.275419],[-84.14212,46.512226],[-84.3367,46.40877],[-84.6049,46.4396],[-84.543749,46.538684],[-84.779238,46.637102],[-84.87608,46.900083],[-85.652363,47.220219],[-86.461991,47.553338],[-87.439793,47.94],[-88.378114,48.302918],[-89.272917,48.019808],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15907,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.002538],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.534149,68.630059],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.251404,72.826385],[-77.314438,72.855545],[-78.39167,72.876656],[-79.486252,72.742203],[-79.775833,72.802902],[-80.876099,73.333183],[-80.833885,73.693184],[-80.353058,73.75972],[-78.064438,73.651932],[-76.34,73.102685]]],[[[-86.562179,73.157447],[-85.774371,72.534126],[-84.850112,73.340278],[-82.31559,73.750951],[-80.600088,72.716544],[-80.748942,72.061907],[-78.770639,72.352173],[-77.824624,72.749617],[-75.605845,72.243678],[-74.228616,71.767144],[-74.099141,71.33084],[-72.242226,71.556925],[-71.200015,70.920013],[-68.786054,70.525024],[-67.91497,70.121948],[-66.969033,69.186087],[-68.805123,68.720198],[-66.449866,68.067163],[-64.862314,67.847539],[-63.424934,66.928473],[-61.851981,66.862121],[-62.163177,66.160251],[-63.918444,64.998669],[-65.14886,65.426033],[-66.721219,66.388041],[-68.015016,66.262726],[-68.141287,65.689789],[-67.089646,65.108455],[-65.73208,64.648406],[-65.320168,64.382737],[-64.669406,63.392927],[-65.013804,62.674185],[-66.275045,62.945099],[-68.783186,63.74567],[-67.369681,62.883966],[-66.328297,62.280075],[-66.165568,61.930897],[-68.877367,62.330149],[-71.023437,62.910708],[-72.235379,63.397836],[-71.886278,63.679989],[-73.378306,64.193963],[-74.834419,64.679076],[-74.818503,64.389093],[-77.70998,64.229542],[-78.555949,64.572906],[-77.897281,65.309192],[-76.018274,65.326969],[-73.959795,65.454765],[-74.293883,65.811771],[-73.944912,66.310578],[-72.651167,67.284576],[-72.92606,67.726926],[-73.311618,68.069437],[-74.843307,68.554627],[-76.869101,68.894736],[-76.228649,69.147769],[-77.28737,69.76954],[-78.168634,69.826488],[-78.957242,70.16688],[-79.492455,69.871808],[-81.305471,69.743185],[-84.944706,69.966634],[-87.060003,70.260001],[-88.681713,70.410741],[-89.51342,70.762038],[-88.467721,71.218186],[-89.888151,71.222552],[-90.20516,72.235074],[-89.436577,73.129464],[-88.408242,73.537889],[-85.826151,73.803816],[-86.562179,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.196296,72.771992],[-94.269047,72.024596],[-95.409856,72.061881],[-96.033745,72.940277],[-96.018268,73.43743],[-95.495793,73.862417],[-94.503658,74.134907],[-92.420012,74.100025],[-90.509793,73.856732],[-92.003965,72.966244],[-93.196296,72.771992]]],[[[-120.46,71.383602],[-123.09219,70.90164],[-123.62,71.34],[-125.928949,71.868688],[-125.5,72.292261],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.383602]]],[[[-93.612756,74.979997],[-94.156909,74.592347],[-95.608681,74.666864],[-96.820932,74.927623],[-96.288587,75.377828],[-94.85082,75.647218],[-93.977747,75.29649],[-93.612756,74.979997]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.684086,77.097878],[-93.573921,76.776296],[-91.605023,76.778518],[-90.741846,76.449597],[-90.969661,76.074013],[-89.822238,75.847774],[-89.187083,75.610166],[-87.838276,75.566189],[-86.379192,75.482421],[-84.789625,75.699204],[-82.753445,75.784315],[-81.128531,75.713983],[-80.057511,75.336849],[-79.833933,74.923127],[-80.457771,74.657304],[-81.948843,74.442459],[-83.228894,74.564028],[-86.097452,74.410032],[-88.15035,74.392307],[-89.764722,74.515555],[-92.422441,74.837758],[-92.768285,75.38682],[-92.889906,75.882655],[-93.893824,76.319244],[-95.962457,76.441381],[-97.121379,76.751078],[-96.745123,77.161389],[-94.684086,77.097878]]],[[[-116.198587,77.645287],[-116.335813,76.876962],[-117.106051,76.530032],[-118.040412,76.481172],[-119.899318,76.053213],[-121.499995,75.900019],[-122.854924,76.116543],[-122.854925,76.116543],[-121.157535,76.864508],[-119.103939,77.51222],[-117.570131,77.498319],[-116.198587,77.645287]]],[[[-93.840003,77.519997],[-94.295608,77.491343],[-96.169654,77.555111],[-96.436304,77.834629],[-94.422577,77.820005],[-93.720656,77.634331],[-93.840003,77.519997]]],[[[-110.186938,77.697015],[-112.051191,77.409229],[-113.534279,77.732207],[-112.724587,78.05105],[-111.264443,78.152956],[-109.854452,77.996325],[-110.186938,77.697015]]],[[[-109.663146,78.601973],[-110.881314,78.40692],[-112.542091,78.407902],[-112.525891,78.550555],[-111.50001,78.849994],[-110.963661,78.804441],[-109.663146,78.601973]]],[[[-95.830295,78.056941],[-97.309843,77.850597],[-98.124289,78.082857],[-98.552868,78.458105],[-98.631984,78.87193],[-97.337231,78.831984],[-96.754399,78.765813],[-95.559278,78.418315],[-95.830295,78.056941]]],[[[-100.060192,78.324754],[-99.670939,77.907545],[-101.30394,78.018985],[-102.949809,78.343229],[-105.176133,78.380332],[-104.210429,78.67742],[-105.41958,78.918336],[-105.492289,79.301594],[-103.529282,79.165349],[-100.825158,78.800462],[-100.060192,78.324754]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.509322],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.106322],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.430162],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.970222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.408696,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.652273],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.172059],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.169781],[-68.5,83.106322]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CAN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              48.92249926\n            ],\n            [\n              -101.25,\n              55.77657302\n            ],\n            [\n              -90,\n              55.77657302\n            ],\n            [\n              -90,\n              48.92249926\n            ],\n            [\n              -101.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              79.17133464\n            ],\n            [\n              -101.25,\n              81.09321385\n            ],\n            [\n              -90,\n              81.09321385\n            ],\n            [\n              -90,\n              79.17133464\n            ],\n            [\n              -101.25,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              79.17133464\n            ],\n            [\n              -106.875,\n              80.1787135\n            ],\n            [\n              -101.25,\n              80.1787135\n            ],\n            [\n              -101.25,\n              79.17133464\n            ],\n            [\n              -106.875,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              48.92249926\n            ],\n            [\n              -112.5,\n              55.77657302\n            ],\n            [\n              -101.25,\n              55.77657302\n            ],\n            [\n              -101.25,\n              48.92249926\n            ],\n            [\n              -112.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              55.77657302\n            ],\n            [\n              -112.5,\n              66.51326044\n            ],\n            [\n              -90,\n              66.51326044\n            ],\n            [\n              -90,\n              55.77657302\n            ],\n            [\n              -112.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              66.51326044\n            ],\n            [\n              -112.5,\n              74.01954331\n            ],\n            [\n              -90,\n              74.01954331\n            ],\n            [\n              -90,\n              66.51326044\n            ],\n            [\n              -112.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              74.01954331\n            ],\n            [\n              -112.5,\n              79.17133464\n            ],\n            [\n              -90,\n              79.17133464\n            ],\n            [\n              -90,\n              74.01954331\n            ],\n            [\n              -112.5,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              76.84081641\n            ],\n            [\n              -118.125,\n              78.06198919\n            ],\n            [\n              -112.5,\n              78.06198919\n            ],\n            [\n              -112.5,\n              76.84081641\n            ],\n            [\n              -118.125,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              78.06198919\n            ],\n            [\n              -118.125,\n              79.17133464\n            ],\n            [\n              -112.5,\n              79.17133464\n            ],\n            [\n              -112.5,\n              78.06198919\n            ],\n            [\n              -118.125,\n              78.06198919\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              45.08903556\n            ],\n            [\n              -123.75,\n              48.92249926\n            ],\n            [\n              -118.125,\n              48.92249926\n            ],\n            [\n              -118.125,\n              45.08903556\n            ],\n            [\n              -123.75,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              48.92249926\n            ],\n            [\n              -123.75,\n              55.77657302\n            ],\n            [\n              -112.5,\n              55.77657302\n            ],\n            [\n              -112.5,\n              48.92249926\n            ],\n            [\n              -123.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              66.51326044\n            ],\n            [\n              -123.75,\n              70.61261424\n            ],\n            [\n              -112.5,\n              70.61261424\n            ],\n            [\n              -112.5,\n              66.51326044\n            ],\n            [\n              -123.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              70.61261424\n            ],\n            [\n              -123.75,\n              74.01954331\n            ],\n            [\n              -112.5,\n              74.01954331\n            ],\n            [\n              -112.5,\n              70.61261424\n            ],\n            [\n              -123.75,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              74.01954331\n            ],\n            [\n              -123.75,\n              76.84081641\n            ],\n            [\n              -112.5,\n              76.84081641\n            ],\n            [\n              -112.5,\n              74.01954331\n            ],\n            [\n              -123.75,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              76.84081641\n            ],\n            [\n              -123.75,\n              78.06198919\n            ],\n            [\n              -118.125,\n              78.06198919\n            ],\n            [\n              -118.125,\n              76.84081641\n            ],\n            [\n              -123.75,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -129.375,\n              45.08903556\n            ],\n            [\n              -129.375,\n              48.92249926\n            ],\n            [\n              -123.75,\n              48.92249926\n            ],\n            [\n              -123.75,\n              45.08903556\n            ],\n            [\n              -129.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -129.375,\n              70.61261424\n            ],\n            [\n              -129.375,\n              72.39570571\n            ],\n            [\n              -123.75,\n              72.39570571\n            ],\n            [\n              -123.75,\n              70.61261424\n            ],\n            [\n              -129.375,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -129.375,\n              72.39570571\n            ],\n            [\n              -129.375,\n              74.01954331\n            ],\n            [\n              -123.75,\n              74.01954331\n            ],\n            [\n              -123.75,\n              72.39570571\n            ],\n            [\n              -129.375,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -129.375,\n              74.01954331\n            ],\n            [\n              -129.375,\n              75.49715732\n            ],\n            [\n              -123.75,\n              75.49715732\n            ],\n            [\n              -123.75,\n              74.01954331\n            ],\n            [\n              -129.375,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -135,\n              48.92249926\n            ],\n            [\n              -135,\n              55.77657302\n            ],\n            [\n              -123.75,\n              55.77657302\n            ],\n            [\n              -123.75,\n              48.92249926\n            ],\n            [\n              -135,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -135,\n              55.77657302\n            ],\n            [\n              -135,\n              66.51326044\n            ],\n            [\n              -112.5,\n              66.51326044\n            ],\n            [\n              -112.5,\n              55.77657302\n            ],\n            [\n              -135,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -135,\n              66.51326044\n            ],\n            [\n              -135,\n              70.61261424\n            ],\n            [\n              -123.75,\n              70.61261424\n            ],\n            [\n              -123.75,\n              66.51326044\n            ],\n            [\n              -135,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -140.625,\n              58.81374172\n            ],\n            [\n              -140.625,\n              61.60639637\n            ],\n            [\n              -135,\n              61.60639637\n            ],\n            [\n              -135,\n              58.81374172\n            ],\n            [\n              -140.625,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -146.25,\n              58.81374172\n            ],\n            [\n              -146.25,\n              61.60639637\n            ],\n            [\n              -140.625,\n              61.60639637\n            ],\n            [\n              -140.625,\n              58.81374172\n            ],\n            [\n              -146.25,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -146.25,\n              61.60639637\n            ],\n            [\n              -146.25,\n              66.51326044\n            ],\n            [\n              -135,\n              66.51326044\n            ],\n            [\n              -135,\n              61.60639637\n            ],\n            [\n              -146.25,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -146.25,\n              66.51326044\n            ],\n            [\n              -146.25,\n              70.61261424\n            ],\n            [\n              -135,\n              70.61261424\n            ],\n            [\n              -135,\n              66.51326044\n            ],\n            [\n              -146.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              45.08903556\n            ],\n            [\n              -56.25,\n              48.92249926\n            ],\n            [\n              -50.625,\n              48.92249926\n            ],\n            [\n              -50.625,\n              45.08903556\n            ],\n            [\n              -56.25,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              48.92249926\n            ],\n            [\n              -56.25,\n              52.48278022\n            ],\n            [\n              -50.625,\n              52.48278022\n            ],\n            [\n              -50.625,\n              48.92249926\n            ],\n            [\n              -56.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              52.48278022\n            ],\n            [\n              -56.25,\n              55.77657302\n            ],\n            [\n              -50.625,\n              55.77657302\n            ],\n            [\n              -50.625,\n              52.48278022\n            ],\n            [\n              -56.25,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              55.77657302\n            ],\n            [\n              -61.875,\n              58.81374172\n            ],\n            [\n              -56.25,\n              58.81374172\n            ],\n            [\n              -56.25,\n              55.77657302\n            ],\n            [\n              -61.875,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              66.51326044\n            ],\n            [\n              -61.875,\n              68.65655498\n            ],\n            [\n              -56.25,\n              68.65655498\n            ],\n            [\n              -56.25,\n              66.51326044\n            ],\n            [\n              -61.875,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              81.92318633\n            ],\n            [\n              -61.875,\n              82.67628498\n            ],\n            [\n              -56.25,\n              82.67628498\n            ],\n            [\n              -56.25,\n              81.92318633\n            ],\n            [\n              -61.875,\n              81.92318633\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              40.97989807\n            ],\n            [\n              -67.5,\n              48.92249926\n            ],\n            [\n              -56.25,\n              48.92249926\n            ],\n            [\n              -56.25,\n              40.97989807\n            ],\n            [\n              -67.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              48.92249926\n            ],\n            [\n              -67.5,\n              55.77657302\n            ],\n            [\n              -56.25,\n              55.77657302\n            ],\n            [\n              -56.25,\n              48.92249926\n            ],\n            [\n              -67.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              55.77657302\n            ],\n            [\n              -67.5,\n              58.81374172\n            ],\n            [\n              -61.875,\n              58.81374172\n            ],\n            [\n              -61.875,\n              55.77657302\n            ],\n            [\n              -67.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              58.81374172\n            ],\n            [\n              -67.5,\n              61.60639637\n            ],\n            [\n              -61.875,\n              61.60639637\n            ],\n            [\n              -61.875,\n              58.81374172\n            ],\n            [\n              -67.5,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              61.60639637\n            ],\n            [\n              -67.5,\n              64.1681069\n            ],\n            [\n              -61.875,\n              64.1681069\n            ],\n            [\n              -61.875,\n              61.60639637\n            ],\n            [\n              -67.5,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              64.1681069\n            ],\n            [\n              -67.5,\n              66.51326044\n            ],\n            [\n              -61.875,\n              66.51326044\n            ],\n            [\n              -61.875,\n              64.1681069\n            ],\n            [\n              -67.5,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              66.51326044\n            ],\n            [\n              -67.5,\n              68.65655498\n            ],\n            [\n              -61.875,\n              68.65655498\n            ],\n            [\n              -61.875,\n              66.51326044\n            ],\n            [\n              -67.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              68.65655498\n            ],\n            [\n              -67.5,\n              70.61261424\n            ],\n            [\n              -61.875,\n              70.61261424\n            ],\n            [\n              -61.875,\n              68.65655498\n            ],\n            [\n              -67.5,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              80.1787135\n            ],\n            [\n              -67.5,\n              81.09321385\n            ],\n            [\n              -61.875,\n              81.09321385\n            ],\n            [\n              -61.875,\n              80.1787135\n            ],\n            [\n              -67.5,\n              80.1787135\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              81.09321385\n            ],\n            [\n              -67.5,\n              81.92318633\n            ],\n            [\n              -61.875,\n              81.92318633\n            ],\n            [\n              -61.875,\n              81.09321385\n            ],\n            [\n              -67.5,\n              81.09321385\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              81.92318633\n            ],\n            [\n              -67.5,\n              82.67628498\n            ],\n            [\n              -61.875,\n              82.67628498\n            ],\n            [\n              -61.875,\n              81.92318633\n            ],\n            [\n              -67.5,\n              81.92318633\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              82.67628498\n            ],\n            [\n              -67.5,\n              83.35951133\n            ],\n            [\n              -61.875,\n              83.35951133\n            ],\n            [\n              -61.875,\n              82.67628498\n            ],\n            [\n              -67.5,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              70.61261424\n            ],\n            [\n              -73.125,\n              72.39570571\n            ],\n            [\n              -67.5,\n              72.39570571\n            ],\n            [\n              -67.5,\n              70.61261424\n            ],\n            [\n              -73.125,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              82.67628498\n            ],\n            [\n              -73.125,\n              83.35951133\n            ],\n            [\n              -67.5,\n              83.35951133\n            ],\n            [\n              -67.5,\n              82.67628498\n            ],\n            [\n              -73.125,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              40.97989807\n            ],\n            [\n              -78.75,\n              48.92249926\n            ],\n            [\n              -67.5,\n              48.92249926\n            ],\n            [\n              -67.5,\n              40.97989807\n            ],\n            [\n              -78.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              48.92249926\n            ],\n            [\n              -78.75,\n              55.77657302\n            ],\n            [\n              -67.5,\n              55.77657302\n            ],\n            [\n              -67.5,\n              48.92249926\n            ],\n            [\n              -78.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              55.77657302\n            ],\n            [\n              -78.75,\n              61.60639637\n            ],\n            [\n              -67.5,\n              61.60639637\n            ],\n            [\n              -67.5,\n              55.77657302\n            ],\n            [\n              -78.75,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              61.60639637\n            ],\n            [\n              -78.75,\n              66.51326044\n            ],\n            [\n              -67.5,\n              66.51326044\n            ],\n            [\n              -67.5,\n              61.60639637\n            ],\n            [\n              -78.75,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              66.51326044\n            ],\n            [\n              -78.75,\n              70.61261424\n            ],\n            [\n              -67.5,\n              70.61261424\n            ],\n            [\n              -67.5,\n              66.51326044\n            ],\n            [\n              -78.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              70.61261424\n            ],\n            [\n              -78.75,\n              72.39570571\n            ],\n            [\n              -73.125,\n              72.39570571\n            ],\n            [\n              -73.125,\n              70.61261424\n            ],\n            [\n              -78.75,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              72.39570571\n            ],\n            [\n              -78.75,\n              74.01954331\n            ],\n            [\n              -73.125,\n              74.01954331\n            ],\n            [\n              -73.125,\n              72.39570571\n            ],\n            [\n              -78.75,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              75.49715732\n            ],\n            [\n              -78.75,\n              76.84081641\n            ],\n            [\n              -73.125,\n              76.84081641\n            ],\n            [\n              -73.125,\n              75.49715732\n            ],\n            [\n              -78.75,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              76.84081641\n            ],\n            [\n              -78.75,\n              78.06198919\n            ],\n            [\n              -73.125,\n              78.06198919\n            ],\n            [\n              -73.125,\n              76.84081641\n            ],\n            [\n              -78.75,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              78.06198919\n            ],\n            [\n              -78.75,\n              79.17133464\n            ],\n            [\n              -73.125,\n              79.17133464\n            ],\n            [\n              -73.125,\n              78.06198919\n            ],\n            [\n              -78.75,\n              78.06198919\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              82.67628498\n            ],\n            [\n              -78.75,\n              83.35951133\n            ],\n            [\n              -73.125,\n              83.35951133\n            ],\n            [\n              -73.125,\n              82.67628498\n            ],\n            [\n              -78.75,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              40.97989807\n            ],\n            [\n              -84.375,\n              45.08903556\n            ],\n            [\n              -78.75,\n              45.08903556\n            ],\n            [\n              -78.75,\n              40.97989807\n            ],\n            [\n              -84.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              45.08903556\n            ],\n            [\n              -84.375,\n              48.92249926\n            ],\n            [\n              -78.75,\n              48.92249926\n            ],\n            [\n              -78.75,\n              45.08903556\n            ],\n            [\n              -84.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              82.67628498\n            ],\n            [\n              -84.375,\n              83.35951133\n            ],\n            [\n              -78.75,\n              83.35951133\n            ],\n            [\n              -78.75,\n              82.67628498\n            ],\n            [\n              -84.375,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              45.08903556\n            ],\n            [\n              -90,\n              48.92249926\n            ],\n            [\n              -84.375,\n              48.92249926\n            ],\n            [\n              -84.375,\n              45.08903556\n            ],\n            [\n              -90,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              48.92249926\n            ],\n            [\n              -90,\n              55.77657302\n            ],\n            [\n              -78.75,\n              55.77657302\n            ],\n            [\n              -78.75,\n              48.92249926\n            ],\n            [\n              -90,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              55.77657302\n            ],\n            [\n              -90,\n              58.81374172\n            ],\n            [\n              -84.375,\n              58.81374172\n            ],\n            [\n              -84.375,\n              55.77657302\n            ],\n            [\n              -90,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              61.60639637\n            ],\n            [\n              -90,\n              66.51326044\n            ],\n            [\n              -78.75,\n              66.51326044\n            ],\n            [\n              -78.75,\n              61.60639637\n            ],\n            [\n              -90,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              66.51326044\n            ],\n            [\n              -90,\n              70.61261424\n            ],\n            [\n              -78.75,\n              70.61261424\n            ],\n            [\n              -78.75,\n              66.51326044\n            ],\n            [\n              -90,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              70.61261424\n            ],\n            [\n              -90,\n              74.01954331\n            ],\n            [\n              -78.75,\n              74.01954331\n            ],\n            [\n              -78.75,\n              70.61261424\n            ],\n            [\n              -90,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              74.01954331\n            ],\n            [\n              -90,\n              76.84081641\n            ],\n            [\n              -78.75,\n              76.84081641\n            ],\n            [\n              -78.75,\n              74.01954331\n            ],\n            [\n              -90,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              76.84081641\n            ],\n            [\n              -90,\n              79.17133464\n            ],\n            [\n              -78.75,\n              79.17133464\n            ],\n            [\n              -78.75,\n              76.84081641\n            ],\n            [\n              -90,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              79.17133464\n            ],\n            [\n              -90,\n              82.67628498\n            ],\n            [\n              -67.5,\n              82.67628498\n            ],\n            [\n              -67.5,\n              79.17133464\n            ],\n            [\n              -90,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              45.08903556\n            ],\n            [\n              -95.625,\n              48.92249926\n            ],\n            [\n              -90,\n              48.92249926\n            ],\n            [\n              -90,\n              45.08903556\n            ],\n            [\n              -95.625,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              81.09321385\n            ],\n            [\n              -95.625,\n              81.92318633\n            ],\n            [\n              -90,\n              81.92318633\n            ],\n            [\n              -90,\n              81.09321385\n            ],\n            [\n              -95.625,\n              81.09321385\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              81.92318633\n            ],\n            [\n              -95.625,\n              82.67628498\n            ],\n            [\n              -90,\n              82.67628498\n            ],\n            [\n              -90,\n              81.92318633\n            ],\n            [\n              -95.625,\n              81.92318633\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                -63.6645,\n                46.55001\n              ],\n              [\n                -62.9393,\n                46.41587\n              ],\n              [\n                -62.01208,\n                46.44314\n              ],\n              [\n                -62.50391,\n                46.03339\n              ],\n              [\n                -62.87433,\n                45.96818\n              ],\n              [\n                -64.1428,\n                46.39265\n              ],\n              [\n                -64.39261,\n                46.72747\n              ],\n              [\n                -64.01486,\n                47.03601\n              ],\n              [\n                -63.6645,\n                46.55001\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -61.806305,\n                49.10506\n              ],\n              [\n                -62.29318,\n                49.08717\n              ],\n              [\n                -63.58926,\n                49.40069\n              ],\n              [\n                -64.51912,\n                49.87304\n              ],\n              [\n                -64.17322,\n                49.95718\n              ],\n              [\n                -62.85829,\n                49.70641\n              ],\n              [\n                -61.835585,\n                49.28855\n              ],\n              [\n                -61.806305,\n                49.10506\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -123.510002,\n                48.510011\n              ],\n              [\n                -124.012891,\n                48.370846\n              ],\n              [\n                -125.655013,\n                48.825005\n              ],\n              [\n                -125.954994,\n                49.179996\n              ],\n              [\n                -126.850004,\n                49.53\n              ],\n              [\n                -127.029993,\n                49.814996\n              ],\n              [\n                -128.059336,\n                49.994959\n              ],\n              [\n                -128.444584,\n                50.539138\n              ],\n              [\n                -128.358414,\n                50.770648\n              ],\n              [\n                -127.308581,\n                50.552574\n              ],\n              [\n                -126.695001,\n                50.400903\n              ],\n              [\n                -125.755007,\n                50.295018\n              ],\n              [\n                -125.415002,\n                49.950001\n              ],\n              [\n                -124.920768,\n                49.475275\n              ],\n              [\n                -123.922509,\n                49.062484\n              ],\n              [\n                -123.510002,\n                48.510011\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -56.134036,\n                50.68701\n              ],\n              [\n                -56.795882,\n                49.812309\n              ],\n              [\n                -56.143105,\n                50.150117\n              ],\n              [\n                -55.471492,\n                49.935815\n              ],\n              [\n                -55.822401,\n                49.587129\n              ],\n              [\n                -54.935143,\n                49.313011\n              ],\n              [\n                -54.473775,\n                49.556691\n              ],\n              [\n                -53.476549,\n                49.249139\n              ],\n              [\n                -53.786014,\n                48.516781\n              ],\n              [\n                -53.086134,\n                48.687804\n              ],\n              [\n                -52.958648,\n                48.157164\n              ],\n              [\n                -52.648099,\n                47.535548\n              ],\n              [\n                -53.069158,\n                46.655499\n              ],\n              [\n                -53.521456,\n                46.618292\n              ],\n              [\n                -54.178936,\n                46.807066\n              ],\n              [\n                -53.961869,\n                47.625207\n              ],\n              [\n                -54.240482,\n                47.752279\n              ],\n              [\n                -55.400773,\n                46.884994\n              ],\n              [\n                -55.997481,\n                46.91972\n              ],\n              [\n                -55.291219,\n                47.389562\n              ],\n              [\n                -56.250799,\n                47.632545\n              ],\n              [\n                -57.325229,\n                47.572807\n              ],\n              [\n                -59.266015,\n                47.603348\n              ],\n              [\n                -59.419494,\n                47.899454\n              ],\n              [\n                -58.796586,\n                48.251525\n              ],\n              [\n                -59.231625,\n                48.523188\n              ],\n              [\n                -58.391805,\n                49.125581\n              ],\n              [\n                -57.35869,\n                50.718274\n              ],\n              [\n                -56.73865,\n                51.287438\n              ],\n              [\n                -55.870977,\n                51.632094\n              ],\n              [\n                -55.406974,\n                51.588273\n              ],\n              [\n                -55.600218,\n                51.317075\n              ],\n              [\n                -56.134036,\n                50.68701\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -132.710008,\n                54.040009\n              ],\n              [\n                -131.74999,\n                54.120004\n              ],\n              [\n                -132.04948,\n                52.984621\n              ],\n              [\n                -131.179043,\n                52.180433\n              ],\n              [\n                -131.57783,\n                52.182371\n              ],\n              [\n                -132.180428,\n                52.639707\n              ],\n              [\n                -132.549992,\n                53.100015\n              ],\n              [\n                -133.054611,\n                53.411469\n              ],\n              [\n                -133.239664,\n                53.85108\n              ],\n              [\n                -133.180004,\n                54.169975\n              ],\n              [\n                -132.710008,\n                54.040009\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -79.26582,\n                62.158675\n              ],\n              [\n                -79.65752,\n                61.63308\n              ],\n              [\n                -80.09956,\n                61.7181\n              ],\n              [\n                -80.36215,\n                62.01649\n              ],\n              [\n                -80.315395,\n                62.085565\n              ],\n              [\n                -79.92939,\n                62.3856\n              ],\n              [\n                -79.52002,\n                62.36371\n              ],\n              [\n                -79.26582,\n                62.158675\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -81.89825,\n                62.7108\n              ],\n              [\n                -83.06857,\n                62.15922\n              ],\n              [\n                -83.77462,\n                62.18231\n              ],\n              [\n                -83.99367,\n                62.4528\n              ],\n              [\n                -83.25048,\n                62.91409\n              ],\n              [\n                -81.87699,\n                62.90458\n              ],\n              [\n                -81.89825,\n                62.7108\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -85.161308,\n                65.657285\n              ],\n              [\n                -84.975764,\n                65.217518\n              ],\n              [\n                -84.464012,\n                65.371772\n              ],\n              [\n                -83.882626,\n                65.109618\n              ],\n              [\n                -82.787577,\n                64.766693\n              ],\n              [\n                -81.642014,\n                64.455136\n              ],\n              [\n                -81.55344,\n                63.979609\n              ],\n              [\n                -80.817361,\n                64.057486\n              ],\n              [\n                -80.103451,\n                63.725981\n              ],\n              [\n                -80.99102,\n                63.411246\n              ],\n              [\n                -82.547178,\n                63.651722\n              ],\n              [\n                -83.108798,\n                64.101876\n              ],\n              [\n                -84.100417,\n                63.569712\n              ],\n              [\n                -85.523405,\n                63.052379\n              ],\n              [\n                -85.866769,\n                63.637253\n              ],\n              [\n                -87.221983,\n                63.541238\n              ],\n              [\n                -86.35276,\n                64.035833\n              ],\n              [\n                -86.224886,\n                64.822917\n              ],\n              [\n                -85.883848,\n                65.738778\n              ],\n              [\n                -85.161308,\n                65.657285\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -75.86588,\n                67.14886\n              ],\n              [\n                -76.98687,\n                67.09873\n              ],\n              [\n                -77.2364,\n                67.58809\n              ],\n              [\n                -76.81166,\n                68.14856\n              ],\n              [\n                -75.89521,\n                68.28721\n              ],\n              [\n                -75.1145,\n                68.01036\n              ],\n              [\n                -75.10333,\n                67.58202\n              ],\n              [\n                -75.21597,\n                67.44425\n              ],\n              [\n                -75.86588,\n                67.14886\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -95.647681,\n                69.10769\n              ],\n              [\n                -96.269521,\n                68.75704\n              ],\n              [\n                -97.617401,\n                69.06003\n              ],\n              [\n                -98.431801,\n                68.9507\n              ],\n              [\n                -99.797401,\n                69.40003\n              ],\n              [\n                -98.917401,\n                69.71003\n              ],\n              [\n                -98.218261,\n                70.14354\n              ],\n              [\n                -97.157401,\n                69.86003\n              ],\n              [\n                -96.557401,\n                69.68003\n              ],\n              [\n                -96.257401,\n                69.49003\n              ],\n              [\n                -95.647681,\n                69.10769\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -90.5471,\n                69.49766\n              ],\n              [\n                -90.55151,\n                68.47499\n              ],\n              [\n                -89.21515,\n                69.25873\n              ],\n              [\n                -88.01966,\n                68.61508\n              ],\n              [\n                -88.31749,\n                67.87338\n              ],\n              [\n                -87.35017,\n                67.19872\n              ],\n              [\n                -86.30607,\n                67.92146\n              ],\n              [\n                -85.57664,\n                68.78456\n              ],\n              [\n                -85.52197,\n                69.88211\n              ],\n              [\n                -84.10081,\n                69.80539\n              ],\n              [\n                -82.62258,\n                69.65826\n              ],\n              [\n                -81.28043,\n                69.16202\n              ],\n              [\n                -81.2202,\n                68.66567\n              ],\n              [\n                -81.96436,\n                68.13253\n              ],\n              [\n                -81.25928,\n                67.59716\n              ],\n              [\n                -81.38653,\n                67.11078\n              ],\n              [\n                -83.34456,\n                66.41154\n              ],\n              [\n                -84.73542,\n                66.2573\n              ],\n              [\n                -85.76943,\n                66.55833\n              ],\n              [\n                -86.0676,\n                66.05625\n              ],\n              [\n                -87.03143,\n                65.21297\n              ],\n              [\n                -87.32324,\n                64.77563\n              ],\n              [\n                -88.48296,\n                64.09897\n              ],\n              [\n                -89.91444,\n                64.03273\n              ],\n              [\n                -90.70398,\n                63.61017\n              ],\n              [\n                -90.77004,\n                62.96021\n              ],\n              [\n                -91.93342,\n                62.83508\n              ],\n              [\n                -93.15698,\n                62.02469\n              ],\n              [\n                -94.24153,\n                60.89865\n              ],\n              [\n                -94.62931,\n                60.11021\n              ],\n              [\n                -94.6846,\n                58.94882\n              ],\n              [\n                -93.21502,\n                58.78212\n              ],\n              [\n                -92.76462,\n                57.84571\n              ],\n              [\n                -92.29703,\n                57.08709\n              ],\n              [\n                -90.89769,\n                57.28468\n              ],\n              [\n                -89.03953,\n                56.85172\n              ],\n              [\n                -88.03978,\n                56.47162\n              ],\n              [\n                -87.32421,\n                55.99914\n              ],\n              [\n                -86.07121,\n                55.72383\n              ],\n              [\n                -85.01181,\n                55.3026\n              ],\n              [\n                -83.36055,\n                55.24489\n              ],\n              [\n                -82.27285,\n                55.14832\n              ],\n              [\n                -82.4362,\n                54.28227\n              ],\n              [\n                -82.12502,\n                53.27703\n              ],\n              [\n                -81.40075,\n                52.15788\n              ],\n              [\n                -79.91289,\n                51.20842\n              ],\n              [\n                -79.14301,\n                51.53393\n              ],\n              [\n                -78.60191,\n                52.56208\n              ],\n              [\n                -79.12421,\n                54.14145\n              ],\n              [\n                -79.82958,\n                54.66772\n              ],\n              [\n                -78.22874,\n                55.13645\n              ],\n              [\n                -77.0956,\n                55.83741\n              ],\n              [\n                -76.54137,\n                56.53423\n              ],\n              [\n                -76.62319,\n                57.20263\n              ],\n              [\n                -77.30226,\n                58.05209\n              ],\n              [\n                -78.51688,\n                58.80458\n              ],\n              [\n                -77.33676,\n                59.85261\n              ],\n              [\n                -77.77272,\n                60.75788\n              ],\n              [\n                -78.10687,\n                62.31964\n              ],\n              [\n                -77.41067,\n                62.55053\n              ],\n              [\n                -75.69621,\n                62.2784\n              ],\n              [\n                -74.6682,\n                62.18111\n              ],\n              [\n                -73.83988,\n                62.4438\n              ],\n              [\n                -72.90853,\n                62.10507\n              ],\n              [\n                -71.67708,\n                61.52535\n              ],\n              [\n                -71.37369,\n                61.13717\n              ],\n              [\n                -69.59042,\n                61.06141\n              ],\n              [\n                -69.62033,\n                60.22125\n              ],\n              [\n                -69.2879,\n                58.95736\n              ],\n              [\n                -68.37455,\n                58.80106\n              ],\n              [\n                -67.64976,\n                58.21206\n              ],\n              [\n                -66.20178,\n                58.76731\n              ],\n              [\n                -65.24517,\n                59.87071\n              ],\n              [\n                -64.58352,\n                60.33558\n              ],\n              [\n                -63.80475,\n                59.4426\n              ],\n              [\n                -62.50236,\n                58.16708\n              ],\n              [\n                -61.39655,\n                56.96745\n              ],\n              [\n                -61.79866,\n                56.33945\n              ],\n              [\n                -60.46853,\n                55.77548\n              ],\n              [\n                -59.56962,\n                55.20407\n              ],\n              [\n                -57.97508,\n                54.94549\n              ],\n              [\n                -57.3332,\n                54.6265\n              ],\n              [\n                -56.93689,\n                53.78032\n              ],\n              [\n                -56.15811,\n                53.64749\n              ],\n              [\n                -55.75632,\n                53.27036\n              ],\n              [\n                -55.68338,\n                52.14664\n              ],\n              [\n                -56.40916,\n                51.7707\n              ],\n              [\n                -57.12691,\n                51.41972\n              ],\n              [\n                -58.77482,\n                51.0643\n              ],\n              [\n                -60.03309,\n                50.24277\n              ],\n              [\n                -61.72366,\n                50.08046\n              ],\n              [\n                -63.86251,\n                50.29099\n              ],\n              [\n                -65.36331,\n                50.2982\n              ],\n              [\n                -66.39905,\n                50.22897\n              ],\n              [\n                -67.23631,\n                49.51156\n              ],\n              [\n                -68.51114,\n                49.06836\n              ],\n              [\n                -69.95362,\n                47.74488\n              ],\n              [\n                -71.10458,\n                46.82171\n              ],\n              [\n                -70.25522,\n                46.98606\n              ],\n              [\n                -68.65,\n                48.3\n              ],\n              [\n                -66.55243,\n                49.1331\n              ],\n              [\n                -65.05626,\n                49.23278\n              ],\n              [\n                -64.17099,\n                48.74248\n              ],\n              [\n                -65.11545,\n                48.07085\n              ],\n              [\n                -64.79854,\n                46.99297\n              ],\n              [\n                -64.47219,\n                46.23849\n              ],\n              [\n                -63.17329,\n                45.73902\n              ],\n              [\n                -61.52072,\n                45.88377\n              ],\n              [\n                -60.51815,\n                47.00793\n              ],\n              [\n                -60.4486,\n                46.28264\n              ],\n              [\n                -59.80287,\n                45.9204\n              ],\n              [\n                -61.03988,\n                45.26525\n              ],\n              [\n                -63.25471,\n                44.67014\n              ],\n              [\n                -64.24656,\n                44.26553\n              ],\n              [\n                -65.36406,\n                43.54523\n              ],\n              [\n                -66.1234,\n                43.61867\n              ],\n              [\n                -66.16173,\n                44.46512\n              ],\n              [\n                -64.42549,\n                45.29204\n              ],\n              [\n                -66.02605,\n                45.25931\n              ],\n              [\n                -67.13741,\n                45.13753\n              ],\n              [\n                -67.79134,\n                45.70281\n              ],\n              [\n                -67.79046,\n                47.06636\n              ],\n              [\n                -68.23444,\n                47.35486\n              ],\n              [\n                -68.905,\n                47.185\n              ],\n              [\n                -69.237216,\n                47.447781\n              ],\n              [\n                -69.99997,\n                46.69307\n              ],\n              [\n                -70.305,\n                45.915\n              ],\n              [\n                -70.66,\n                45.46\n              ],\n              [\n                -71.08482,\n                45.30524\n              ],\n              [\n                -71.405,\n                45.255\n              ],\n              [\n                -71.50506,\n                45.0082\n              ],\n              [\n                -73.34783,\n                45.00738\n              ],\n              [\n                -74.867,\n                45.00048\n              ],\n              [\n                -75.31821,\n                44.81645\n              ],\n              [\n                -76.375,\n                44.09631\n              ],\n              [\n                -76.5,\n                44.018459\n              ],\n              [\n                -76.820034,\n                43.628784\n              ],\n              [\n                -77.737885,\n                43.629056\n              ],\n              [\n                -78.72028,\n                43.625089\n              ],\n              [\n                -79.171674,\n                43.466339\n              ],\n              [\n                -79.01,\n                43.27\n              ],\n              [\n                -78.92,\n                42.965\n              ],\n              [\n                -78.939362,\n                42.863611\n              ],\n              [\n                -80.247448,\n                42.3662\n              ],\n              [\n                -81.277747,\n                42.209026\n              ],\n              [\n                -82.439278,\n                41.675105\n              ],\n              [\n                -82.690089,\n                41.675105\n              ],\n              [\n                -83.02981,\n                41.832796\n              ],\n              [\n                -83.142,\n                41.975681\n              ],\n              [\n                -83.12,\n                42.08\n              ],\n              [\n                -82.9,\n                42.43\n              ],\n              [\n                -82.43,\n                42.98\n              ],\n              [\n                -82.137642,\n                43.571088\n              ],\n              [\n                -82.337763,\n                44.44\n              ],\n              [\n                -82.550925,\n                45.347517\n              ],\n              [\n                -83.592851,\n                45.816894\n              ],\n              [\n                -83.469551,\n                45.994686\n              ],\n              [\n                -83.616131,\n                46.116927\n              ],\n              [\n                -83.890765,\n                46.116927\n              ],\n              [\n                -84.091851,\n                46.275419\n              ],\n              [\n                -84.14212,\n                46.512226\n              ],\n              [\n                -84.3367,\n                46.40877\n              ],\n              [\n                -84.6049,\n                46.4396\n              ],\n              [\n                -84.543749,\n                46.538684\n              ],\n              [\n                -84.779238,\n                46.637102\n              ],\n              [\n                -84.87608,\n                46.900083\n              ],\n              [\n                -85.652363,\n                47.220219\n              ],\n              [\n                -86.461991,\n                47.553338\n              ],\n              [\n                -87.439793,\n                47.94\n              ],\n              [\n                -88.378114,\n                48.302918\n              ],\n              [\n                -89.272917,\n                48.019808\n              ],\n              [\n                -89.6,\n                48.01\n              ],\n              [\n                -90.83,\n                48.27\n              ],\n              [\n                -91.64,\n                48.14\n              ],\n              [\n                -92.61,\n                48.45\n              ],\n              [\n                -93.63087,\n                48.60926\n              ],\n              [\n                -94.32914,\n                48.67074\n              ],\n              [\n                -94.64,\n                48.84\n              ],\n              [\n                -94.81758,\n                49.38905\n              ],\n              [\n                -95.15609,\n                49.38425\n              ],\n              [\n                -95.15907,\n                49\n              ],\n              [\n                -97.22872,\n                49.0007\n              ],\n              [\n                -100.65,\n                49\n              ],\n              [\n                -104.04826,\n                48.99986\n              ],\n              [\n                -107.05,\n                49\n              ],\n              [\n                -110.05,\n                49\n              ],\n              [\n                -113,\n                49\n              ],\n              [\n                -116.04818,\n                49\n              ],\n              [\n                -117.03121,\n                49\n              ],\n              [\n                -120,\n                49\n              ],\n              [\n                -122.84,\n                49\n              ],\n              [\n                -122.97421,\n                49.002538\n              ],\n              [\n                -124.91024,\n                49.98456\n              ],\n              [\n                -125.62461,\n                50.41656\n              ],\n              [\n                -127.43561,\n                50.83061\n              ],\n              [\n                -127.99276,\n                51.71583\n              ],\n              [\n                -127.85032,\n                52.32961\n              ],\n              [\n                -129.12979,\n                52.75538\n              ],\n              [\n                -129.30523,\n                53.56159\n              ],\n              [\n                -130.51497,\n                54.28757\n              ],\n              [\n                -130.53611,\n                54.80278\n              ],\n              [\n                -129.98,\n                55.285\n              ],\n              [\n                -130.00778,\n                55.91583\n              ],\n              [\n                -131.70781,\n                56.55212\n              ],\n              [\n                -132.73042,\n                57.69289\n              ],\n              [\n                -133.35556,\n                58.41028\n              ],\n              [\n                -134.27111,\n                58.86111\n              ],\n              [\n                -134.945,\n                59.27056\n              ],\n              [\n                -135.47583,\n                59.78778\n              ],\n              [\n                -136.47972,\n                59.46389\n              ],\n              [\n                -137.4525,\n                58.905\n              ],\n              [\n                -138.34089,\n                59.56211\n              ],\n              [\n                -139.039,\n                60\n              ],\n              [\n                -140.013,\n                60.27682\n              ],\n              [\n                -140.99778,\n                60.30639\n              ],\n              [\n                -140.9925,\n                66.00003\n              ],\n              [\n                -140.986,\n                69.712\n              ],\n              [\n                -139.12052,\n                69.47102\n              ],\n              [\n                -137.54636,\n                68.99002\n              ],\n              [\n                -136.50358,\n                68.89804\n              ],\n              [\n                -135.62576,\n                69.31512\n              ],\n              [\n                -134.41464,\n                69.62743\n              ],\n              [\n                -132.92925,\n                69.50534\n              ],\n              [\n                -131.43136,\n                69.94451\n              ],\n              [\n                -129.79471,\n                70.19369\n              ],\n              [\n                -129.10773,\n                69.77927\n              ],\n              [\n                -128.36156,\n                70.01286\n              ],\n              [\n                -128.13817,\n                70.48384\n              ],\n              [\n                -127.44712,\n                70.37721\n              ],\n              [\n                -125.75632,\n                69.48058\n              ],\n              [\n                -124.42483,\n                70.1584\n              ],\n              [\n                -124.28968,\n                69.39969\n              ],\n              [\n                -123.06108,\n                69.56372\n              ],\n              [\n                -122.6835,\n                69.85553\n              ],\n              [\n                -121.47226,\n                69.79778\n              ],\n              [\n                -119.94288,\n                69.37786\n              ],\n              [\n                -117.60268,\n                69.01128\n              ],\n              [\n                -116.22643,\n                68.84151\n              ],\n              [\n                -115.2469,\n                68.90591\n              ],\n              [\n                -113.89794,\n                68.3989\n              ],\n              [\n                -115.30489,\n                67.90261\n              ],\n              [\n                -113.49727,\n                67.68815\n              ],\n              [\n                -110.798,\n                67.80612\n              ],\n              [\n                -109.94619,\n                67.98104\n              ],\n              [\n                -108.8802,\n                67.38144\n              ],\n              [\n                -107.79239,\n                67.88736\n              ],\n              [\n                -108.81299,\n                68.31164\n              ],\n              [\n                -108.16721,\n                68.65392\n              ],\n              [\n                -106.95,\n                68.7\n              ],\n              [\n                -106.15,\n                68.8\n              ],\n              [\n                -105.34282,\n                68.56122\n              ],\n              [\n                -104.33791,\n                68.018\n              ],\n              [\n                -103.22115,\n                68.09775\n              ],\n              [\n                -101.45433,\n                67.64689\n              ],\n              [\n                -99.90195,\n                67.80566\n              ],\n              [\n                -98.4432,\n                67.78165\n              ],\n              [\n                -98.5586,\n                68.40394\n              ],\n              [\n                -97.66948,\n                68.57864\n              ],\n              [\n                -96.11991,\n                68.23939\n              ],\n              [\n                -96.12588,\n                67.29338\n              ],\n              [\n                -95.48943,\n                68.0907\n              ],\n              [\n                -94.685,\n                68.06383\n              ],\n              [\n                -94.23282,\n                69.06903\n              ],\n              [\n                -95.30408,\n                69.68571\n              ],\n              [\n                -96.47131,\n                70.08976\n              ],\n              [\n                -96.39115,\n                71.19482\n              ],\n              [\n                -95.2088,\n                71.92053\n              ],\n              [\n                -93.88997,\n                71.76015\n              ],\n              [\n                -92.87818,\n                71.31869\n              ],\n              [\n                -91.51964,\n                70.19129\n              ],\n              [\n                -92.40692,\n                69.69997\n              ],\n              [\n                -90.5471,\n                69.49766\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -114.16717,\n                73.12145\n              ],\n              [\n                -114.66634,\n                72.65277\n              ],\n              [\n                -112.44102,\n                72.9554\n              ],\n              [\n                -111.05039,\n                72.4504\n              ],\n              [\n                -109.92035,\n                72.96113\n              ],\n              [\n                -109.00654,\n                72.63335\n              ],\n              [\n                -108.18835,\n                71.65089\n              ],\n              [\n                -107.68599,\n                72.06548\n              ],\n              [\n                -108.39639,\n                73.08953\n              ],\n              [\n                -107.51645,\n                73.23598\n              ],\n              [\n                -106.52259,\n                73.07601\n              ],\n              [\n                -105.40246,\n                72.67259\n              ],\n              [\n                -104.77484,\n                71.6984\n              ],\n              [\n                -104.46476,\n                70.99297\n              ],\n              [\n                -102.78537,\n                70.49776\n              ],\n              [\n                -100.98078,\n                70.02432\n              ],\n              [\n                -101.08929,\n                69.58447\n              ],\n              [\n                -102.73116,\n                69.50402\n              ],\n              [\n                -102.09329,\n                69.11962\n              ],\n              [\n                -102.43024,\n                68.75282\n              ],\n              [\n                -104.24,\n                68.91\n              ],\n              [\n                -105.96,\n                69.18\n              ],\n              [\n                -107.12254,\n                69.11922\n              ],\n              [\n                -109,\n                68.78\n              ],\n              [\n                -111.534149,\n                68.630059\n              ],\n              [\n                -113.3132,\n                68.53554\n              ],\n              [\n                -113.85496,\n                69.00744\n              ],\n              [\n                -115.22,\n                69.28\n              ],\n              [\n                -116.10794,\n                69.16821\n              ],\n              [\n                -117.34,\n                69.96\n              ],\n              [\n                -116.67473,\n                70.06655\n              ],\n              [\n                -115.13112,\n                70.2373\n              ],\n              [\n                -113.72141,\n                70.19237\n              ],\n              [\n                -112.4161,\n                70.36638\n              ],\n              [\n                -114.35,\n                70.6\n              ],\n              [\n                -116.48684,\n                70.52045\n              ],\n              [\n                -117.9048,\n                70.54056\n              ],\n              [\n                -118.43238,\n                70.9092\n              ],\n              [\n                -116.11311,\n                71.30918\n              ],\n              [\n                -117.65568,\n                71.2952\n              ],\n              [\n                -119.40199,\n                71.55859\n              ],\n              [\n                -118.56267,\n                72.30785\n              ],\n              [\n                -117.86642,\n                72.70594\n              ],\n              [\n                -115.18909,\n                73.31459\n              ],\n              [\n                -114.16717,\n                73.12145\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -104.5,\n                73.42\n              ],\n              [\n                -105.38,\n                72.76\n              ],\n              [\n                -106.94,\n                73.46\n              ],\n              [\n                -106.6,\n                73.6\n              ],\n              [\n                -105.26,\n                73.64\n              ],\n              [\n                -104.5,\n                73.42\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -76.34,\n                73.102685\n              ],\n              [\n                -76.251404,\n                72.826385\n              ],\n              [\n                -77.314438,\n                72.855545\n              ],\n              [\n                -78.39167,\n                72.876656\n              ],\n              [\n                -79.486252,\n                72.742203\n              ],\n              [\n                -79.775833,\n                72.802902\n              ],\n              [\n                -80.876099,\n                73.333183\n              ],\n              [\n                -80.833885,\n                73.693184\n              ],\n              [\n                -80.353058,\n                73.75972\n              ],\n              [\n                -78.064438,\n                73.651932\n              ],\n              [\n                -76.34,\n                73.102685\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -86.562179,\n                73.157447\n              ],\n              [\n                -85.774371,\n                72.534126\n              ],\n              [\n                -84.850112,\n                73.340278\n              ],\n              [\n                -82.31559,\n                73.750951\n              ],\n              [\n                -80.600088,\n                72.716544\n              ],\n              [\n                -80.748942,\n                72.061907\n              ],\n              [\n                -78.770639,\n                72.352173\n              ],\n              [\n                -77.824624,\n                72.749617\n              ],\n              [\n                -75.605845,\n                72.243678\n              ],\n              [\n                -74.228616,\n                71.767144\n              ],\n              [\n                -74.099141,\n                71.33084\n              ],\n              [\n                -72.242226,\n                71.556925\n              ],\n              [\n                -71.200015,\n                70.920013\n              ],\n              [\n                -68.786054,\n                70.525024\n              ],\n              [\n                -67.91497,\n                70.121948\n              ],\n              [\n                -66.969033,\n                69.186087\n              ],\n              [\n                -68.805123,\n                68.720198\n              ],\n              [\n                -66.449866,\n                68.067163\n              ],\n              [\n                -64.862314,\n                67.847539\n              ],\n              [\n                -63.424934,\n                66.928473\n              ],\n              [\n                -61.851981,\n                66.862121\n              ],\n              [\n                -62.163177,\n                66.160251\n              ],\n              [\n                -63.918444,\n                64.998669\n              ],\n              [\n                -65.14886,\n                65.426033\n              ],\n              [\n                -66.721219,\n                66.388041\n              ],\n              [\n                -68.015016,\n                66.262726\n              ],\n              [\n                -68.141287,\n                65.689789\n              ],\n              [\n                -67.089646,\n                65.108455\n              ],\n              [\n                -65.73208,\n                64.648406\n              ],\n              [\n                -65.320168,\n                64.382737\n              ],\n              [\n                -64.669406,\n                63.392927\n              ],\n              [\n                -65.013804,\n                62.674185\n              ],\n              [\n                -66.275045,\n                62.945099\n              ],\n              [\n                -68.783186,\n                63.74567\n              ],\n              [\n                -67.369681,\n                62.883966\n              ],\n              [\n                -66.328297,\n                62.280075\n              ],\n              [\n                -66.165568,\n                61.930897\n              ],\n              [\n                -68.877367,\n                62.330149\n              ],\n              [\n                -71.023437,\n                62.910708\n              ],\n              [\n                -72.235379,\n                63.397836\n              ],\n              [\n                -71.886278,\n                63.679989\n              ],\n              [\n                -73.378306,\n                64.193963\n              ],\n              [\n                -74.834419,\n                64.679076\n              ],\n              [\n                -74.818503,\n                64.389093\n              ],\n              [\n                -77.70998,\n                64.229542\n              ],\n              [\n                -78.555949,\n                64.572906\n              ],\n              [\n                -77.897281,\n                65.309192\n              ],\n              [\n                -76.018274,\n                65.326969\n              ],\n              [\n                -73.959795,\n                65.454765\n              ],\n              [\n                -74.293883,\n                65.811771\n              ],\n              [\n                -73.944912,\n                66.310578\n              ],\n              [\n                -72.651167,\n                67.284576\n              ],\n              [\n                -72.92606,\n                67.726926\n              ],\n              [\n                -73.311618,\n                68.069437\n              ],\n              [\n                -74.843307,\n                68.554627\n              ],\n              [\n                -76.869101,\n                68.894736\n              ],\n              [\n                -76.228649,\n                69.147769\n              ],\n              [\n                -77.28737,\n                69.76954\n              ],\n              [\n                -78.168634,\n                69.826488\n              ],\n              [\n                -78.957242,\n                70.16688\n              ],\n              [\n                -79.492455,\n                69.871808\n              ],\n              [\n                -81.305471,\n                69.743185\n              ],\n              [\n                -84.944706,\n                69.966634\n              ],\n              [\n                -87.060003,\n                70.260001\n              ],\n              [\n                -88.681713,\n                70.410741\n              ],\n              [\n                -89.51342,\n                70.762038\n              ],\n              [\n                -88.467721,\n                71.218186\n              ],\n              [\n                -89.888151,\n                71.222552\n              ],\n              [\n                -90.20516,\n                72.235074\n              ],\n              [\n                -89.436577,\n                73.129464\n              ],\n              [\n                -88.408242,\n                73.537889\n              ],\n              [\n                -85.826151,\n                73.803816\n              ],\n              [\n                -86.562179,\n                73.157447\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -100.35642,\n                73.84389\n              ],\n              [\n                -99.16387,\n                73.63339\n              ],\n              [\n                -97.38,\n                73.76\n              ],\n              [\n                -97.12,\n                73.47\n              ],\n              [\n                -98.05359,\n                72.99052\n              ],\n              [\n                -96.54,\n                72.56\n              ],\n              [\n                -96.72,\n                71.66\n              ],\n              [\n                -98.35966,\n                71.27285\n              ],\n              [\n                -99.32286,\n                71.35639\n              ],\n              [\n                -100.01482,\n                71.73827\n              ],\n              [\n                -102.5,\n                72.51\n              ],\n              [\n                -102.48,\n                72.83\n              ],\n              [\n                -100.43836,\n                72.70588\n              ],\n              [\n                -101.54,\n                73.36\n              ],\n              [\n                -100.35642,\n                73.84389\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -93.196296,\n                72.771992\n              ],\n              [\n                -94.269047,\n                72.024596\n              ],\n              [\n                -95.409856,\n                72.061881\n              ],\n              [\n                -96.033745,\n                72.940277\n              ],\n              [\n                -96.018268,\n                73.43743\n              ],\n              [\n                -95.495793,\n                73.862417\n              ],\n              [\n                -94.503658,\n                74.134907\n              ],\n              [\n                -92.420012,\n                74.100025\n              ],\n              [\n                -90.509793,\n                73.856732\n              ],\n              [\n                -92.003965,\n                72.966244\n              ],\n              [\n                -93.196296,\n                72.771992\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -120.46,\n                71.383602\n              ],\n              [\n                -123.09219,\n                70.90164\n              ],\n              [\n                -123.62,\n                71.34\n              ],\n              [\n                -125.928949,\n                71.868688\n              ],\n              [\n                -125.5,\n                72.292261\n              ],\n              [\n                -124.80729,\n                73.02256\n              ],\n              [\n                -123.94,\n                73.68\n              ],\n              [\n                -124.91775,\n                74.29275\n              ],\n              [\n                -121.53788,\n                74.44893\n              ],\n              [\n                -120.10978,\n                74.24135\n              ],\n              [\n                -117.55564,\n                74.18577\n              ],\n              [\n                -116.58442,\n                73.89607\n              ],\n              [\n                -115.51081,\n                73.47519\n              ],\n              [\n                -116.76794,\n                73.22292\n              ],\n              [\n                -119.22,\n                72.52\n              ],\n              [\n                -120.46,\n                71.82\n              ],\n              [\n                -120.46,\n                71.383602\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -93.612756,\n                74.979997\n              ],\n              [\n                -94.156909,\n                74.592347\n              ],\n              [\n                -95.608681,\n                74.666864\n              ],\n              [\n                -96.820932,\n                74.927623\n              ],\n              [\n                -96.288587,\n                75.377828\n              ],\n              [\n                -94.85082,\n                75.647218\n              ],\n              [\n                -93.977747,\n                75.29649\n              ],\n              [\n                -93.612756,\n                74.979997\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -98.5,\n                76.72\n              ],\n              [\n                -97.735585,\n                76.25656\n              ],\n              [\n                -97.704415,\n                75.74344\n              ],\n              [\n                -98.16,\n                75\n              ],\n              [\n                -99.80874,\n                74.89744\n              ],\n              [\n                -100.88366,\n                75.05736\n              ],\n              [\n                -100.86292,\n                75.64075\n              ],\n              [\n                -102.50209,\n                75.5638\n              ],\n              [\n                -102.56552,\n                76.3366\n              ],\n              [\n                -101.48973,\n                76.30537\n              ],\n              [\n                -99.98349,\n                76.64634\n              ],\n              [\n                -98.57699,\n                76.58859\n              ],\n              [\n                -98.5,\n                76.72\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -108.21141,\n                76.20168\n              ],\n              [\n                -107.81943,\n                75.84552\n              ],\n              [\n                -106.92893,\n                76.01282\n              ],\n              [\n                -105.881,\n                75.9694\n              ],\n              [\n                -105.70498,\n                75.47951\n              ],\n              [\n                -106.31347,\n                75.00527\n              ],\n              [\n                -109.7,\n                74.85\n              ],\n              [\n                -112.22307,\n                74.41696\n              ],\n              [\n                -113.74381,\n                74.39427\n              ],\n              [\n                -113.87135,\n                74.72029\n              ],\n              [\n                -111.79421,\n                75.1625\n              ],\n              [\n                -116.31221,\n                75.04343\n              ],\n              [\n                -117.7104,\n                75.2222\n              ],\n              [\n                -116.34602,\n                76.19903\n              ],\n              [\n                -115.40487,\n                76.47887\n              ],\n              [\n                -112.59056,\n                76.14134\n              ],\n              [\n                -110.81422,\n                75.54919\n              ],\n              [\n                -109.0671,\n                75.47321\n              ],\n              [\n                -110.49726,\n                76.42982\n              ],\n              [\n                -109.5811,\n                76.79417\n              ],\n              [\n                -108.54859,\n                76.67832\n              ],\n              [\n                -108.21141,\n                76.20168\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -94.684086,\n                77.097878\n              ],\n              [\n                -93.573921,\n                76.776296\n              ],\n              [\n                -91.605023,\n                76.778518\n              ],\n              [\n                -90.741846,\n                76.449597\n              ],\n              [\n                -90.969661,\n                76.074013\n              ],\n              [\n                -89.822238,\n                75.847774\n              ],\n              [\n                -89.187083,\n                75.610166\n              ],\n              [\n                -87.838276,\n                75.566189\n              ],\n              [\n                -86.379192,\n                75.482421\n              ],\n              [\n                -84.789625,\n                75.699204\n              ],\n              [\n                -82.753445,\n                75.784315\n              ],\n              [\n                -81.128531,\n                75.713983\n              ],\n              [\n                -80.057511,\n                75.336849\n              ],\n              [\n                -79.833933,\n                74.923127\n              ],\n              [\n                -80.457771,\n                74.657304\n              ],\n              [\n                -81.948843,\n                74.442459\n              ],\n              [\n                -83.228894,\n                74.564028\n              ],\n              [\n                -86.097452,\n                74.410032\n              ],\n              [\n                -88.15035,\n                74.392307\n              ],\n              [\n                -89.764722,\n                74.515555\n              ],\n              [\n                -92.422441,\n                74.837758\n              ],\n              [\n                -92.768285,\n                75.38682\n              ],\n              [\n                -92.889906,\n                75.882655\n              ],\n              [\n                -93.893824,\n                76.319244\n              ],\n              [\n                -95.962457,\n                76.441381\n              ],\n              [\n                -97.121379,\n                76.751078\n              ],\n              [\n                -96.745123,\n                77.161389\n              ],\n              [\n                -94.684086,\n                77.097878\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -116.198587,\n                77.645287\n              ],\n              [\n                -116.335813,\n                76.876962\n              ],\n              [\n                -117.106051,\n                76.530032\n              ],\n              [\n                -118.040412,\n                76.481172\n              ],\n              [\n                -119.899318,\n                76.053213\n              ],\n              [\n                -121.499995,\n                75.900019\n              ],\n              [\n                -122.854924,\n                76.116543\n              ],\n              [\n                -122.854925,\n                76.116543\n              ],\n              [\n                -121.157535,\n                76.864508\n              ],\n              [\n                -119.103939,\n                77.51222\n              ],\n              [\n                -117.570131,\n                77.498319\n              ],\n              [\n                -116.198587,\n                77.645287\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -93.840003,\n                77.519997\n              ],\n              [\n                -94.295608,\n                77.491343\n              ],\n              [\n                -96.169654,\n                77.555111\n              ],\n              [\n                -96.436304,\n                77.834629\n              ],\n              [\n                -94.422577,\n                77.820005\n              ],\n              [\n                -93.720656,\n                77.634331\n              ],\n              [\n                -93.840003,\n                77.519997\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -110.186938,\n                77.697015\n              ],\n              [\n                -112.051191,\n                77.409229\n              ],\n              [\n                -113.534279,\n                77.732207\n              ],\n              [\n                -112.724587,\n                78.05105\n              ],\n              [\n                -111.264443,\n                78.152956\n              ],\n              [\n                -109.854452,\n                77.996325\n              ],\n              [\n                -110.186938,\n                77.697015\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -109.663146,\n                78.601973\n              ],\n              [\n                -110.881314,\n                78.40692\n              ],\n              [\n                -112.542091,\n                78.407902\n              ],\n              [\n                -112.525891,\n                78.550555\n              ],\n              [\n                -111.50001,\n                78.849994\n              ],\n              [\n                -110.963661,\n                78.804441\n              ],\n              [\n                -109.663146,\n                78.601973\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -95.830295,\n                78.056941\n              ],\n              [\n                -97.309843,\n                77.850597\n              ],\n              [\n                -98.124289,\n                78.082857\n              ],\n              [\n                -98.552868,\n                78.458105\n              ],\n              [\n                -98.631984,\n                78.87193\n              ],\n              [\n                -97.337231,\n                78.831984\n              ],\n              [\n                -96.754399,\n                78.765813\n              ],\n              [\n                -95.559278,\n                78.418315\n              ],\n              [\n                -95.830295,\n                78.056941\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -100.060192,\n                78.324754\n              ],\n              [\n                -99.670939,\n                77.907545\n              ],\n              [\n                -101.30394,\n                78.018985\n              ],\n              [\n                -102.949809,\n                78.343229\n              ],\n              [\n                -105.176133,\n                78.380332\n              ],\n              [\n                -104.210429,\n                78.67742\n              ],\n              [\n                -105.41958,\n                78.918336\n              ],\n              [\n                -105.492289,\n                79.301594\n              ],\n              [\n                -103.529282,\n                79.165349\n              ],\n              [\n                -100.825158,\n                78.800462\n              ],\n              [\n                -100.060192,\n                78.324754\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -87.02,\n                79.66\n              ],\n              [\n                -85.81435,\n                79.3369\n              ],\n              [\n                -87.18756,\n                79.0393\n              ],\n              [\n                -89.03535,\n                78.28723\n              ],\n              [\n                -90.80436,\n                78.21533\n              ],\n              [\n                -92.87669,\n                78.34333\n              ],\n              [\n                -93.95116,\n                78.75099\n              ],\n              [\n                -93.93574,\n                79.11373\n              ],\n              [\n                -93.14524,\n                79.3801\n              ],\n              [\n                -94.974,\n                79.37248\n              ],\n              [\n                -96.07614,\n                79.70502\n              ],\n              [\n                -96.70972,\n                80.15777\n              ],\n              [\n                -96.01644,\n                80.60233\n              ],\n              [\n                -95.32345,\n                80.90729\n              ],\n              [\n                -94.29843,\n                80.97727\n              ],\n              [\n                -94.73542,\n                81.20646\n              ],\n              [\n                -92.40984,\n                81.25739\n              ],\n              [\n                -91.13289,\n                80.72345\n              ],\n              [\n                -89.45,\n                80.509322\n              ],\n              [\n                -87.81,\n                80.32\n              ],\n              [\n                -87.02,\n                79.66\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -68.5,\n                83.106322\n              ],\n              [\n                -65.82735,\n                83.02801\n              ],\n              [\n                -63.68,\n                82.9\n              ],\n              [\n                -61.85,\n                82.6286\n              ],\n              [\n                -61.89388,\n                82.36165\n              ],\n              [\n                -64.334,\n                81.92775\n              ],\n              [\n                -66.75342,\n                81.72527\n              ],\n              [\n                -67.65755,\n                81.50141\n              ],\n              [\n                -65.48031,\n                81.50657\n              ],\n              [\n                -67.84,\n                80.9\n              ],\n              [\n                -69.4697,\n                80.61683\n              ],\n              [\n                -71.18,\n                79.8\n              ],\n              [\n                -73.2428,\n                79.63415\n              ],\n              [\n                -73.88,\n                79.430162\n              ],\n              [\n                -76.90773,\n                79.32309\n              ],\n              [\n                -75.52924,\n                79.19766\n              ],\n              [\n                -76.22046,\n                79.01907\n              ],\n              [\n                -75.39345,\n                78.52581\n              ],\n              [\n                -76.34354,\n                78.18296\n              ],\n              [\n                -77.88851,\n                77.89991\n              ],\n              [\n                -78.36269,\n                77.50859\n              ],\n              [\n                -79.75951,\n                77.20968\n              ],\n              [\n                -79.61965,\n                76.98336\n              ],\n              [\n                -77.91089,\n                77.022045\n              ],\n              [\n                -77.88911,\n                76.777955\n              ],\n              [\n                -80.56125,\n                76.17812\n              ],\n              [\n                -83.17439,\n                76.45403\n              ],\n              [\n                -86.11184,\n                76.29901\n              ],\n              [\n                -87.6,\n                76.42\n              ],\n              [\n                -89.49068,\n                76.47239\n              ],\n              [\n                -89.6161,\n                76.95213\n              ],\n              [\n                -87.76739,\n                77.17833\n              ],\n              [\n                -88.26,\n                77.9\n              ],\n              [\n                -87.65,\n                77.970222\n              ],\n              [\n                -84.97634,\n                77.53873\n              ],\n              [\n                -86.34,\n                78.18\n              ],\n              [\n                -87.96192,\n                78.37181\n              ],\n              [\n                -87.15198,\n                78.75867\n              ],\n              [\n                -85.37868,\n                78.9969\n              ],\n              [\n                -85.09495,\n                79.34543\n              ],\n              [\n                -86.50734,\n                79.73624\n              ],\n              [\n                -86.93179,\n                80.25145\n              ],\n              [\n                -84.19844,\n                80.20836\n              ],\n              [\n                -83.408696,\n                80.1\n              ],\n              [\n                -81.84823,\n                80.46442\n              ],\n              [\n                -84.1,\n                80.58\n              ],\n              [\n                -87.59895,\n                80.51627\n              ],\n              [\n                -89.36663,\n                80.85569\n              ],\n              [\n                -90.2,\n                81.26\n              ],\n              [\n                -91.36786,\n                81.5531\n              ],\n              [\n                -91.58702,\n                81.89429\n              ],\n              [\n                -90.1,\n                82.085\n              ],\n              [\n                -88.93227,\n                82.11751\n              ],\n              [\n                -86.97024,\n                82.27961\n              ],\n              [\n                -85.5,\n                82.652273\n              ],\n              [\n                -84.260005,\n                82.6\n              ],\n              [\n                -83.18,\n                82.32\n              ],\n              [\n                -82.42,\n                82.86\n              ],\n              [\n                -81.1,\n                83.02\n              ],\n              [\n                -79.30664,\n                83.13056\n              ],\n              [\n                -76.25,\n                83.172059\n              ],\n              [\n                -75.71878,\n                83.06404\n              ],\n              [\n                -72.83153,\n                83.23324\n              ],\n              [\n                -70.665765,\n                83.169781\n              ],\n              [\n                -68.5,\n                83.106322\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CHE.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CHE\",\"properties\":{\"name\":\"Switzerland\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[9.594226,47.525058],[9.632932,47.347601],[9.47997,47.10281],[9.932448,46.920728],[10.442701,46.893546],[10.363378,46.483571],[9.922837,46.314899],[9.182882,46.440215],[8.966306,46.036932],[8.489952,46.005151],[8.31663,46.163642],[7.755992,45.82449],[7.273851,45.776948],[6.843593,45.991147],[6.5001,46.429673],[6.022609,46.27299],[6.037389,46.725779],[6.768714,47.287708],[6.736571,47.541801],[7.192202,47.449766],[7.466759,47.620582],[8.317301,47.61358],[8.522612,47.830828],[9.594226,47.525058]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CHE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              45.08903556\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              5.625,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              9.594226,\n              47.525058\n            ],\n            [\n              9.632932,\n              47.347601\n            ],\n            [\n              9.47997,\n              47.10281\n            ],\n            [\n              9.932448,\n              46.920728\n            ],\n            [\n              10.442701,\n              46.893546\n            ],\n            [\n              10.363378,\n              46.483571\n            ],\n            [\n              9.922837,\n              46.314899\n            ],\n            [\n              9.182882,\n              46.440215\n            ],\n            [\n              8.966306,\n              46.036932\n            ],\n            [\n              8.489952,\n              46.005151\n            ],\n            [\n              8.31663,\n              46.163642\n            ],\n            [\n              7.755992,\n              45.82449\n            ],\n            [\n              7.273851,\n              45.776948\n            ],\n            [\n              6.843593,\n              45.991147\n            ],\n            [\n              6.5001,\n              46.429673\n            ],\n            [\n              6.022609,\n              46.27299\n            ],\n            [\n              6.037389,\n              46.725779\n            ],\n            [\n              6.768714,\n              47.287708\n            ],\n            [\n              6.736571,\n              47.541801\n            ],\n            [\n              7.192202,\n              47.449766\n            ],\n            [\n              7.466759,\n              47.620582\n            ],\n            [\n              8.317301,\n              47.61358\n            ],\n            [\n              8.522612,\n              47.830828\n            ],\n            [\n              9.594226,\n              47.525058\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CHL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CHL\",\"properties\":{\"name\":\"Chile\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-68.63401,-52.63637],[-68.63335,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29103,-55.30124],[-68.14863,-55.61183],[-68.639991,-55.580018],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95752],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59178,-53.61583],[-70.26748,-52.93123],[-69.34565,-52.5183],[-68.63401,-52.63637]]],[[[-68.219913,-21.494347],[-67.82818,-22.872919],[-67.106674,-22.735925],[-66.985234,-22.986349],[-67.328443,-24.025303],[-68.417653,-24.518555],[-68.386001,-26.185016],[-68.5948,-26.506909],[-68.295542,-26.89934],[-69.001235,-27.521214],[-69.65613,-28.459141],[-70.01355,-29.367923],[-69.919008,-30.336339],[-70.535069,-31.36501],[-70.074399,-33.09121],[-69.814777,-33.273886],[-69.817309,-34.193571],[-70.388049,-35.169688],[-70.364769,-36.005089],[-71.121881,-36.658124],[-71.118625,-37.576827],[-70.814664,-38.552995],[-71.413517,-38.916022],[-71.680761,-39.808164],[-71.915734,-40.832339],[-71.746804,-42.051386],[-72.148898,-42.254888],[-71.915424,-43.408565],[-71.464056,-43.787611],[-71.793623,-44.207172],[-71.329801,-44.407522],[-71.222779,-44.784243],[-71.659316,-44.973689],[-71.552009,-45.560733],[-71.917258,-46.884838],[-72.447355,-47.738533],[-72.331161,-48.244238],[-72.648247,-48.878618],[-73.415436,-49.318436],[-73.328051,-50.378785],[-72.975747,-50.74145],[-72.309974,-50.67701],[-72.329404,-51.425956],[-71.914804,-52.009022],[-69.498362,-52.142761],[-68.571545,-52.299444],[-69.461284,-52.291951],[-69.94278,-52.537931],[-70.845102,-52.899201],[-71.006332,-53.833252],[-71.429795,-53.856455],[-72.557943,-53.53141],[-73.702757,-52.835069],[-73.702757,-52.83507],[-74.946763,-52.262754],[-75.260026,-51.629355],[-74.976632,-51.043396],[-75.479754,-50.378372],[-75.608015,-48.673773],[-75.18277,-47.711919],[-74.126581,-46.939253],[-75.644395,-46.647643],[-74.692154,-45.763976],[-74.351709,-44.103044],[-73.240356,-44.454961],[-72.717804,-42.383356],[-73.3889,-42.117532],[-73.701336,-43.365776],[-74.331943,-43.224958],[-74.017957,-41.794813],[-73.677099,-39.942213],[-73.217593,-39.258689],[-73.505559,-38.282883],[-73.588061,-37.156285],[-73.166717,-37.12378],[-72.553137,-35.50884],[-71.861732,-33.909093],[-71.43845,-32.418899],[-71.668721,-30.920645],[-71.370083,-30.095682],[-71.489894,-28.861442],[-70.905124,-27.64038],[-70.724954,-25.705924],[-70.403966,-23.628997],[-70.091246,-21.393319],[-70.16442,-19.756468],[-70.372572,-18.347975],[-69.858444,-18.092694],[-69.590424,-17.580012],[-69.100247,-18.260125],[-68.966818,-18.981683],[-68.442225,-19.405068],[-68.757167,-20.372658],[-68.219913,-21.494347]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CHL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -55.77657302\n            ],\n            [\n              -67.5,\n              -52.48278022\n            ],\n            [\n              -61.875,\n              -52.48278022\n            ],\n            [\n              -61.875,\n              -55.77657302\n            ],\n            [\n              -67.5,\n              -55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -21.94304553\n            ],\n            [\n              -73.125,\n              -16.63619188\n            ],\n            [\n              -67.5,\n              -16.63619188\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -73.125,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -27.05912578\n            ],\n            [\n              -73.125,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -27.05912578\n            ],\n            [\n              -73.125,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -31.95216224\n            ],\n            [\n              -73.125,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -31.95216224\n            ],\n            [\n              -73.125,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -36.59788913\n            ],\n            [\n              -73.125,\n              -31.95216224\n            ],\n            [\n              -67.5,\n              -31.95216224\n            ],\n            [\n              -67.5,\n              -36.59788913\n            ],\n            [\n              -73.125,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -40.97989807\n            ],\n            [\n              -73.125,\n              -36.59788913\n            ],\n            [\n              -67.5,\n              -36.59788913\n            ],\n            [\n              -67.5,\n              -40.97989807\n            ],\n            [\n              -73.125,\n              -40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -40.97989807\n            ],\n            [\n              -78.75,\n              -36.59788913\n            ],\n            [\n              -73.125,\n              -36.59788913\n            ],\n            [\n              -73.125,\n              -40.97989807\n            ],\n            [\n              -78.75,\n              -40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -48.92249926\n            ],\n            [\n              -78.75,\n              -40.97989807\n            ],\n            [\n              -67.5,\n              -40.97989807\n            ],\n            [\n              -67.5,\n              -48.92249926\n            ],\n            [\n              -78.75,\n              -48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -55.77657302\n            ],\n            [\n              -78.75,\n              -48.92249926\n            ],\n            [\n              -67.5,\n              -48.92249926\n            ],\n            [\n              -67.5,\n              -55.77657302\n            ],\n            [\n              -78.75,\n              -55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                -68.63401,\n                -52.63637\n              ],\n              [\n                -68.63335,\n                -54.8695\n              ],\n              [\n                -67.56244,\n                -54.87001\n              ],\n              [\n                -66.95992,\n                -54.89681\n              ],\n              [\n                -67.29103,\n                -55.30124\n              ],\n              [\n                -68.14863,\n                -55.61183\n              ],\n              [\n                -68.639991,\n                -55.580018\n              ],\n              [\n                -69.2321,\n                -55.49906\n              ],\n              [\n                -69.95809,\n                -55.19843\n              ],\n              [\n                -71.00568,\n                -55.05383\n              ],\n              [\n                -72.2639,\n                -54.49514\n              ],\n              [\n                -73.2852,\n                -53.95752\n              ],\n              [\n                -74.66253,\n                -52.83749\n              ],\n              [\n                -73.8381,\n                -53.04743\n              ],\n              [\n                -72.43418,\n                -53.7154\n              ],\n              [\n                -71.10773,\n                -54.07433\n              ],\n              [\n                -70.59178,\n                -53.61583\n              ],\n              [\n                -70.26748,\n                -52.93123\n              ],\n              [\n                -69.34565,\n                -52.5183\n              ],\n              [\n                -68.63401,\n                -52.63637\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -68.219913,\n                -21.494347\n              ],\n              [\n                -67.82818,\n                -22.872919\n              ],\n              [\n                -67.106674,\n                -22.735925\n              ],\n              [\n                -66.985234,\n                -22.986349\n              ],\n              [\n                -67.328443,\n                -24.025303\n              ],\n              [\n                -68.417653,\n                -24.518555\n              ],\n              [\n                -68.386001,\n                -26.185016\n              ],\n              [\n                -68.5948,\n                -26.506909\n              ],\n              [\n                -68.295542,\n                -26.89934\n              ],\n              [\n                -69.001235,\n                -27.521214\n              ],\n              [\n                -69.65613,\n                -28.459141\n              ],\n              [\n                -70.01355,\n                -29.367923\n              ],\n              [\n                -69.919008,\n                -30.336339\n              ],\n              [\n                -70.535069,\n                -31.36501\n              ],\n              [\n                -70.074399,\n                -33.09121\n              ],\n              [\n                -69.814777,\n                -33.273886\n              ],\n              [\n                -69.817309,\n                -34.193571\n              ],\n              [\n                -70.388049,\n                -35.169688\n              ],\n              [\n                -70.364769,\n                -36.005089\n              ],\n              [\n                -71.121881,\n                -36.658124\n              ],\n              [\n                -71.118625,\n                -37.576827\n              ],\n              [\n                -70.814664,\n                -38.552995\n              ],\n              [\n                -71.413517,\n                -38.916022\n              ],\n              [\n                -71.680761,\n                -39.808164\n              ],\n              [\n                -71.915734,\n                -40.832339\n              ],\n              [\n                -71.746804,\n                -42.051386\n              ],\n              [\n                -72.148898,\n                -42.254888\n              ],\n              [\n                -71.915424,\n                -43.408565\n              ],\n              [\n                -71.464056,\n                -43.787611\n              ],\n              [\n                -71.793623,\n                -44.207172\n              ],\n              [\n                -71.329801,\n                -44.407522\n              ],\n              [\n                -71.222779,\n                -44.784243\n              ],\n              [\n                -71.659316,\n                -44.973689\n              ],\n              [\n                -71.552009,\n                -45.560733\n              ],\n              [\n                -71.917258,\n                -46.884838\n              ],\n              [\n                -72.447355,\n                -47.738533\n              ],\n              [\n                -72.331161,\n                -48.244238\n              ],\n              [\n                -72.648247,\n                -48.878618\n              ],\n              [\n                -73.415436,\n                -49.318436\n              ],\n              [\n                -73.328051,\n                -50.378785\n              ],\n              [\n                -72.975747,\n                -50.74145\n              ],\n              [\n                -72.309974,\n                -50.67701\n              ],\n              [\n                -72.329404,\n                -51.425956\n              ],\n              [\n                -71.914804,\n                -52.009022\n              ],\n              [\n                -69.498362,\n                -52.142761\n              ],\n              [\n                -68.571545,\n                -52.299444\n              ],\n              [\n                -69.461284,\n                -52.291951\n              ],\n              [\n                -69.94278,\n                -52.537931\n              ],\n              [\n                -70.845102,\n                -52.899201\n              ],\n              [\n                -71.006332,\n                -53.833252\n              ],\n              [\n                -71.429795,\n                -53.856455\n              ],\n              [\n                -72.557943,\n                -53.53141\n              ],\n              [\n                -73.702757,\n                -52.835069\n              ],\n              [\n                -73.702757,\n                -52.83507\n              ],\n              [\n                -74.946763,\n                -52.262754\n              ],\n              [\n                -75.260026,\n                -51.629355\n              ],\n              [\n                -74.976632,\n                -51.043396\n              ],\n              [\n                -75.479754,\n                -50.378372\n              ],\n              [\n                -75.608015,\n                -48.673773\n              ],\n              [\n                -75.18277,\n                -47.711919\n              ],\n              [\n                -74.126581,\n                -46.939253\n              ],\n              [\n                -75.644395,\n                -46.647643\n              ],\n              [\n                -74.692154,\n                -45.763976\n              ],\n              [\n                -74.351709,\n                -44.103044\n              ],\n              [\n                -73.240356,\n                -44.454961\n              ],\n              [\n                -72.717804,\n                -42.383356\n              ],\n              [\n                -73.3889,\n                -42.117532\n              ],\n              [\n                -73.701336,\n                -43.365776\n              ],\n              [\n                -74.331943,\n                -43.224958\n              ],\n              [\n                -74.017957,\n                -41.794813\n              ],\n              [\n                -73.677099,\n                -39.942213\n              ],\n              [\n                -73.217593,\n                -39.258689\n              ],\n              [\n                -73.505559,\n                -38.282883\n              ],\n              [\n                -73.588061,\n                -37.156285\n              ],\n              [\n                -73.166717,\n                -37.12378\n              ],\n              [\n                -72.553137,\n                -35.50884\n              ],\n              [\n                -71.861732,\n                -33.909093\n              ],\n              [\n                -71.43845,\n                -32.418899\n              ],\n              [\n                -71.668721,\n                -30.920645\n              ],\n              [\n                -71.370083,\n                -30.095682\n              ],\n              [\n                -71.489894,\n                -28.861442\n              ],\n              [\n                -70.905124,\n                -27.64038\n              ],\n              [\n                -70.724954,\n                -25.705924\n              ],\n              [\n                -70.403966,\n                -23.628997\n              ],\n              [\n                -70.091246,\n                -21.393319\n              ],\n              [\n                -70.16442,\n                -19.756468\n              ],\n              [\n                -70.372572,\n                -18.347975\n              ],\n              [\n                -69.858444,\n                -18.092694\n              ],\n              [\n                -69.590424,\n                -17.580012\n              ],\n              [\n                -69.100247,\n                -18.260125\n              ],\n              [\n                -68.966818,\n                -18.981683\n              ],\n              [\n                -68.442225,\n                -19.405068\n              ],\n              [\n                -68.757167,\n                -20.372658\n              ],\n              [\n                -68.219913,\n                -21.494347\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CHN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CHN\",\"properties\":{\"name\":\"China\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[110.339188,18.678395],[109.47521,18.197701],[108.655208,18.507682],[108.626217,19.367888],[109.119056,19.821039],[110.211599,20.101254],[110.786551,20.077534],[111.010051,19.69593],[110.570647,19.255879],[110.339188,18.678395]]],[[[127.657407,49.76027],[129.397818,49.4406],[130.582293,48.729687],[130.987282,47.790132],[132.506672,47.78897],[133.373596,48.183442],[135.026311,48.47823],[134.500814,47.57844],[134.112362,47.212467],[133.769644,46.116927],[133.097127,45.144066],[131.883454,45.321162],[131.025212,44.967953],[131.288555,44.11152],[131.144688,42.92999],[130.633866,42.903015],[130.640016,42.395009],[129.994267,42.985387],[129.596669,42.424982],[128.052215,41.994285],[128.208433,41.466772],[127.343783,41.503152],[126.869083,41.816569],[126.182045,41.107336],[125.079942,40.569824],[124.265625,39.928493],[122.86757,39.637788],[122.131388,39.170452],[121.054554,38.897471],[121.585995,39.360854],[121.376757,39.750261],[122.168595,40.422443],[121.640359,40.94639],[120.768629,40.593388],[119.639602,39.898056],[119.023464,39.252333],[118.042749,39.204274],[117.532702,38.737636],[118.059699,38.061476],[118.87815,37.897325],[118.911636,37.448464],[119.702802,37.156389],[120.823457,37.870428],[121.711259,37.481123],[122.357937,37.454484],[122.519995,36.930614],[121.104164,36.651329],[120.637009,36.11144],[119.664562,35.609791],[119.151208,34.909859],[120.227525,34.360332],[120.620369,33.376723],[121.229014,32.460319],[121.908146,31.692174],[121.891919,30.949352],[121.264257,30.676267],[121.503519,30.142915],[122.092114,29.83252],[121.938428,29.018022],[121.684439,28.225513],[121.125661,28.135673],[120.395473,27.053207],[119.585497,25.740781],[118.656871,24.547391],[117.281606,23.624501],[115.890735,22.782873],[114.763827,22.668074],[114.152547,22.22376],[113.80678,22.54834],[113.241078,22.051367],[111.843592,21.550494],[110.785466,21.397144],[110.444039,20.341033],[109.889861,20.282457],[109.627655,21.008227],[109.864488,21.395051],[108.522813,21.715212],[108.05018,21.55238],[107.04342,21.811899],[106.567273,22.218205],[106.725403,22.794268],[105.811247,22.976892],[105.329209,23.352063],[104.476858,22.81915],[103.504515,22.703757],[102.706992,22.708795],[102.170436,22.464753],[101.652018,22.318199],[101.80312,21.174367],[101.270026,21.201652],[101.180005,21.436573],[101.150033,21.849984],[100.416538,21.558839],[99.983489,21.742937],[99.240899,22.118314],[99.531992,22.949039],[98.898749,23.142722],[98.660262,24.063286],[97.60472,23.897405],[97.724609,25.083637],[98.671838,25.918703],[98.712094,26.743536],[98.68269,27.508812],[98.246231,27.747221],[97.911988,28.335945],[97.327114,28.261583],[96.248833,28.411031],[96.586591,28.83098],[96.117679,29.452802],[95.404802,29.031717],[94.56599,29.277438],[93.413348,28.640629],[92.503119,27.896876],[91.696657,27.771742],[91.258854,28.040614],[90.730514,28.064954],[90.015829,28.296439],[89.47581,28.042759],[88.814248,27.299316],[88.730326,28.086865],[88.120441,27.876542],[86.954517,27.974262],[85.82332,28.203576],[85.011638,28.642774],[84.23458,28.839894],[83.898993,29.320226],[83.337115,29.463732],[82.327513,30.115268],[81.525804,30.422717],[81.111256,30.183481],[79.721367,30.882715],[78.738894,31.515906],[78.458446,32.618164],[79.176129,32.48378],[79.208892,32.994395],[78.811086,33.506198],[78.912269,34.321936],[77.837451,35.49401],[76.192848,35.898403],[75.896897,36.666806],[75.158028,37.133031],[74.980002,37.41999],[74.829986,37.990007],[74.864816,38.378846],[74.257514,38.606507],[73.928852,38.505815],[73.675379,39.431237],[73.960013,39.660008],[73.822244,39.893973],[74.776862,40.366425],[75.467828,40.562072],[76.526368,40.427946],[76.904484,41.066486],[78.187197,41.185316],[78.543661,41.582243],[80.11943,42.123941],[80.25999,42.349999],[80.18015,42.920068],[80.866206,43.180362],[79.966106,44.917517],[81.947071,45.317027],[82.458926,45.53965],[83.180484,47.330031],[85.16429,47.000956],[85.720484,47.452969],[85.768233,48.455751],[86.598776,48.549182],[87.35997,49.214981],[87.751264,49.297198],[88.013832,48.599463],[88.854298,48.069082],[90.280826,47.693549],[90.970809,46.888146],[90.585768,45.719716],[90.94554,45.286073],[92.133891,45.115076],[93.480734,44.975472],[94.688929,44.352332],[95.306875,44.241331],[95.762455,43.319449],[96.349396,42.725635],[97.451757,42.74889],[99.515817,42.524691],[100.845866,42.663804],[101.83304,42.514873],[103.312278,41.907468],[104.522282,41.908347],[104.964994,41.59741],[106.129316,42.134328],[107.744773,42.481516],[109.243596,42.519446],[110.412103,42.871234],[111.129682,43.406834],[111.829588,43.743118],[111.667737,44.073176],[111.348377,44.457442],[111.873306,45.102079],[112.436062,45.011646],[113.463907,44.808893],[114.460332,45.339817],[115.985096,45.727235],[116.717868,46.388202],[117.421701,46.672733],[118.874326,46.805412],[119.66327,46.69268],[119.772824,47.048059],[118.866574,47.74706],[118.064143,48.06673],[117.295507,47.697709],[116.308953,47.85341],[115.742837,47.726545],[115.485282,48.135383],[116.191802,49.134598],[116.678801,49.888531],[117.879244,49.510983],[119.288461,50.142883],[119.279366,50.582908],[120.18205,51.643566],[120.738191,51.964115],[120.725789,52.516226],[120.177089,52.753886],[121.003085,53.251401],[122.245748,53.431726],[123.571507,53.458804],[125.068211,53.161045],[125.946349,52.792799],[126.564399,51.784255],[126.939157,51.353894],[127.287456,50.739797],[127.657407,49.76027]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CHN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              106.875,\n              21.94304553\n            ],\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              101.25,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              101.25,\n              31.95216224\n            ],\n            [\n              112.5,\n              31.95216224\n            ],\n            [\n              112.5,\n              21.94304553\n            ],\n            [\n              101.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              31.95216224\n            ],\n            [\n              101.25,\n              40.97989807\n            ],\n            [\n              112.5,\n              40.97989807\n            ],\n            [\n              112.5,\n              31.95216224\n            ],\n            [\n              101.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              40.97989807\n            ],\n            [\n              101.25,\n              45.08903556\n            ],\n            [\n              106.875,\n              45.08903556\n            ],\n            [\n              106.875,\n              40.97989807\n            ],\n            [\n              101.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              106.875,\n              21.94304553\n            ],\n            [\n              112.5,\n              21.94304553\n            ],\n            [\n              112.5,\n              16.63619188\n            ],\n            [\n              106.875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              40.97989807\n            ],\n            [\n              106.875,\n              45.08903556\n            ],\n            [\n              112.5,\n              45.08903556\n            ],\n            [\n              112.5,\n              40.97989807\n            ],\n            [\n              106.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              45.08903556\n            ],\n            [\n              106.875,\n              48.92249926\n            ],\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              112.5,\n              45.08903556\n            ],\n            [\n              106.875,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              16.63619188\n            ],\n            [\n              112.5,\n              21.94304553\n            ],\n            [\n              118.125,\n              21.94304553\n            ],\n            [\n              118.125,\n              16.63619188\n            ],\n            [\n              112.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              21.94304553\n            ],\n            [\n              112.5,\n              31.95216224\n            ],\n            [\n              123.75,\n              31.95216224\n            ],\n            [\n              123.75,\n              21.94304553\n            ],\n            [\n              112.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              31.95216224\n            ],\n            [\n              112.5,\n              40.97989807\n            ],\n            [\n              123.75,\n              40.97989807\n            ],\n            [\n              123.75,\n              31.95216224\n            ],\n            [\n              112.5,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              40.97989807\n            ],\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              123.75,\n              40.97989807\n            ],\n            [\n              112.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              112.5,\n              52.48278022\n            ],\n            [\n              118.125,\n              52.48278022\n            ],\n            [\n              118.125,\n              48.92249926\n            ],\n            [\n              112.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              48.92249926\n            ],\n            [\n              118.125,\n              52.48278022\n            ],\n            [\n              123.75,\n              52.48278022\n            ],\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              118.125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              52.48278022\n            ],\n            [\n              118.125,\n              55.77657302\n            ],\n            [\n              123.75,\n              55.77657302\n            ],\n            [\n              123.75,\n              52.48278022\n            ],\n            [\n              118.125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              36.59788913\n            ],\n            [\n              123.75,\n              40.97989807\n            ],\n            [\n              129.375,\n              40.97989807\n            ],\n            [\n              129.375,\n              36.59788913\n            ],\n            [\n              123.75,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              40.97989807\n            ],\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              135,\n              40.97989807\n            ],\n            [\n              123.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              123.75,\n              52.48278022\n            ],\n            [\n              129.375,\n              52.48278022\n            ],\n            [\n              129.375,\n              48.92249926\n            ],\n            [\n              123.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              52.48278022\n            ],\n            [\n              123.75,\n              55.77657302\n            ],\n            [\n              129.375,\n              55.77657302\n            ],\n            [\n              129.375,\n              52.48278022\n            ],\n            [\n              123.75,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              48.92249926\n            ],\n            [\n              129.375,\n              52.48278022\n            ],\n            [\n              135,\n              52.48278022\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              129.375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              45.08903556\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              140.625,\n              48.92249926\n            ],\n            [\n              140.625,\n              45.08903556\n            ],\n            [\n              135,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              27.05912578\n            ],\n            [\n              73.125,\n              31.95216224\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              78.75,\n              27.05912578\n            ],\n            [\n              73.125,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              31.95216224\n            ],\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              78.75,\n              36.59788913\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              73.125,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              78.75,\n              36.59788913\n            ],\n            [\n              73.125,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              73.125,\n              45.08903556\n            ],\n            [\n              78.75,\n              45.08903556\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              73.125,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              27.05912578\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              84.375,\n              31.95216224\n            ],\n            [\n              84.375,\n              27.05912578\n            ],\n            [\n              78.75,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              90,\n              40.97989807\n            ],\n            [\n              90,\n              31.95216224\n            ],\n            [\n              78.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              90,\n              40.97989807\n            ],\n            [\n              78.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              27.05912578\n            ],\n            [\n              84.375,\n              31.95216224\n            ],\n            [\n              90,\n              31.95216224\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              84.375,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              84.375,\n              52.48278022\n            ],\n            [\n              90,\n              52.48278022\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              84.375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              27.05912578\n            ],\n            [\n              90,\n              31.95216224\n            ],\n            [\n              95.625,\n              31.95216224\n            ],\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              90,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              31.95216224\n            ],\n            [\n              90,\n              40.97989807\n            ],\n            [\n              101.25,\n              40.97989807\n            ],\n            [\n              101.25,\n              31.95216224\n            ],\n            [\n              90,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              40.97989807\n            ],\n            [\n              90,\n              45.08903556\n            ],\n            [\n              95.625,\n              45.08903556\n            ],\n            [\n              95.625,\n              40.97989807\n            ],\n            [\n              90,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              45.08903556\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              95.625,\n              48.92249926\n            ],\n            [\n              95.625,\n              45.08903556\n            ],\n            [\n              90,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              16.63619188\n            ],\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              95.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              101.25,\n              27.05912578\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              95.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              95.625,\n              31.95216224\n            ],\n            [\n              101.25,\n              31.95216224\n            ],\n            [\n              101.25,\n              27.05912578\n            ],\n            [\n              95.625,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              40.97989807\n            ],\n            [\n              95.625,\n              45.08903556\n            ],\n            [\n              101.25,\n              45.08903556\n            ],\n            [\n              101.25,\n              40.97989807\n            ],\n            [\n              95.625,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                110.339188,\n                18.678395\n              ],\n              [\n                109.47521,\n                18.197701\n              ],\n              [\n                108.655208,\n                18.507682\n              ],\n              [\n                108.626217,\n                19.367888\n              ],\n              [\n                109.119056,\n                19.821039\n              ],\n              [\n                110.211599,\n                20.101254\n              ],\n              [\n                110.786551,\n                20.077534\n              ],\n              [\n                111.010051,\n                19.69593\n              ],\n              [\n                110.570647,\n                19.255879\n              ],\n              [\n                110.339188,\n                18.678395\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                127.657407,\n                49.76027\n              ],\n              [\n                129.397818,\n                49.4406\n              ],\n              [\n                130.582293,\n                48.729687\n              ],\n              [\n                130.987282,\n                47.790132\n              ],\n              [\n                132.506672,\n                47.78897\n              ],\n              [\n                133.373596,\n                48.183442\n              ],\n              [\n                135.026311,\n                48.47823\n              ],\n              [\n                134.500814,\n                47.57844\n              ],\n              [\n                134.112362,\n                47.212467\n              ],\n              [\n                133.769644,\n                46.116927\n              ],\n              [\n                133.097127,\n                45.144066\n              ],\n              [\n                131.883454,\n                45.321162\n              ],\n              [\n                131.025212,\n                44.967953\n              ],\n              [\n                131.288555,\n                44.11152\n              ],\n              [\n                131.144688,\n                42.92999\n              ],\n              [\n                130.633866,\n                42.903015\n              ],\n              [\n                130.640016,\n                42.395009\n              ],\n              [\n                129.994267,\n                42.985387\n              ],\n              [\n                129.596669,\n                42.424982\n              ],\n              [\n                128.052215,\n                41.994285\n              ],\n              [\n                128.208433,\n                41.466772\n              ],\n              [\n                127.343783,\n                41.503152\n              ],\n              [\n                126.869083,\n                41.816569\n              ],\n              [\n                126.182045,\n                41.107336\n              ],\n              [\n                125.079942,\n                40.569824\n              ],\n              [\n                124.265625,\n                39.928493\n              ],\n              [\n                122.86757,\n                39.637788\n              ],\n              [\n                122.131388,\n                39.170452\n              ],\n              [\n                121.054554,\n                38.897471\n              ],\n              [\n                121.585995,\n                39.360854\n              ],\n              [\n                121.376757,\n                39.750261\n              ],\n              [\n                122.168595,\n                40.422443\n              ],\n              [\n                121.640359,\n                40.94639\n              ],\n              [\n                120.768629,\n                40.593388\n              ],\n              [\n                119.639602,\n                39.898056\n              ],\n              [\n                119.023464,\n                39.252333\n              ],\n              [\n                118.042749,\n                39.204274\n              ],\n              [\n                117.532702,\n                38.737636\n              ],\n              [\n                118.059699,\n                38.061476\n              ],\n              [\n                118.87815,\n                37.897325\n              ],\n              [\n                118.911636,\n                37.448464\n              ],\n              [\n                119.702802,\n                37.156389\n              ],\n              [\n                120.823457,\n                37.870428\n              ],\n              [\n                121.711259,\n                37.481123\n              ],\n              [\n                122.357937,\n                37.454484\n              ],\n              [\n                122.519995,\n                36.930614\n              ],\n              [\n                121.104164,\n                36.651329\n              ],\n              [\n                120.637009,\n                36.11144\n              ],\n              [\n                119.664562,\n                35.609791\n              ],\n              [\n                119.151208,\n                34.909859\n              ],\n              [\n                120.227525,\n                34.360332\n              ],\n              [\n                120.620369,\n                33.376723\n              ],\n              [\n                121.229014,\n                32.460319\n              ],\n              [\n                121.908146,\n                31.692174\n              ],\n              [\n                121.891919,\n                30.949352\n              ],\n              [\n                121.264257,\n                30.676267\n              ],\n              [\n                121.503519,\n                30.142915\n              ],\n              [\n                122.092114,\n                29.83252\n              ],\n              [\n                121.938428,\n                29.018022\n              ],\n              [\n                121.684439,\n                28.225513\n              ],\n              [\n                121.125661,\n                28.135673\n              ],\n              [\n                120.395473,\n                27.053207\n              ],\n              [\n                119.585497,\n                25.740781\n              ],\n              [\n                118.656871,\n                24.547391\n              ],\n              [\n                117.281606,\n                23.624501\n              ],\n              [\n                115.890735,\n                22.782873\n              ],\n              [\n                114.763827,\n                22.668074\n              ],\n              [\n                114.152547,\n                22.22376\n              ],\n              [\n                113.80678,\n                22.54834\n              ],\n              [\n                113.241078,\n                22.051367\n              ],\n              [\n                111.843592,\n                21.550494\n              ],\n              [\n                110.785466,\n                21.397144\n              ],\n              [\n                110.444039,\n                20.341033\n              ],\n              [\n                109.889861,\n                20.282457\n              ],\n              [\n                109.627655,\n                21.008227\n              ],\n              [\n                109.864488,\n                21.395051\n              ],\n              [\n                108.522813,\n                21.715212\n              ],\n              [\n                108.05018,\n                21.55238\n              ],\n              [\n                107.04342,\n                21.811899\n              ],\n              [\n                106.567273,\n                22.218205\n              ],\n              [\n                106.725403,\n                22.794268\n              ],\n              [\n                105.811247,\n                22.976892\n              ],\n              [\n                105.329209,\n                23.352063\n              ],\n              [\n                104.476858,\n                22.81915\n              ],\n              [\n                103.504515,\n                22.703757\n              ],\n              [\n                102.706992,\n                22.708795\n              ],\n              [\n                102.170436,\n                22.464753\n              ],\n              [\n                101.652018,\n                22.318199\n              ],\n              [\n                101.80312,\n                21.174367\n              ],\n              [\n                101.270026,\n                21.201652\n              ],\n              [\n                101.180005,\n                21.436573\n              ],\n              [\n                101.150033,\n                21.849984\n              ],\n              [\n                100.416538,\n                21.558839\n              ],\n              [\n                99.983489,\n                21.742937\n              ],\n              [\n                99.240899,\n                22.118314\n              ],\n              [\n                99.531992,\n                22.949039\n              ],\n              [\n                98.898749,\n                23.142722\n              ],\n              [\n                98.660262,\n                24.063286\n              ],\n              [\n                97.60472,\n                23.897405\n              ],\n              [\n                97.724609,\n                25.083637\n              ],\n              [\n                98.671838,\n                25.918703\n              ],\n              [\n                98.712094,\n                26.743536\n              ],\n              [\n                98.68269,\n                27.508812\n              ],\n              [\n                98.246231,\n                27.747221\n              ],\n              [\n                97.911988,\n                28.335945\n              ],\n              [\n                97.327114,\n                28.261583\n              ],\n              [\n                96.248833,\n                28.411031\n              ],\n              [\n                96.586591,\n                28.83098\n              ],\n              [\n                96.117679,\n                29.452802\n              ],\n              [\n                95.404802,\n                29.031717\n              ],\n              [\n                94.56599,\n                29.277438\n              ],\n              [\n                93.413348,\n                28.640629\n              ],\n              [\n                92.503119,\n                27.896876\n              ],\n              [\n                91.696657,\n                27.771742\n              ],\n              [\n                91.258854,\n                28.040614\n              ],\n              [\n                90.730514,\n                28.064954\n              ],\n              [\n                90.015829,\n                28.296439\n              ],\n              [\n                89.47581,\n                28.042759\n              ],\n              [\n                88.814248,\n                27.299316\n              ],\n              [\n                88.730326,\n                28.086865\n              ],\n              [\n                88.120441,\n                27.876542\n              ],\n              [\n                86.954517,\n                27.974262\n              ],\n              [\n                85.82332,\n                28.203576\n              ],\n              [\n                85.011638,\n                28.642774\n              ],\n              [\n                84.23458,\n                28.839894\n              ],\n              [\n                83.898993,\n                29.320226\n              ],\n              [\n                83.337115,\n                29.463732\n              ],\n              [\n                82.327513,\n                30.115268\n              ],\n              [\n                81.525804,\n                30.422717\n              ],\n              [\n                81.111256,\n                30.183481\n              ],\n              [\n                79.721367,\n                30.882715\n              ],\n              [\n                78.738894,\n                31.515906\n              ],\n              [\n                78.458446,\n                32.618164\n              ],\n              [\n                79.176129,\n                32.48378\n              ],\n              [\n                79.208892,\n                32.994395\n              ],\n              [\n                78.811086,\n                33.506198\n              ],\n              [\n                78.912269,\n                34.321936\n              ],\n              [\n                77.837451,\n                35.49401\n              ],\n              [\n                76.192848,\n                35.898403\n              ],\n              [\n                75.896897,\n                36.666806\n              ],\n              [\n                75.158028,\n                37.133031\n              ],\n              [\n                74.980002,\n                37.41999\n              ],\n              [\n                74.829986,\n                37.990007\n              ],\n              [\n                74.864816,\n                38.378846\n              ],\n              [\n                74.257514,\n                38.606507\n              ],\n              [\n                73.928852,\n                38.505815\n              ],\n              [\n                73.675379,\n                39.431237\n              ],\n              [\n                73.960013,\n                39.660008\n              ],\n              [\n                73.822244,\n                39.893973\n              ],\n              [\n                74.776862,\n                40.366425\n              ],\n              [\n                75.467828,\n                40.562072\n              ],\n              [\n                76.526368,\n                40.427946\n              ],\n              [\n                76.904484,\n                41.066486\n              ],\n              [\n                78.187197,\n                41.185316\n              ],\n              [\n                78.543661,\n                41.582243\n              ],\n              [\n                80.11943,\n                42.123941\n              ],\n              [\n                80.25999,\n                42.349999\n              ],\n              [\n                80.18015,\n                42.920068\n              ],\n              [\n                80.866206,\n                43.180362\n              ],\n              [\n                79.966106,\n                44.917517\n              ],\n              [\n                81.947071,\n                45.317027\n              ],\n              [\n                82.458926,\n                45.53965\n              ],\n              [\n                83.180484,\n                47.330031\n              ],\n              [\n                85.16429,\n                47.000956\n              ],\n              [\n                85.720484,\n                47.452969\n              ],\n              [\n                85.768233,\n                48.455751\n              ],\n              [\n                86.598776,\n                48.549182\n              ],\n              [\n                87.35997,\n                49.214981\n              ],\n              [\n                87.751264,\n                49.297198\n              ],\n              [\n                88.013832,\n                48.599463\n              ],\n              [\n                88.854298,\n                48.069082\n              ],\n              [\n                90.280826,\n                47.693549\n              ],\n              [\n                90.970809,\n                46.888146\n              ],\n              [\n                90.585768,\n                45.719716\n              ],\n              [\n                90.94554,\n                45.286073\n              ],\n              [\n                92.133891,\n                45.115076\n              ],\n              [\n                93.480734,\n                44.975472\n              ],\n              [\n                94.688929,\n                44.352332\n              ],\n              [\n                95.306875,\n                44.241331\n              ],\n              [\n                95.762455,\n                43.319449\n              ],\n              [\n                96.349396,\n                42.725635\n              ],\n              [\n                97.451757,\n                42.74889\n              ],\n              [\n                99.515817,\n                42.524691\n              ],\n              [\n                100.845866,\n                42.663804\n              ],\n              [\n                101.83304,\n                42.514873\n              ],\n              [\n                103.312278,\n                41.907468\n              ],\n              [\n                104.522282,\n                41.908347\n              ],\n              [\n                104.964994,\n                41.59741\n              ],\n              [\n                106.129316,\n                42.134328\n              ],\n              [\n                107.744773,\n                42.481516\n              ],\n              [\n                109.243596,\n                42.519446\n              ],\n              [\n                110.412103,\n                42.871234\n              ],\n              [\n                111.129682,\n                43.406834\n              ],\n              [\n                111.829588,\n                43.743118\n              ],\n              [\n                111.667737,\n                44.073176\n              ],\n              [\n                111.348377,\n                44.457442\n              ],\n              [\n                111.873306,\n                45.102079\n              ],\n              [\n                112.436062,\n                45.011646\n              ],\n              [\n                113.463907,\n                44.808893\n              ],\n              [\n                114.460332,\n                45.339817\n              ],\n              [\n                115.985096,\n                45.727235\n              ],\n              [\n                116.717868,\n                46.388202\n              ],\n              [\n                117.421701,\n                46.672733\n              ],\n              [\n                118.874326,\n                46.805412\n              ],\n              [\n                119.66327,\n                46.69268\n              ],\n              [\n                119.772824,\n                47.048059\n              ],\n              [\n                118.866574,\n                47.74706\n              ],\n              [\n                118.064143,\n                48.06673\n              ],\n              [\n                117.295507,\n                47.697709\n              ],\n              [\n                116.308953,\n                47.85341\n              ],\n              [\n                115.742837,\n                47.726545\n              ],\n              [\n                115.485282,\n                48.135383\n              ],\n              [\n                116.191802,\n                49.134598\n              ],\n              [\n                116.678801,\n                49.888531\n              ],\n              [\n                117.879244,\n                49.510983\n              ],\n              [\n                119.288461,\n                50.142883\n              ],\n              [\n                119.279366,\n                50.582908\n              ],\n              [\n                120.18205,\n                51.643566\n              ],\n              [\n                120.738191,\n                51.964115\n              ],\n              [\n                120.725789,\n                52.516226\n              ],\n              [\n                120.177089,\n                52.753886\n              ],\n              [\n                121.003085,\n                53.251401\n              ],\n              [\n                122.245748,\n                53.431726\n              ],\n              [\n                123.571507,\n                53.458804\n              ],\n              [\n                125.068211,\n                53.161045\n              ],\n              [\n                125.946349,\n                52.792799\n              ],\n              [\n                126.564399,\n                51.784255\n              ],\n              [\n                126.939157,\n                51.353894\n              ],\n              [\n                127.287456,\n                50.739797\n              ],\n              [\n                127.657407,\n                49.76027\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CIV.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CIV\",\"properties\":{\"name\":\"Ivory Coast\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-2.856125,4.994476],[-3.311084,4.984296],[-4.00882,5.179813],[-4.649917,5.168264],[-5.834496,4.993701],[-6.528769,4.705088],[-7.518941,4.338288],[-7.712159,4.364566],[-7.635368,5.188159],[-7.539715,5.313345],[-7.570153,5.707352],[-7.993693,6.12619],[-8.311348,6.193033],[-8.60288,6.467564],[-8.385452,6.911801],[-8.485446,7.395208],[-8.439298,7.686043],[-8.280703,7.68718],[-8.221792,8.123329],[-8.299049,8.316444],[-8.203499,8.455453],[-7.8321,8.575704],[-8.079114,9.376224],[-8.309616,9.789532],[-8.229337,10.12902],[-8.029944,10.206535],[-7.89959,10.297382],[-7.622759,10.147236],[-6.850507,10.138994],[-6.666461,10.430811],[-6.493965,10.411303],[-6.205223,10.524061],[-6.050452,10.096361],[-5.816926,10.222555],[-5.404342,10.370737],[-4.954653,10.152714],[-4.779884,9.821985],[-4.330247,9.610835],[-3.980449,9.862344],[-3.511899,9.900326],[-2.827496,9.642461],[-2.56219,8.219628],[-2.983585,7.379705],[-3.24437,6.250472],[-2.810701,5.389051],[-2.856125,4.994476]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CIV_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              0\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              0\n            ],\n            [\n              -11.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -2.856125,\n              4.994476\n            ],\n            [\n              -3.311084,\n              4.984296\n            ],\n            [\n              -4.00882,\n              5.179813\n            ],\n            [\n              -4.649917,\n              5.168264\n            ],\n            [\n              -5.834496,\n              4.993701\n            ],\n            [\n              -6.528769,\n              4.705088\n            ],\n            [\n              -7.518941,\n              4.338288\n            ],\n            [\n              -7.712159,\n              4.364566\n            ],\n            [\n              -7.635368,\n              5.188159\n            ],\n            [\n              -7.539715,\n              5.313345\n            ],\n            [\n              -7.570153,\n              5.707352\n            ],\n            [\n              -7.993693,\n              6.12619\n            ],\n            [\n              -8.311348,\n              6.193033\n            ],\n            [\n              -8.60288,\n              6.467564\n            ],\n            [\n              -8.385452,\n              6.911801\n            ],\n            [\n              -8.485446,\n              7.395208\n            ],\n            [\n              -8.439298,\n              7.686043\n            ],\n            [\n              -8.280703,\n              7.68718\n            ],\n            [\n              -8.221792,\n              8.123329\n            ],\n            [\n              -8.299049,\n              8.316444\n            ],\n            [\n              -8.203499,\n              8.455453\n            ],\n            [\n              -7.8321,\n              8.575704\n            ],\n            [\n              -8.079114,\n              9.376224\n            ],\n            [\n              -8.309616,\n              9.789532\n            ],\n            [\n              -8.229337,\n              10.12902\n            ],\n            [\n              -8.029944,\n              10.206535\n            ],\n            [\n              -7.89959,\n              10.297382\n            ],\n            [\n              -7.622759,\n              10.147236\n            ],\n            [\n              -6.850507,\n              10.138994\n            ],\n            [\n              -6.666461,\n              10.430811\n            ],\n            [\n              -6.493965,\n              10.411303\n            ],\n            [\n              -6.205223,\n              10.524061\n            ],\n            [\n              -6.050452,\n              10.096361\n            ],\n            [\n              -5.816926,\n              10.222555\n            ],\n            [\n              -5.404342,\n              10.370737\n            ],\n            [\n              -4.954653,\n              10.152714\n            ],\n            [\n              -4.779884,\n              9.821985\n            ],\n            [\n              -4.330247,\n              9.610835\n            ],\n            [\n              -3.980449,\n              9.862344\n            ],\n            [\n              -3.511899,\n              9.900326\n            ],\n            [\n              -2.827496,\n              9.642461\n            ],\n            [\n              -2.56219,\n              8.219628\n            ],\n            [\n              -2.983585,\n              7.379705\n            ],\n            [\n              -3.24437,\n              6.250472\n            ],\n            [\n              -2.810701,\n              5.389051\n            ],\n            [\n              -2.856125,\n              4.994476\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CMR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CMR\",\"properties\":{\"name\":\"Cameroon\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[13.075822,2.267097],[12.951334,2.321616],[12.35938,2.192812],[11.751665,2.326758],[11.276449,2.261051],[9.649158,2.283866],[9.795196,3.073404],[9.404367,3.734527],[8.948116,3.904129],[8.744924,4.352215],[8.488816,4.495617],[8.500288,4.771983],[8.757533,5.479666],[9.233163,6.444491],[9.522706,6.453482],[10.118277,7.03877],[10.497375,7.055358],[11.058788,6.644427],[11.745774,6.981383],[11.839309,7.397042],[12.063946,7.799808],[12.218872,8.305824],[12.753672,8.717763],[12.955468,9.417772],[13.1676,9.640626],[13.308676,10.160362],[13.57295,10.798566],[14.415379,11.572369],[14.468192,11.904752],[14.577178,12.085361],[14.181336,12.483657],[14.213531,12.802035],[14.495787,12.859396],[14.893386,12.219048],[14.960152,11.555574],[14.923565,10.891325],[15.467873,9.982337],[14.909354,9.992129],[14.627201,9.920919],[14.171466,10.021378],[13.954218,9.549495],[14.544467,8.965861],[14.979996,8.796104],[15.120866,8.38215],[15.436092,7.692812],[15.27946,7.421925],[14.776545,6.408498],[14.53656,6.226959],[14.459407,5.451761],[14.558936,5.030598],[14.478372,4.732605],[14.950953,4.210389],[15.03622,3.851367],[15.405396,3.335301],[15.862732,3.013537],[15.907381,2.557389],[16.012852,2.26764],[15.940919,1.727673],[15.146342,1.964015],[14.337813,2.227875],[13.075822,2.267097]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CMR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              0\n            ],\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              11.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              11.25,\n              16.63619188\n            ],\n            [\n              16.875,\n              16.63619188\n            ],\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              11.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              11.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              0\n            ],\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              5.625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              5.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.075822,\n              2.267097\n            ],\n            [\n              12.951334,\n              2.321616\n            ],\n            [\n              12.35938,\n              2.192812\n            ],\n            [\n              11.751665,\n              2.326758\n            ],\n            [\n              11.276449,\n              2.261051\n            ],\n            [\n              9.649158,\n              2.283866\n            ],\n            [\n              9.795196,\n              3.073404\n            ],\n            [\n              9.404367,\n              3.734527\n            ],\n            [\n              8.948116,\n              3.904129\n            ],\n            [\n              8.744924,\n              4.352215\n            ],\n            [\n              8.488816,\n              4.495617\n            ],\n            [\n              8.500288,\n              4.771983\n            ],\n            [\n              8.757533,\n              5.479666\n            ],\n            [\n              9.233163,\n              6.444491\n            ],\n            [\n              9.522706,\n              6.453482\n            ],\n            [\n              10.118277,\n              7.03877\n            ],\n            [\n              10.497375,\n              7.055358\n            ],\n            [\n              11.058788,\n              6.644427\n            ],\n            [\n              11.745774,\n              6.981383\n            ],\n            [\n              11.839309,\n              7.397042\n            ],\n            [\n              12.063946,\n              7.799808\n            ],\n            [\n              12.218872,\n              8.305824\n            ],\n            [\n              12.753672,\n              8.717763\n            ],\n            [\n              12.955468,\n              9.417772\n            ],\n            [\n              13.1676,\n              9.640626\n            ],\n            [\n              13.308676,\n              10.160362\n            ],\n            [\n              13.57295,\n              10.798566\n            ],\n            [\n              14.415379,\n              11.572369\n            ],\n            [\n              14.468192,\n              11.904752\n            ],\n            [\n              14.577178,\n              12.085361\n            ],\n            [\n              14.181336,\n              12.483657\n            ],\n            [\n              14.213531,\n              12.802035\n            ],\n            [\n              14.495787,\n              12.859396\n            ],\n            [\n              14.893386,\n              12.219048\n            ],\n            [\n              14.960152,\n              11.555574\n            ],\n            [\n              14.923565,\n              10.891325\n            ],\n            [\n              15.467873,\n              9.982337\n            ],\n            [\n              14.909354,\n              9.992129\n            ],\n            [\n              14.627201,\n              9.920919\n            ],\n            [\n              14.171466,\n              10.021378\n            ],\n            [\n              13.954218,\n              9.549495\n            ],\n            [\n              14.544467,\n              8.965861\n            ],\n            [\n              14.979996,\n              8.796104\n            ],\n            [\n              15.120866,\n              8.38215\n            ],\n            [\n              15.436092,\n              7.692812\n            ],\n            [\n              15.27946,\n              7.421925\n            ],\n            [\n              14.776545,\n              6.408498\n            ],\n            [\n              14.53656,\n              6.226959\n            ],\n            [\n              14.459407,\n              5.451761\n            ],\n            [\n              14.558936,\n              5.030598\n            ],\n            [\n              14.478372,\n              4.732605\n            ],\n            [\n              14.950953,\n              4.210389\n            ],\n            [\n              15.03622,\n              3.851367\n            ],\n            [\n              15.405396,\n              3.335301\n            ],\n            [\n              15.862732,\n              3.013537\n            ],\n            [\n              15.907381,\n              2.557389\n            ],\n            [\n              16.012852,\n              2.26764\n            ],\n            [\n              15.940919,\n              1.727673\n            ],\n            [\n              15.146342,\n              1.964015\n            ],\n            [\n              14.337813,\n              2.227875\n            ],\n            [\n              13.075822,\n              2.267097\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/COD.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"COD\",\"properties\":{\"name\":\"Democratic Republic of the Congo\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[30.83386,3.509166],[30.773347,2.339883],[31.174149,2.204465],[30.85267,1.849396],[30.468508,1.583805],[30.086154,1.062313],[29.875779,0.59738],[29.819503,-0.20531],[29.587838,-0.587406],[29.579466,-1.341313],[29.291887,-1.620056],[29.254835,-2.21511],[29.117479,-2.292211],[29.024926,-2.839258],[29.276384,-3.293907],[29.339998,-4.499983],[29.519987,-5.419979],[29.419993,-5.939999],[29.620032,-6.520015],[30.199997,-7.079981],[30.740015,-8.340007],[30.346086,-8.238257],[29.002912,-8.407032],[28.734867,-8.526559],[28.449871,-9.164918],[28.673682,-9.605925],[28.49607,-10.789884],[28.372253,-11.793647],[28.642417,-11.971569],[29.341548,-12.360744],[29.616001,-12.178895],[29.699614,-13.257227],[28.934286,-13.248958],[28.523562,-12.698604],[28.155109,-12.272481],[27.388799,-12.132747],[27.16442,-11.608748],[26.553088,-11.92444],[25.75231,-11.784965],[25.418118,-11.330936],[24.78317,-11.238694],[24.314516,-11.262826],[24.257155,-10.951993],[23.912215,-10.926826],[23.456791,-10.867863],[22.837345,-11.017622],[22.402798,-10.993075],[22.155268,-11.084801],[22.208753,-9.894796],[21.875182,-9.523708],[21.801801,-8.908707],[21.949131,-8.305901],[21.746456,-7.920085],[21.728111,-7.290872],[20.514748,-7.299606],[20.601823,-6.939318],[20.091622,-6.94309],[20.037723,-7.116361],[19.417502,-7.155429],[19.166613,-7.738184],[19.016752,-7.988246],[18.464176,-7.847014],[18.134222,-7.987678],[17.47297,-8.068551],[17.089996,-7.545689],[16.860191,-7.222298],[16.57318,-6.622645],[16.326528,-5.87747],[13.375597,-5.864241],[13.024869,-5.984389],[12.735171,-5.965682],[12.322432,-6.100092],[12.182337,-5.789931],[12.436688,-5.684304],[12.468004,-5.248362],[12.631612,-4.991271],[12.995517,-4.781103],[13.25824,-4.882957],[13.600235,-4.500138],[14.144956,-4.510009],[14.209035,-4.793092],[14.582604,-4.970239],[15.170992,-4.343507],[15.75354,-3.855165],[16.00629,-3.535133],[15.972803,-2.712392],[16.407092,-1.740927],[16.865307,-1.225816],[17.523716,-0.74383],[17.638645,-0.424832],[17.663553,-0.058084],[17.82654,0.288923],[17.774192,0.855659],[17.898835,1.741832],[18.094276,2.365722],[18.393792,2.900443],[18.453065,3.504386],[18.542982,4.201785],[18.932312,4.709506],[19.467784,5.031528],[20.290679,4.691678],[20.927591,4.322786],[21.659123,4.224342],[22.405124,4.02916],[22.704124,4.633051],[22.84148,4.710126],[23.297214,4.609693],[24.410531,5.108784],[24.805029,4.897247],[25.128833,4.927245],[25.278798,5.170408],[25.650455,5.256088],[26.402761,5.150875],[27.044065,5.127853],[27.374226,5.233944],[27.979977,4.408413],[28.428994,4.287155],[28.696678,4.455077],[29.159078,4.389267],[29.715995,4.600805],[29.9535,4.173699],[30.83386,3.509166]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/COD_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -11.17840187\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              11.25,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              0\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              16.875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              0\n            ],\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              28.125,\n              0\n            ],\n            [\n              22.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              0\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              28.125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              30.83386,\n              3.509166\n            ],\n            [\n              30.773347,\n              2.339883\n            ],\n            [\n              31.174149,\n              2.204465\n            ],\n            [\n              30.85267,\n              1.849396\n            ],\n            [\n              30.468508,\n              1.583805\n            ],\n            [\n              30.086154,\n              1.062313\n            ],\n            [\n              29.875779,\n              0.59738\n            ],\n            [\n              29.819503,\n              -0.20531\n            ],\n            [\n              29.587838,\n              -0.587406\n            ],\n            [\n              29.579466,\n              -1.341313\n            ],\n            [\n              29.291887,\n              -1.620056\n            ],\n            [\n              29.254835,\n              -2.21511\n            ],\n            [\n              29.117479,\n              -2.292211\n            ],\n            [\n              29.024926,\n              -2.839258\n            ],\n            [\n              29.276384,\n              -3.293907\n            ],\n            [\n              29.339998,\n              -4.499983\n            ],\n            [\n              29.519987,\n              -5.419979\n            ],\n            [\n              29.419993,\n              -5.939999\n            ],\n            [\n              29.620032,\n              -6.520015\n            ],\n            [\n              30.199997,\n              -7.079981\n            ],\n            [\n              30.740015,\n              -8.340007\n            ],\n            [\n              30.346086,\n              -8.238257\n            ],\n            [\n              29.002912,\n              -8.407032\n            ],\n            [\n              28.734867,\n              -8.526559\n            ],\n            [\n              28.449871,\n              -9.164918\n            ],\n            [\n              28.673682,\n              -9.605925\n            ],\n            [\n              28.49607,\n              -10.789884\n            ],\n            [\n              28.372253,\n              -11.793647\n            ],\n            [\n              28.642417,\n              -11.971569\n            ],\n            [\n              29.341548,\n              -12.360744\n            ],\n            [\n              29.616001,\n              -12.178895\n            ],\n            [\n              29.699614,\n              -13.257227\n            ],\n            [\n              28.934286,\n              -13.248958\n            ],\n            [\n              28.523562,\n              -12.698604\n            ],\n            [\n              28.155109,\n              -12.272481\n            ],\n            [\n              27.388799,\n              -12.132747\n            ],\n            [\n              27.16442,\n              -11.608748\n            ],\n            [\n              26.553088,\n              -11.92444\n            ],\n            [\n              25.75231,\n              -11.784965\n            ],\n            [\n              25.418118,\n              -11.330936\n            ],\n            [\n              24.78317,\n              -11.238694\n            ],\n            [\n              24.314516,\n              -11.262826\n            ],\n            [\n              24.257155,\n              -10.951993\n            ],\n            [\n              23.912215,\n              -10.926826\n            ],\n            [\n              23.456791,\n              -10.867863\n            ],\n            [\n              22.837345,\n              -11.017622\n            ],\n            [\n              22.402798,\n              -10.993075\n            ],\n            [\n              22.155268,\n              -11.084801\n            ],\n            [\n              22.208753,\n              -9.894796\n            ],\n            [\n              21.875182,\n              -9.523708\n            ],\n            [\n              21.801801,\n              -8.908707\n            ],\n            [\n              21.949131,\n              -8.305901\n            ],\n            [\n              21.746456,\n              -7.920085\n            ],\n            [\n              21.728111,\n              -7.290872\n            ],\n            [\n              20.514748,\n              -7.299606\n            ],\n            [\n              20.601823,\n              -6.939318\n            ],\n            [\n              20.091622,\n              -6.94309\n            ],\n            [\n              20.037723,\n              -7.116361\n            ],\n            [\n              19.417502,\n              -7.155429\n            ],\n            [\n              19.166613,\n              -7.738184\n            ],\n            [\n              19.016752,\n              -7.988246\n            ],\n            [\n              18.464176,\n              -7.847014\n            ],\n            [\n              18.134222,\n              -7.987678\n            ],\n            [\n              17.47297,\n              -8.068551\n            ],\n            [\n              17.089996,\n              -7.545689\n            ],\n            [\n              16.860191,\n              -7.222298\n            ],\n            [\n              16.57318,\n              -6.622645\n            ],\n            [\n              16.326528,\n              -5.87747\n            ],\n            [\n              13.375597,\n              -5.864241\n            ],\n            [\n              13.024869,\n              -5.984389\n            ],\n            [\n              12.735171,\n              -5.965682\n            ],\n            [\n              12.322432,\n              -6.100092\n            ],\n            [\n              12.182337,\n              -5.789931\n            ],\n            [\n              12.436688,\n              -5.684304\n            ],\n            [\n              12.468004,\n              -5.248362\n            ],\n            [\n              12.631612,\n              -4.991271\n            ],\n            [\n              12.995517,\n              -4.781103\n            ],\n            [\n              13.25824,\n              -4.882957\n            ],\n            [\n              13.600235,\n              -4.500138\n            ],\n            [\n              14.144956,\n              -4.510009\n            ],\n            [\n              14.209035,\n              -4.793092\n            ],\n            [\n              14.582604,\n              -4.970239\n            ],\n            [\n              15.170992,\n              -4.343507\n            ],\n            [\n              15.75354,\n              -3.855165\n            ],\n            [\n              16.00629,\n              -3.535133\n            ],\n            [\n              15.972803,\n              -2.712392\n            ],\n            [\n              16.407092,\n              -1.740927\n            ],\n            [\n              16.865307,\n              -1.225816\n            ],\n            [\n              17.523716,\n              -0.74383\n            ],\n            [\n              17.638645,\n              -0.424832\n            ],\n            [\n              17.663553,\n              -0.058084\n            ],\n            [\n              17.82654,\n              0.288923\n            ],\n            [\n              17.774192,\n              0.855659\n            ],\n            [\n              17.898835,\n              1.741832\n            ],\n            [\n              18.094276,\n              2.365722\n            ],\n            [\n              18.393792,\n              2.900443\n            ],\n            [\n              18.453065,\n              3.504386\n            ],\n            [\n              18.542982,\n              4.201785\n            ],\n            [\n              18.932312,\n              4.709506\n            ],\n            [\n              19.467784,\n              5.031528\n            ],\n            [\n              20.290679,\n              4.691678\n            ],\n            [\n              20.927591,\n              4.322786\n            ],\n            [\n              21.659123,\n              4.224342\n            ],\n            [\n              22.405124,\n              4.02916\n            ],\n            [\n              22.704124,\n              4.633051\n            ],\n            [\n              22.84148,\n              4.710126\n            ],\n            [\n              23.297214,\n              4.609693\n            ],\n            [\n              24.410531,\n              5.108784\n            ],\n            [\n              24.805029,\n              4.897247\n            ],\n            [\n              25.128833,\n              4.927245\n            ],\n            [\n              25.278798,\n              5.170408\n            ],\n            [\n              25.650455,\n              5.256088\n            ],\n            [\n              26.402761,\n              5.150875\n            ],\n            [\n              27.044065,\n              5.127853\n            ],\n            [\n              27.374226,\n              5.233944\n            ],\n            [\n              27.979977,\n              4.408413\n            ],\n            [\n              28.428994,\n              4.287155\n            ],\n            [\n              28.696678,\n              4.455077\n            ],\n            [\n              29.159078,\n              4.389267\n            ],\n            [\n              29.715995,\n              4.600805\n            ],\n            [\n              29.9535,\n              4.173699\n            ],\n            [\n              30.83386,\n              3.509166\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/COG.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"COG\",\"properties\":{\"name\":\"Republic of the Congo\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[12.995517,-4.781103],[12.62076,-4.438023],[12.318608,-4.60623],[11.914963,-5.037987],[11.093773,-3.978827],[11.855122,-3.426871],[11.478039,-2.765619],[11.820964,-2.514161],[12.495703,-2.391688],[12.575284,-1.948511],[13.109619,-2.42874],[13.992407,-2.470805],[14.29921,-1.998276],[14.425456,-1.333407],[14.316418,-0.552627],[13.843321,0.038758],[14.276266,1.19693],[14.026669,1.395677],[13.282631,1.314184],[13.003114,1.830896],[13.075822,2.267097],[14.337813,2.227875],[15.146342,1.964015],[15.940919,1.727673],[16.012852,2.26764],[16.537058,3.198255],[17.133042,3.728197],[17.8099,3.560196],[18.453065,3.504386],[18.393792,2.900443],[18.094276,2.365722],[17.898835,1.741832],[17.774192,0.855659],[17.82654,0.288923],[17.663553,-0.058084],[17.638645,-0.424832],[17.523716,-0.74383],[16.865307,-1.225816],[16.407092,-1.740927],[15.972803,-2.712392],[16.00629,-3.535133],[15.75354,-3.855165],[15.170992,-4.343507],[14.582604,-4.970239],[14.209035,-4.793092],[14.144956,-4.510009],[13.600235,-4.500138],[13.25824,-4.882957],[12.995517,-4.781103]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/COG_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -5.61598582\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              16.875,\n              -5.61598582\n            ],\n            [\n              11.25,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              0\n            ],\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              11.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -5.61598582\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              22.5,\n              -5.61598582\n            ],\n            [\n              16.875,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              0\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.5,\n              0\n            ],\n            [\n              16.875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              -5.61598582\n            ],\n            [\n              5.625,\n              0\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              11.25,\n              -5.61598582\n            ],\n            [\n              5.625,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              12.995517,\n              -4.781103\n            ],\n            [\n              12.62076,\n              -4.438023\n            ],\n            [\n              12.318608,\n              -4.60623\n            ],\n            [\n              11.914963,\n              -5.037987\n            ],\n            [\n              11.093773,\n              -3.978827\n            ],\n            [\n              11.855122,\n              -3.426871\n            ],\n            [\n              11.478039,\n              -2.765619\n            ],\n            [\n              11.820964,\n              -2.514161\n            ],\n            [\n              12.495703,\n              -2.391688\n            ],\n            [\n              12.575284,\n              -1.948511\n            ],\n            [\n              13.109619,\n              -2.42874\n            ],\n            [\n              13.992407,\n              -2.470805\n            ],\n            [\n              14.29921,\n              -1.998276\n            ],\n            [\n              14.425456,\n              -1.333407\n            ],\n            [\n              14.316418,\n              -0.552627\n            ],\n            [\n              13.843321,\n              0.038758\n            ],\n            [\n              14.276266,\n              1.19693\n            ],\n            [\n              14.026669,\n              1.395677\n            ],\n            [\n              13.282631,\n              1.314184\n            ],\n            [\n              13.003114,\n              1.830896\n            ],\n            [\n              13.075822,\n              2.267097\n            ],\n            [\n              14.337813,\n              2.227875\n            ],\n            [\n              15.146342,\n              1.964015\n            ],\n            [\n              15.940919,\n              1.727673\n            ],\n            [\n              16.012852,\n              2.26764\n            ],\n            [\n              16.537058,\n              3.198255\n            ],\n            [\n              17.133042,\n              3.728197\n            ],\n            [\n              17.8099,\n              3.560196\n            ],\n            [\n              18.453065,\n              3.504386\n            ],\n            [\n              18.393792,\n              2.900443\n            ],\n            [\n              18.094276,\n              2.365722\n            ],\n            [\n              17.898835,\n              1.741832\n            ],\n            [\n              17.774192,\n              0.855659\n            ],\n            [\n              17.82654,\n              0.288923\n            ],\n            [\n              17.663553,\n              -0.058084\n            ],\n            [\n              17.638645,\n              -0.424832\n            ],\n            [\n              17.523716,\n              -0.74383\n            ],\n            [\n              16.865307,\n              -1.225816\n            ],\n            [\n              16.407092,\n              -1.740927\n            ],\n            [\n              15.972803,\n              -2.712392\n            ],\n            [\n              16.00629,\n              -3.535133\n            ],\n            [\n              15.75354,\n              -3.855165\n            ],\n            [\n              15.170992,\n              -4.343507\n            ],\n            [\n              14.582604,\n              -4.970239\n            ],\n            [\n              14.209035,\n              -4.793092\n            ],\n            [\n              14.144956,\n              -4.510009\n            ],\n            [\n              13.600235,\n              -4.500138\n            ],\n            [\n              13.25824,\n              -4.882957\n            ],\n            [\n              12.995517,\n              -4.781103\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/COL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"COL\",\"properties\":{\"name\":\"Colombia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-75.373223,-0.152032],[-75.801466,0.084801],[-76.292314,0.416047],[-76.57638,0.256936],[-77.424984,0.395687],[-77.668613,0.825893],[-77.855061,0.809925],[-78.855259,1.380924],[-78.990935,1.69137],[-78.617831,1.766404],[-78.662118,2.267355],[-78.42761,2.629556],[-77.931543,2.696606],[-77.510431,3.325017],[-77.12769,3.849636],[-77.496272,4.087606],[-77.307601,4.667984],[-77.533221,5.582812],[-77.318815,5.845354],[-77.476661,6.691116],[-77.881571,7.223771],[-77.753414,7.70984],[-77.431108,7.638061],[-77.242566,7.935278],[-77.474723,8.524286],[-77.353361,8.670505],[-76.836674,8.638749],[-76.086384,9.336821],[-75.6746,9.443248],[-75.664704,9.774003],[-75.480426,10.61899],[-74.906895,11.083045],[-74.276753,11.102036],[-74.197223,11.310473],[-73.414764,11.227015],[-72.627835,11.731972],[-72.238195,11.95555],[-71.75409,12.437303],[-71.399822,12.376041],[-71.137461,12.112982],[-71.331584,11.776284],[-71.973922,11.608672],[-72.227575,11.108702],[-72.614658,10.821975],[-72.905286,10.450344],[-73.027604,9.73677],[-73.304952,9.152],[-72.78873,9.085027],[-72.660495,8.625288],[-72.439862,8.405275],[-72.360901,8.002638],[-72.479679,7.632506],[-72.444487,7.423785],[-72.198352,7.340431],[-71.960176,6.991615],[-70.674234,7.087785],[-70.093313,6.960376],[-69.38948,6.099861],[-68.985319,6.206805],[-68.265052,6.153268],[-67.695087,6.267318],[-67.34144,6.095468],[-67.521532,5.55687],[-67.744697,5.221129],[-67.823012,4.503937],[-67.621836,3.839482],[-67.337564,3.542342],[-67.303173,3.318454],[-67.809938,2.820655],[-67.447092,2.600281],[-67.181294,2.250638],[-66.876326,1.253361],[-67.065048,1.130112],[-67.259998,1.719999],[-67.53781,2.037163],[-67.868565,1.692455],[-69.816973,1.714805],[-69.804597,1.089081],[-69.218638,0.985677],[-69.252434,0.602651],[-69.452396,0.706159],[-70.015566,0.541414],[-70.020656,-0.185156],[-69.577065,-0.549992],[-69.420486,-1.122619],[-69.444102,-1.556287],[-69.893635,-4.298187],[-70.394044,-3.766591],[-70.692682,-3.742872],[-70.047709,-2.725156],[-70.813476,-2.256865],[-71.413646,-2.342802],[-71.774761,-2.16979],[-72.325787,-2.434218],[-73.070392,-2.308954],[-73.659504,-1.260491],[-74.122395,-1.002833],[-74.441601,-0.53082],[-75.106625,-0.057205],[-75.373223,-0.152032]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/COL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              0\n            ],\n            [\n              -67.5,\n              5.61598582\n            ],\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -61.875,\n              0\n            ],\n            [\n              -67.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              5.61598582\n            ],\n            [\n              -67.5,\n              11.17840187\n            ],\n            [\n              -61.875,\n              11.17840187\n            ],\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -67.5,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -5.61598582\n            ],\n            [\n              -73.125,\n              0\n            ],\n            [\n              -67.5,\n              0\n            ],\n            [\n              -67.5,\n              -5.61598582\n            ],\n            [\n              -73.125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              11.17840187\n            ],\n            [\n              -73.125,\n              16.63619188\n            ],\n            [\n              -67.5,\n              16.63619188\n            ],\n            [\n              -67.5,\n              11.17840187\n            ],\n            [\n              -73.125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -5.61598582\n            ],\n            [\n              -78.75,\n              0\n            ],\n            [\n              -73.125,\n              0\n            ],\n            [\n              -73.125,\n              -5.61598582\n            ],\n            [\n              -78.75,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              0\n            ],\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -67.5,\n              11.17840187\n            ],\n            [\n              -67.5,\n              0\n            ],\n            [\n              -78.75,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -78.75,\n              16.63619188\n            ],\n            [\n              -73.125,\n              16.63619188\n            ],\n            [\n              -73.125,\n              11.17840187\n            ],\n            [\n              -78.75,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              0\n            ],\n            [\n              -84.375,\n              5.61598582\n            ],\n            [\n              -78.75,\n              5.61598582\n            ],\n            [\n              -78.75,\n              0\n            ],\n            [\n              -84.375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -75.373223,\n              -0.152032\n            ],\n            [\n              -75.801466,\n              0.084801\n            ],\n            [\n              -76.292314,\n              0.416047\n            ],\n            [\n              -76.57638,\n              0.256936\n            ],\n            [\n              -77.424984,\n              0.395687\n            ],\n            [\n              -77.668613,\n              0.825893\n            ],\n            [\n              -77.855061,\n              0.809925\n            ],\n            [\n              -78.855259,\n              1.380924\n            ],\n            [\n              -78.990935,\n              1.69137\n            ],\n            [\n              -78.617831,\n              1.766404\n            ],\n            [\n              -78.662118,\n              2.267355\n            ],\n            [\n              -78.42761,\n              2.629556\n            ],\n            [\n              -77.931543,\n              2.696606\n            ],\n            [\n              -77.510431,\n              3.325017\n            ],\n            [\n              -77.12769,\n              3.849636\n            ],\n            [\n              -77.496272,\n              4.087606\n            ],\n            [\n              -77.307601,\n              4.667984\n            ],\n            [\n              -77.533221,\n              5.582812\n            ],\n            [\n              -77.318815,\n              5.845354\n            ],\n            [\n              -77.476661,\n              6.691116\n            ],\n            [\n              -77.881571,\n              7.223771\n            ],\n            [\n              -77.753414,\n              7.70984\n            ],\n            [\n              -77.431108,\n              7.638061\n            ],\n            [\n              -77.242566,\n              7.935278\n            ],\n            [\n              -77.474723,\n              8.524286\n            ],\n            [\n              -77.353361,\n              8.670505\n            ],\n            [\n              -76.836674,\n              8.638749\n            ],\n            [\n              -76.086384,\n              9.336821\n            ],\n            [\n              -75.6746,\n              9.443248\n            ],\n            [\n              -75.664704,\n              9.774003\n            ],\n            [\n              -75.480426,\n              10.61899\n            ],\n            [\n              -74.906895,\n              11.083045\n            ],\n            [\n              -74.276753,\n              11.102036\n            ],\n            [\n              -74.197223,\n              11.310473\n            ],\n            [\n              -73.414764,\n              11.227015\n            ],\n            [\n              -72.627835,\n              11.731972\n            ],\n            [\n              -72.238195,\n              11.95555\n            ],\n            [\n              -71.75409,\n              12.437303\n            ],\n            [\n              -71.399822,\n              12.376041\n            ],\n            [\n              -71.137461,\n              12.112982\n            ],\n            [\n              -71.331584,\n              11.776284\n            ],\n            [\n              -71.973922,\n              11.608672\n            ],\n            [\n              -72.227575,\n              11.108702\n            ],\n            [\n              -72.614658,\n              10.821975\n            ],\n            [\n              -72.905286,\n              10.450344\n            ],\n            [\n              -73.027604,\n              9.73677\n            ],\n            [\n              -73.304952,\n              9.152\n            ],\n            [\n              -72.78873,\n              9.085027\n            ],\n            [\n              -72.660495,\n              8.625288\n            ],\n            [\n              -72.439862,\n              8.405275\n            ],\n            [\n              -72.360901,\n              8.002638\n            ],\n            [\n              -72.479679,\n              7.632506\n            ],\n            [\n              -72.444487,\n              7.423785\n            ],\n            [\n              -72.198352,\n              7.340431\n            ],\n            [\n              -71.960176,\n              6.991615\n            ],\n            [\n              -70.674234,\n              7.087785\n            ],\n            [\n              -70.093313,\n              6.960376\n            ],\n            [\n              -69.38948,\n              6.099861\n            ],\n            [\n              -68.985319,\n              6.206805\n            ],\n            [\n              -68.265052,\n              6.153268\n            ],\n            [\n              -67.695087,\n              6.267318\n            ],\n            [\n              -67.34144,\n              6.095468\n            ],\n            [\n              -67.521532,\n              5.55687\n            ],\n            [\n              -67.744697,\n              5.221129\n            ],\n            [\n              -67.823012,\n              4.503937\n            ],\n            [\n              -67.621836,\n              3.839482\n            ],\n            [\n              -67.337564,\n              3.542342\n            ],\n            [\n              -67.303173,\n              3.318454\n            ],\n            [\n              -67.809938,\n              2.820655\n            ],\n            [\n              -67.447092,\n              2.600281\n            ],\n            [\n              -67.181294,\n              2.250638\n            ],\n            [\n              -66.876326,\n              1.253361\n            ],\n            [\n              -67.065048,\n              1.130112\n            ],\n            [\n              -67.259998,\n              1.719999\n            ],\n            [\n              -67.53781,\n              2.037163\n            ],\n            [\n              -67.868565,\n              1.692455\n            ],\n            [\n              -69.816973,\n              1.714805\n            ],\n            [\n              -69.804597,\n              1.089081\n            ],\n            [\n              -69.218638,\n              0.985677\n            ],\n            [\n              -69.252434,\n              0.602651\n            ],\n            [\n              -69.452396,\n              0.706159\n            ],\n            [\n              -70.015566,\n              0.541414\n            ],\n            [\n              -70.020656,\n              -0.185156\n            ],\n            [\n              -69.577065,\n              -0.549992\n            ],\n            [\n              -69.420486,\n              -1.122619\n            ],\n            [\n              -69.444102,\n              -1.556287\n            ],\n            [\n              -69.893635,\n              -4.298187\n            ],\n            [\n              -70.394044,\n              -3.766591\n            ],\n            [\n              -70.692682,\n              -3.742872\n            ],\n            [\n              -70.047709,\n              -2.725156\n            ],\n            [\n              -70.813476,\n              -2.256865\n            ],\n            [\n              -71.413646,\n              -2.342802\n            ],\n            [\n              -71.774761,\n              -2.16979\n            ],\n            [\n              -72.325787,\n              -2.434218\n            ],\n            [\n              -73.070392,\n              -2.308954\n            ],\n            [\n              -73.659504,\n              -1.260491\n            ],\n            [\n              -74.122395,\n              -1.002833\n            ],\n            [\n              -74.441601,\n              -0.53082\n            ],\n            [\n              -75.106625,\n              -0.057205\n            ],\n            [\n              -75.373223,\n              -0.152032\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CRI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CRI\",\"properties\":{\"name\":\"Costa Rica\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-82.965783,8.225028],[-83.508437,8.446927],[-83.711474,8.656836],[-83.596313,8.830443],[-83.632642,9.051386],[-83.909886,9.290803],[-84.303402,9.487354],[-84.647644,9.615537],[-84.713351,9.908052],[-84.97566,10.086723],[-84.911375,9.795992],[-85.110923,9.55704],[-85.339488,9.834542],[-85.660787,9.933347],[-85.797445,10.134886],[-85.791709,10.439337],[-85.659314,10.754331],[-85.941725,10.895278],[-85.71254,11.088445],[-85.561852,11.217119],[-84.903003,10.952303],[-84.673069,11.082657],[-84.355931,10.999226],[-84.190179,10.79345],[-83.895054,10.726839],[-83.655612,10.938764],[-83.40232,10.395438],[-83.015677,9.992982],[-82.546196,9.566135],[-82.932891,9.476812],[-82.927155,9.07433],[-82.719183,8.925709],[-82.868657,8.807266],[-82.829771,8.626295],[-82.913176,8.423517],[-82.965783,8.225028]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CRI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              5.61598582\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -78.75,\n              5.61598582\n            ],\n            [\n              -84.375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -90,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              5.61598582\n            ],\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -84.375,\n              5.61598582\n            ],\n            [\n              -90,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -82.965783,\n              8.225028\n            ],\n            [\n              -83.508437,\n              8.446927\n            ],\n            [\n              -83.711474,\n              8.656836\n            ],\n            [\n              -83.596313,\n              8.830443\n            ],\n            [\n              -83.632642,\n              9.051386\n            ],\n            [\n              -83.909886,\n              9.290803\n            ],\n            [\n              -84.303402,\n              9.487354\n            ],\n            [\n              -84.647644,\n              9.615537\n            ],\n            [\n              -84.713351,\n              9.908052\n            ],\n            [\n              -84.97566,\n              10.086723\n            ],\n            [\n              -84.911375,\n              9.795992\n            ],\n            [\n              -85.110923,\n              9.55704\n            ],\n            [\n              -85.339488,\n              9.834542\n            ],\n            [\n              -85.660787,\n              9.933347\n            ],\n            [\n              -85.797445,\n              10.134886\n            ],\n            [\n              -85.791709,\n              10.439337\n            ],\n            [\n              -85.659314,\n              10.754331\n            ],\n            [\n              -85.941725,\n              10.895278\n            ],\n            [\n              -85.71254,\n              11.088445\n            ],\n            [\n              -85.561852,\n              11.217119\n            ],\n            [\n              -84.903003,\n              10.952303\n            ],\n            [\n              -84.673069,\n              11.082657\n            ],\n            [\n              -84.355931,\n              10.999226\n            ],\n            [\n              -84.190179,\n              10.79345\n            ],\n            [\n              -83.895054,\n              10.726839\n            ],\n            [\n              -83.655612,\n              10.938764\n            ],\n            [\n              -83.40232,\n              10.395438\n            ],\n            [\n              -83.015677,\n              9.992982\n            ],\n            [\n              -82.546196,\n              9.566135\n            ],\n            [\n              -82.932891,\n              9.476812\n            ],\n            [\n              -82.927155,\n              9.07433\n            ],\n            [\n              -82.719183,\n              8.925709\n            ],\n            [\n              -82.868657,\n              8.807266\n            ],\n            [\n              -82.829771,\n              8.626295\n            ],\n            [\n              -82.913176,\n              8.423517\n            ],\n            [\n              -82.965783,\n              8.225028\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CS-KM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CS-KM\",\"properties\":{\"name\":\"Kosovo\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[20.76216,42.05186],[20.71731,41.84711],[20.59023,41.85541],[20.52295,42.21787],[20.28374,42.32025],[20.0707,42.58863],[20.25758,42.81275],[20.49679,42.88469],[20.63508,43.21671],[20.81448,43.27205],[20.95651,43.13094],[21.143395,43.068685],[21.27421,42.90959],[21.43866,42.86255],[21.63302,42.67717],[21.77505,42.6827],[21.66292,42.43922],[21.54332,42.32025],[21.576636,42.245224],[21.3527,42.2068],[20.76216,42.05186]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CS-KM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.76216,\n              42.05186\n            ],\n            [\n              20.71731,\n              41.84711\n            ],\n            [\n              20.59023,\n              41.85541\n            ],\n            [\n              20.52295,\n              42.21787\n            ],\n            [\n              20.28374,\n              42.32025\n            ],\n            [\n              20.0707,\n              42.58863\n            ],\n            [\n              20.25758,\n              42.81275\n            ],\n            [\n              20.49679,\n              42.88469\n            ],\n            [\n              20.63508,\n              43.21671\n            ],\n            [\n              20.81448,\n              43.27205\n            ],\n            [\n              20.95651,\n              43.13094\n            ],\n            [\n              21.143395,\n              43.068685\n            ],\n            [\n              21.27421,\n              42.90959\n            ],\n            [\n              21.43866,\n              42.86255\n            ],\n            [\n              21.63302,\n              42.67717\n            ],\n            [\n              21.77505,\n              42.6827\n            ],\n            [\n              21.66292,\n              42.43922\n            ],\n            [\n              21.54332,\n              42.32025\n            ],\n            [\n              21.576636,\n              42.245224\n            ],\n            [\n              21.3527,\n              42.2068\n            ],\n            [\n              20.76216,\n              42.05186\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CUB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CUB\",\"properties\":{\"name\":\"Cuba\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-82.268151,23.188611],[-81.404457,23.117271],[-80.618769,23.10598],[-79.679524,22.765303],[-79.281486,22.399202],[-78.347434,22.512166],[-77.993296,22.277194],[-77.146422,21.657851],[-76.523825,21.20682],[-76.19462,21.220565],[-75.598222,21.016624],[-75.67106,20.735091],[-74.933896,20.693905],[-74.178025,20.284628],[-74.296648,20.050379],[-74.961595,19.923435],[-75.63468,19.873774],[-76.323656,19.952891],[-77.755481,19.855481],[-77.085108,20.413354],[-77.492655,20.673105],[-78.137292,20.739949],[-78.482827,21.028613],[-78.719867,21.598114],[-79.285,21.559175],[-80.217475,21.827324],[-80.517535,22.037079],[-81.820943,22.192057],[-82.169992,22.387109],[-81.795002,22.636965],[-82.775898,22.68815],[-83.494459,22.168518],[-83.9088,22.154565],[-84.052151,21.910575],[-84.54703,21.801228],[-84.974911,21.896028],[-84.447062,22.20495],[-84.230357,22.565755],[-83.77824,22.788118],[-83.267548,22.983042],[-82.510436,23.078747],[-82.268151,23.188611]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CUB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              16.63619188\n            ],\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -73.125,\n              21.94304553\n            ],\n            [\n              -73.125,\n              16.63619188\n            ],\n            [\n              -78.75,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -78.75,\n              27.05912578\n            ],\n            [\n              -73.125,\n              27.05912578\n            ],\n            [\n              -73.125,\n              21.94304553\n            ],\n            [\n              -78.75,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -78.75,\n              16.63619188\n            ],\n            [\n              -84.375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -84.375,\n              27.05912578\n            ],\n            [\n              -78.75,\n              27.05912578\n            ],\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -84.375,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -90,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -90,\n              27.05912578\n            ],\n            [\n              -84.375,\n              27.05912578\n            ],\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -90,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -82.268151,\n              23.188611\n            ],\n            [\n              -81.404457,\n              23.117271\n            ],\n            [\n              -80.618769,\n              23.10598\n            ],\n            [\n              -79.679524,\n              22.765303\n            ],\n            [\n              -79.281486,\n              22.399202\n            ],\n            [\n              -78.347434,\n              22.512166\n            ],\n            [\n              -77.993296,\n              22.277194\n            ],\n            [\n              -77.146422,\n              21.657851\n            ],\n            [\n              -76.523825,\n              21.20682\n            ],\n            [\n              -76.19462,\n              21.220565\n            ],\n            [\n              -75.598222,\n              21.016624\n            ],\n            [\n              -75.67106,\n              20.735091\n            ],\n            [\n              -74.933896,\n              20.693905\n            ],\n            [\n              -74.178025,\n              20.284628\n            ],\n            [\n              -74.296648,\n              20.050379\n            ],\n            [\n              -74.961595,\n              19.923435\n            ],\n            [\n              -75.63468,\n              19.873774\n            ],\n            [\n              -76.323656,\n              19.952891\n            ],\n            [\n              -77.755481,\n              19.855481\n            ],\n            [\n              -77.085108,\n              20.413354\n            ],\n            [\n              -77.492655,\n              20.673105\n            ],\n            [\n              -78.137292,\n              20.739949\n            ],\n            [\n              -78.482827,\n              21.028613\n            ],\n            [\n              -78.719867,\n              21.598114\n            ],\n            [\n              -79.285,\n              21.559175\n            ],\n            [\n              -80.217475,\n              21.827324\n            ],\n            [\n              -80.517535,\n              22.037079\n            ],\n            [\n              -81.820943,\n              22.192057\n            ],\n            [\n              -82.169992,\n              22.387109\n            ],\n            [\n              -81.795002,\n              22.636965\n            ],\n            [\n              -82.775898,\n              22.68815\n            ],\n            [\n              -83.494459,\n              22.168518\n            ],\n            [\n              -83.9088,\n              22.154565\n            ],\n            [\n              -84.052151,\n              21.910575\n            ],\n            [\n              -84.54703,\n              21.801228\n            ],\n            [\n              -84.974911,\n              21.896028\n            ],\n            [\n              -84.447062,\n              22.20495\n            ],\n            [\n              -84.230357,\n              22.565755\n            ],\n            [\n              -83.77824,\n              22.788118\n            ],\n            [\n              -83.267548,\n              22.983042\n            ],\n            [\n              -82.510436,\n              23.078747\n            ],\n            [\n              -82.268151,\n              23.188611\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CYP.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CYP\",\"properties\":{\"name\":\"Cyprus\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[33.973617,35.058506],[34.004881,34.978098],[32.979827,34.571869],[32.490296,34.701655],[32.256667,35.103232],[32.73178,35.140026],[32.919572,35.087833],[33.190977,35.173125],[33.383833,35.162712],[33.455922,35.101424],[33.475817,35.000345],[33.525685,35.038688],[33.675392,35.017863],[33.86644,35.093595],[33.973617,35.058506]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CYP_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              31.95216224\n            ],\n            [\n              28.125,\n              36.59788913\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              28.125,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.973617,\n              35.058506\n            ],\n            [\n              34.004881,\n              34.978098\n            ],\n            [\n              32.979827,\n              34.571869\n            ],\n            [\n              32.490296,\n              34.701655\n            ],\n            [\n              32.256667,\n              35.103232\n            ],\n            [\n              32.73178,\n              35.140026\n            ],\n            [\n              32.919572,\n              35.087833\n            ],\n            [\n              33.190977,\n              35.173125\n            ],\n            [\n              33.383833,\n              35.162712\n            ],\n            [\n              33.455922,\n              35.101424\n            ],\n            [\n              33.475817,\n              35.000345\n            ],\n            [\n              33.525685,\n              35.038688\n            ],\n            [\n              33.675392,\n              35.017863\n            ],\n            [\n              33.86644,\n              35.093595\n            ],\n            [\n              33.973617,\n              35.058506\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/CZE.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"CZE\",\"properties\":{\"name\":\"Czech Republic\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[16.960288,48.596982],[16.499283,48.785808],[16.029647,48.733899],[15.253416,49.039074],[14.901447,48.964402],[14.338898,48.555305],[13.595946,48.877172],[13.031329,49.307068],[12.521024,49.547415],[12.415191,49.969121],[12.240111,50.266338],[12.966837,50.484076],[13.338132,50.733234],[14.056228,50.926918],[14.307013,51.117268],[14.570718,51.002339],[15.016996,51.106674],[15.490972,50.78473],[16.238627,50.697733],[16.176253,50.422607],[16.719476,50.215747],[16.868769,50.473974],[17.554567,50.362146],[17.649445,50.049038],[18.392914,49.988629],[18.853144,49.49623],[18.554971,49.495015],[18.399994,49.315001],[18.170498,49.271515],[18.104973,49.043983],[17.913512,48.996493],[17.886485,48.903475],[17.545007,48.800019],[17.101985,48.816969],[16.960288,48.596982]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/CZE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              11.25,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              16.875,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.960288,\n              48.596982\n            ],\n            [\n              16.499283,\n              48.785808\n            ],\n            [\n              16.029647,\n              48.733899\n            ],\n            [\n              15.253416,\n              49.039074\n            ],\n            [\n              14.901447,\n              48.964402\n            ],\n            [\n              14.338898,\n              48.555305\n            ],\n            [\n              13.595946,\n              48.877172\n            ],\n            [\n              13.031329,\n              49.307068\n            ],\n            [\n              12.521024,\n              49.547415\n            ],\n            [\n              12.415191,\n              49.969121\n            ],\n            [\n              12.240111,\n              50.266338\n            ],\n            [\n              12.966837,\n              50.484076\n            ],\n            [\n              13.338132,\n              50.733234\n            ],\n            [\n              14.056228,\n              50.926918\n            ],\n            [\n              14.307013,\n              51.117268\n            ],\n            [\n              14.570718,\n              51.002339\n            ],\n            [\n              15.016996,\n              51.106674\n            ],\n            [\n              15.490972,\n              50.78473\n            ],\n            [\n              16.238627,\n              50.697733\n            ],\n            [\n              16.176253,\n              50.422607\n            ],\n            [\n              16.719476,\n              50.215747\n            ],\n            [\n              16.868769,\n              50.473974\n            ],\n            [\n              17.554567,\n              50.362146\n            ],\n            [\n              17.649445,\n              50.049038\n            ],\n            [\n              18.392914,\n              49.988629\n            ],\n            [\n              18.853144,\n              49.49623\n            ],\n            [\n              18.554971,\n              49.495015\n            ],\n            [\n              18.399994,\n              49.315001\n            ],\n            [\n              18.170498,\n              49.271515\n            ],\n            [\n              18.104973,\n              49.043983\n            ],\n            [\n              17.913512,\n              48.996493\n            ],\n            [\n              17.886485,\n              48.903475\n            ],\n            [\n              17.545007,\n              48.800019\n            ],\n            [\n              17.101985,\n              48.816969\n            ],\n            [\n              16.960288,\n              48.596982\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/DEU.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"DEU\",\"properties\":{\"name\":\"Germany\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[9.921906,54.983104],[9.93958,54.596642],[10.950112,54.363607],[10.939467,54.008693],[11.956252,54.196486],[12.51844,54.470371],[13.647467,54.075511],[14.119686,53.757029],[14.353315,53.248171],[14.074521,52.981263],[14.4376,52.62485],[14.685026,52.089947],[14.607098,51.745188],[15.016996,51.106674],[14.570718,51.002339],[14.307013,51.117268],[14.056228,50.926918],[13.338132,50.733234],[12.966837,50.484076],[12.240111,50.266338],[12.415191,49.969121],[12.521024,49.547415],[13.031329,49.307068],[13.595946,48.877172],[13.243357,48.416115],[12.884103,48.289146],[13.025851,47.637584],[12.932627,47.467646],[12.62076,47.672388],[12.141357,47.703083],[11.426414,47.523766],[10.544504,47.566399],[10.402084,47.302488],[9.896068,47.580197],[9.594226,47.525058],[8.522612,47.830828],[8.317301,47.61358],[7.466759,47.620582],[7.593676,48.333019],[8.099279,49.017784],[6.65823,49.201958],[6.18632,49.463803],[6.242751,49.902226],[6.043073,50.128052],[6.156658,50.803721],[5.988658,51.851616],[6.589397,51.852029],[6.84287,52.22844],[7.092053,53.144043],[6.90514,53.482162],[7.100425,53.693932],[7.936239,53.748296],[8.121706,53.527792],[8.800734,54.020786],[8.572118,54.395646],[8.526229,54.962744],[9.282049,54.830865],[9.921906,54.983104]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/DEU_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              11.25,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              16.875,\n              55.77657302\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              11.25,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              45.08903556\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              5.625,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              5.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              5.625,\n              55.77657302\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              5.625,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              9.921906,\n              54.983104\n            ],\n            [\n              9.93958,\n              54.596642\n            ],\n            [\n              10.950112,\n              54.363607\n            ],\n            [\n              10.939467,\n              54.008693\n            ],\n            [\n              11.956252,\n              54.196486\n            ],\n            [\n              12.51844,\n              54.470371\n            ],\n            [\n              13.647467,\n              54.075511\n            ],\n            [\n              14.119686,\n              53.757029\n            ],\n            [\n              14.353315,\n              53.248171\n            ],\n            [\n              14.074521,\n              52.981263\n            ],\n            [\n              14.4376,\n              52.62485\n            ],\n            [\n              14.685026,\n              52.089947\n            ],\n            [\n              14.607098,\n              51.745188\n            ],\n            [\n              15.016996,\n              51.106674\n            ],\n            [\n              14.570718,\n              51.002339\n            ],\n            [\n              14.307013,\n              51.117268\n            ],\n            [\n              14.056228,\n              50.926918\n            ],\n            [\n              13.338132,\n              50.733234\n            ],\n            [\n              12.966837,\n              50.484076\n            ],\n            [\n              12.240111,\n              50.266338\n            ],\n            [\n              12.415191,\n              49.969121\n            ],\n            [\n              12.521024,\n              49.547415\n            ],\n            [\n              13.031329,\n              49.307068\n            ],\n            [\n              13.595946,\n              48.877172\n            ],\n            [\n              13.243357,\n              48.416115\n            ],\n            [\n              12.884103,\n              48.289146\n            ],\n            [\n              13.025851,\n              47.637584\n            ],\n            [\n              12.932627,\n              47.467646\n            ],\n            [\n              12.62076,\n              47.672388\n            ],\n            [\n              12.141357,\n              47.703083\n            ],\n            [\n              11.426414,\n              47.523766\n            ],\n            [\n              10.544504,\n              47.566399\n            ],\n            [\n              10.402084,\n              47.302488\n            ],\n            [\n              9.896068,\n              47.580197\n            ],\n            [\n              9.594226,\n              47.525058\n            ],\n            [\n              8.522612,\n              47.830828\n            ],\n            [\n              8.317301,\n              47.61358\n            ],\n            [\n              7.466759,\n              47.620582\n            ],\n            [\n              7.593676,\n              48.333019\n            ],\n            [\n              8.099279,\n              49.017784\n            ],\n            [\n              6.65823,\n              49.201958\n            ],\n            [\n              6.18632,\n              49.463803\n            ],\n            [\n              6.242751,\n              49.902226\n            ],\n            [\n              6.043073,\n              50.128052\n            ],\n            [\n              6.156658,\n              50.803721\n            ],\n            [\n              5.988658,\n              51.851616\n            ],\n            [\n              6.589397,\n              51.852029\n            ],\n            [\n              6.84287,\n              52.22844\n            ],\n            [\n              7.092053,\n              53.144043\n            ],\n            [\n              6.90514,\n              53.482162\n            ],\n            [\n              7.100425,\n              53.693932\n            ],\n            [\n              7.936239,\n              53.748296\n            ],\n            [\n              8.121706,\n              53.527792\n            ],\n            [\n              8.800734,\n              54.020786\n            ],\n            [\n              8.572118,\n              54.395646\n            ],\n            [\n              8.526229,\n              54.962744\n            ],\n            [\n              9.282049,\n              54.830865\n            ],\n            [\n              9.921906,\n              54.983104\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/DJI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"DJI\",\"properties\":{\"name\":\"Djibouti\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[43.081226,12.699639],[43.317852,12.390148],[43.286381,11.974928],[42.715874,11.735641],[43.145305,11.46204],[42.776852,10.926879],[42.55493,11.10511],[42.31414,11.0342],[41.75557,11.05091],[41.73959,11.35511],[41.66176,11.6312],[42,12.1],[42.35156,12.54223],[42.779642,12.455416],[43.081226,12.699639]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/DJI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              45,\n              16.63619188\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              39.375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              5.61598582\n            ],\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              45,\n              5.61598582\n            ],\n            [\n              39.375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              43.081226,\n              12.699639\n            ],\n            [\n              43.317852,\n              12.390148\n            ],\n            [\n              43.286381,\n              11.974928\n            ],\n            [\n              42.715874,\n              11.735641\n            ],\n            [\n              43.145305,\n              11.46204\n            ],\n            [\n              42.776852,\n              10.926879\n            ],\n            [\n              42.55493,\n              11.10511\n            ],\n            [\n              42.31414,\n              11.0342\n            ],\n            [\n              41.75557,\n              11.05091\n            ],\n            [\n              41.73959,\n              11.35511\n            ],\n            [\n              41.66176,\n              11.6312\n            ],\n            [\n              42,\n              12.1\n            ],\n            [\n              42.35156,\n              12.54223\n            ],\n            [\n              42.779642,\n              12.455416\n            ],\n            [\n              43.081226,\n              12.699639\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/DNK.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"DNK\",\"properties\":{\"name\":\"Denmark\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[12.690006,55.609991],[12.089991,54.800015],[11.043543,55.364864],[10.903914,55.779955],[12.370904,56.111407],[12.690006,55.609991]]],[[[10.912182,56.458621],[10.667804,56.081383],[10.369993,56.190007],[9.649985,55.469999],[9.921906,54.983104],[9.282049,54.830865],[8.526229,54.962744],[8.120311,55.517723],[8.089977,56.540012],[8.256582,56.809969],[8.543438,57.110003],[9.424469,57.172066],[9.775559,57.447941],[10.580006,57.730017],[10.546106,57.215733],[10.25,56.890016],[10.369993,56.609982],[10.912182,56.458621]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/DNK_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              16.875,\n              55.77657302\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              11.25,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              11.25,\n              58.81374172\n            ],\n            [\n              16.875,\n              58.81374172\n            ],\n            [\n              16.875,\n              55.77657302\n            ],\n            [\n              11.25,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              5.625,\n              55.77657302\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              5.625,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              55.77657302\n            ],\n            [\n              5.625,\n              58.81374172\n            ],\n            [\n              11.25,\n              58.81374172\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              5.625,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                12.690006,\n                55.609991\n              ],\n              [\n                12.089991,\n                54.800015\n              ],\n              [\n                11.043543,\n                55.364864\n              ],\n              [\n                10.903914,\n                55.779955\n              ],\n              [\n                12.370904,\n                56.111407\n              ],\n              [\n                12.690006,\n                55.609991\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                10.912182,\n                56.458621\n              ],\n              [\n                10.667804,\n                56.081383\n              ],\n              [\n                10.369993,\n                56.190007\n              ],\n              [\n                9.649985,\n                55.469999\n              ],\n              [\n                9.921906,\n                54.983104\n              ],\n              [\n                9.282049,\n                54.830865\n              ],\n              [\n                8.526229,\n                54.962744\n              ],\n              [\n                8.120311,\n                55.517723\n              ],\n              [\n                8.089977,\n                56.540012\n              ],\n              [\n                8.256582,\n                56.809969\n              ],\n              [\n                8.543438,\n                57.110003\n              ],\n              [\n                9.424469,\n                57.172066\n              ],\n              [\n                9.775559,\n                57.447941\n              ],\n              [\n                10.580006,\n                57.730017\n              ],\n              [\n                10.546106,\n                57.215733\n              ],\n              [\n                10.25,\n                56.890016\n              ],\n              [\n                10.369993,\n                56.609982\n              ],\n              [\n                10.912182,\n                56.458621\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/DOM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"DOM\",\"properties\":{\"name\":\"Dominican Republic\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.712361,19.714456],[-71.587304,19.884911],[-70.806706,19.880286],[-70.214365,19.622885],[-69.950815,19.648],[-69.76925,19.293267],[-69.222126,19.313214],[-69.254346,19.015196],[-68.809412,18.979074],[-68.317943,18.612198],[-68.689316,18.205142],[-69.164946,18.422648],[-69.623988,18.380713],[-69.952934,18.428307],[-70.133233,18.245915],[-70.517137,18.184291],[-70.669298,18.426886],[-70.99995,18.283329],[-71.40021,17.598564],[-71.657662,17.757573],[-71.708305,18.044997],[-71.687738,18.31666],[-71.945112,18.6169],[-71.701303,18.785417],[-71.624873,19.169838],[-71.712361,19.714456]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/DOM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              16.63619188\n            ],\n            [\n              -73.125,\n              21.94304553\n            ],\n            [\n              -67.5,\n              21.94304553\n            ],\n            [\n              -67.5,\n              16.63619188\n            ],\n            [\n              -73.125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -71.712361,\n              19.714456\n            ],\n            [\n              -71.587304,\n              19.884911\n            ],\n            [\n              -70.806706,\n              19.880286\n            ],\n            [\n              -70.214365,\n              19.622885\n            ],\n            [\n              -69.950815,\n              19.648\n            ],\n            [\n              -69.76925,\n              19.293267\n            ],\n            [\n              -69.222126,\n              19.313214\n            ],\n            [\n              -69.254346,\n              19.015196\n            ],\n            [\n              -68.809412,\n              18.979074\n            ],\n            [\n              -68.317943,\n              18.612198\n            ],\n            [\n              -68.689316,\n              18.205142\n            ],\n            [\n              -69.164946,\n              18.422648\n            ],\n            [\n              -69.623988,\n              18.380713\n            ],\n            [\n              -69.952934,\n              18.428307\n            ],\n            [\n              -70.133233,\n              18.245915\n            ],\n            [\n              -70.517137,\n              18.184291\n            ],\n            [\n              -70.669298,\n              18.426886\n            ],\n            [\n              -70.99995,\n              18.283329\n            ],\n            [\n              -71.40021,\n              17.598564\n            ],\n            [\n              -71.657662,\n              17.757573\n            ],\n            [\n              -71.708305,\n              18.044997\n            ],\n            [\n              -71.687738,\n              18.31666\n            ],\n            [\n              -71.945112,\n              18.6169\n            ],\n            [\n              -71.701303,\n              18.785417\n            ],\n            [\n              -71.624873,\n              19.169838\n            ],\n            [\n              -71.712361,\n              19.714456\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/DZA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"DZA\",\"properties\":{\"name\":\"Algeria\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[11.999506,23.471668],[8.572893,21.565661],[5.677566,19.601207],[4.267419,19.155265],[3.158133,19.057364],[3.146661,19.693579],[2.683588,19.85623],[2.060991,20.142233],[1.823228,20.610809],[-1.550055,22.792666],[-4.923337,24.974574],[-8.6844,27.395744],[-8.665124,27.589479],[-8.66559,27.656426],[-8.674116,28.841289],[-7.059228,29.579228],[-6.060632,29.7317],[-5.242129,30.000443],[-4.859646,30.501188],[-3.690441,30.896952],[-3.647498,31.637294],[-3.06898,31.724498],[-2.616605,32.094346],[-1.307899,32.262889],[-1.124551,32.651522],[-1.388049,32.864015],[-1.733455,33.919713],[-1.792986,34.527919],[-2.169914,35.168396],[-1.208603,35.714849],[-0.127454,35.888662],[0.503877,36.301273],[1.466919,36.605647],[3.161699,36.783905],[4.815758,36.865037],[5.32012,36.716519],[6.26182,37.110655],[7.330385,37.118381],[7.737078,36.885708],[8.420964,36.946427],[8.217824,36.433177],[8.376368,35.479876],[8.140981,34.655146],[7.524482,34.097376],[7.612642,33.344115],[8.430473,32.748337],[8.439103,32.506285],[9.055603,32.102692],[9.48214,30.307556],[9.805634,29.424638],[9.859998,28.95999],[9.683885,28.144174],[9.756128,27.688259],[9.629056,27.140953],[9.716286,26.512206],[9.319411,26.094325],[9.910693,25.365455],[9.948261,24.936954],[10.303847,24.379313],[10.771364,24.562532],[11.560669,24.097909],[11.999506,23.471668]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/DZA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -11.25,\n              31.95216224\n            ],\n            [\n              0,\n              31.95216224\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              -11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              16.63619188\n            ],\n            [\n              -5.625,\n              21.94304553\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              0,\n              16.63619188\n            ],\n            [\n              -5.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              31.95216224\n            ],\n            [\n              -5.625,\n              36.59788913\n            ],\n            [\n              0,\n              36.59788913\n            ],\n            [\n              0,\n              31.95216224\n            ],\n            [\n              -5.625,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              16.63619188\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              5.625,\n              21.94304553\n            ],\n            [\n              5.625,\n              16.63619188\n            ],\n            [\n              0,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              21.94304553\n            ],\n            [\n              0,\n              31.95216224\n            ],\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              0,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              31.95216224\n            ],\n            [\n              0,\n              40.97989807\n            ],\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              0,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              11.25,\n              27.05912578\n            ],\n            [\n              16.875,\n              27.05912578\n            ],\n            [\n              16.875,\n              21.94304553\n            ],\n            [\n              11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              16.63619188\n            ],\n            [\n              5.625,\n              21.94304553\n            ],\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              11.25,\n              16.63619188\n            ],\n            [\n              5.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.999506,\n              23.471668\n            ],\n            [\n              8.572893,\n              21.565661\n            ],\n            [\n              5.677566,\n              19.601207\n            ],\n            [\n              4.267419,\n              19.155265\n            ],\n            [\n              3.158133,\n              19.057364\n            ],\n            [\n              3.146661,\n              19.693579\n            ],\n            [\n              2.683588,\n              19.85623\n            ],\n            [\n              2.060991,\n              20.142233\n            ],\n            [\n              1.823228,\n              20.610809\n            ],\n            [\n              -1.550055,\n              22.792666\n            ],\n            [\n              -4.923337,\n              24.974574\n            ],\n            [\n              -8.6844,\n              27.395744\n            ],\n            [\n              -8.665124,\n              27.589479\n            ],\n            [\n              -8.66559,\n              27.656426\n            ],\n            [\n              -8.674116,\n              28.841289\n            ],\n            [\n              -7.059228,\n              29.579228\n            ],\n            [\n              -6.060632,\n              29.7317\n            ],\n            [\n              -5.242129,\n              30.000443\n            ],\n            [\n              -4.859646,\n              30.501188\n            ],\n            [\n              -3.690441,\n              30.896952\n            ],\n            [\n              -3.647498,\n              31.637294\n            ],\n            [\n              -3.06898,\n              31.724498\n            ],\n            [\n              -2.616605,\n              32.094346\n            ],\n            [\n              -1.307899,\n              32.262889\n            ],\n            [\n              -1.124551,\n              32.651522\n            ],\n            [\n              -1.388049,\n              32.864015\n            ],\n            [\n              -1.733455,\n              33.919713\n            ],\n            [\n              -1.792986,\n              34.527919\n            ],\n            [\n              -2.169914,\n              35.168396\n            ],\n            [\n              -1.208603,\n              35.714849\n            ],\n            [\n              -0.127454,\n              35.888662\n            ],\n            [\n              0.503877,\n              36.301273\n            ],\n            [\n              1.466919,\n              36.605647\n            ],\n            [\n              3.161699,\n              36.783905\n            ],\n            [\n              4.815758,\n              36.865037\n            ],\n            [\n              5.32012,\n              36.716519\n            ],\n            [\n              6.26182,\n              37.110655\n            ],\n            [\n              7.330385,\n              37.118381\n            ],\n            [\n              7.737078,\n              36.885708\n            ],\n            [\n              8.420964,\n              36.946427\n            ],\n            [\n              8.217824,\n              36.433177\n            ],\n            [\n              8.376368,\n              35.479876\n            ],\n            [\n              8.140981,\n              34.655146\n            ],\n            [\n              7.524482,\n              34.097376\n            ],\n            [\n              7.612642,\n              33.344115\n            ],\n            [\n              8.430473,\n              32.748337\n            ],\n            [\n              8.439103,\n              32.506285\n            ],\n            [\n              9.055603,\n              32.102692\n            ],\n            [\n              9.48214,\n              30.307556\n            ],\n            [\n              9.805634,\n              29.424638\n            ],\n            [\n              9.859998,\n              28.95999\n            ],\n            [\n              9.683885,\n              28.144174\n            ],\n            [\n              9.756128,\n              27.688259\n            ],\n            [\n              9.629056,\n              27.140953\n            ],\n            [\n              9.716286,\n              26.512206\n            ],\n            [\n              9.319411,\n              26.094325\n            ],\n            [\n              9.910693,\n              25.365455\n            ],\n            [\n              9.948261,\n              24.936954\n            ],\n            [\n              10.303847,\n              24.379313\n            ],\n            [\n              10.771364,\n              24.562532\n            ],\n            [\n              11.560669,\n              24.097909\n            ],\n            [\n              11.999506,\n              23.471668\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ECU.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ECU\",\"properties\":{\"name\":\"Ecuador\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-80.302561,-3.404856],[-79.770293,-2.657512],[-79.986559,-2.220794],[-80.368784,-2.685159],[-80.967765,-2.246943],[-80.764806,-1.965048],[-80.933659,-1.057455],[-80.58337,-0.906663],[-80.399325,-0.283703],[-80.020898,0.36034],[-80.09061,0.768429],[-79.542762,0.982938],[-78.855259,1.380924],[-77.855061,0.809925],[-77.668613,0.825893],[-77.424984,0.395687],[-76.57638,0.256936],[-76.292314,0.416047],[-75.801466,0.084801],[-75.373223,-0.152032],[-75.233723,-0.911417],[-75.544996,-1.56161],[-76.635394,-2.608678],[-77.837905,-3.003021],[-78.450684,-3.873097],[-78.639897,-4.547784],[-79.205289,-4.959129],[-79.624979,-4.454198],[-80.028908,-4.346091],[-80.442242,-4.425724],[-80.469295,-4.059287],[-80.184015,-3.821162],[-80.302561,-3.404856]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ECU_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -5.61598582\n            ],\n            [\n              -78.75,\n              0\n            ],\n            [\n              -73.125,\n              0\n            ],\n            [\n              -73.125,\n              -5.61598582\n            ],\n            [\n              -78.75,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              0\n            ],\n            [\n              -78.75,\n              5.61598582\n            ],\n            [\n              -73.125,\n              5.61598582\n            ],\n            [\n              -73.125,\n              0\n            ],\n            [\n              -78.75,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              -5.61598582\n            ],\n            [\n              -84.375,\n              0\n            ],\n            [\n              -78.75,\n              0\n            ],\n            [\n              -78.75,\n              -5.61598582\n            ],\n            [\n              -84.375,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              0\n            ],\n            [\n              -84.375,\n              5.61598582\n            ],\n            [\n              -78.75,\n              5.61598582\n            ],\n            [\n              -78.75,\n              0\n            ],\n            [\n              -84.375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -80.302561,\n              -3.404856\n            ],\n            [\n              -79.770293,\n              -2.657512\n            ],\n            [\n              -79.986559,\n              -2.220794\n            ],\n            [\n              -80.368784,\n              -2.685159\n            ],\n            [\n              -80.967765,\n              -2.246943\n            ],\n            [\n              -80.764806,\n              -1.965048\n            ],\n            [\n              -80.933659,\n              -1.057455\n            ],\n            [\n              -80.58337,\n              -0.906663\n            ],\n            [\n              -80.399325,\n              -0.283703\n            ],\n            [\n              -80.020898,\n              0.36034\n            ],\n            [\n              -80.09061,\n              0.768429\n            ],\n            [\n              -79.542762,\n              0.982938\n            ],\n            [\n              -78.855259,\n              1.380924\n            ],\n            [\n              -77.855061,\n              0.809925\n            ],\n            [\n              -77.668613,\n              0.825893\n            ],\n            [\n              -77.424984,\n              0.395687\n            ],\n            [\n              -76.57638,\n              0.256936\n            ],\n            [\n              -76.292314,\n              0.416047\n            ],\n            [\n              -75.801466,\n              0.084801\n            ],\n            [\n              -75.373223,\n              -0.152032\n            ],\n            [\n              -75.233723,\n              -0.911417\n            ],\n            [\n              -75.544996,\n              -1.56161\n            ],\n            [\n              -76.635394,\n              -2.608678\n            ],\n            [\n              -77.837905,\n              -3.003021\n            ],\n            [\n              -78.450684,\n              -3.873097\n            ],\n            [\n              -78.639897,\n              -4.547784\n            ],\n            [\n              -79.205289,\n              -4.959129\n            ],\n            [\n              -79.624979,\n              -4.454198\n            ],\n            [\n              -80.028908,\n              -4.346091\n            ],\n            [\n              -80.442242,\n              -4.425724\n            ],\n            [\n              -80.469295,\n              -4.059287\n            ],\n            [\n              -80.184015,\n              -3.821162\n            ],\n            [\n              -80.302561,\n              -3.404856\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/EGY.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"EGY\",\"properties\":{\"name\":\"Egypt\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.6825],[25,29.238655],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/EGY_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              22.5,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              22.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              33.75,\n              27.05912578\n            ],\n            [\n              39.375,\n              27.05912578\n            ],\n            [\n              39.375,\n              21.94304553\n            ],\n            [\n              33.75,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              27.05912578\n            ],\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              39.375,\n              27.05912578\n            ],\n            [\n              33.75,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              34.9226,\n              29.50133\n            ],\n            [\n              34.64174,\n              29.09942\n            ],\n            [\n              34.42655,\n              28.34399\n            ],\n            [\n              34.15451,\n              27.8233\n            ],\n            [\n              33.92136,\n              27.6487\n            ],\n            [\n              33.58811,\n              27.97136\n            ],\n            [\n              33.13676,\n              28.41765\n            ],\n            [\n              32.42323,\n              29.85108\n            ],\n            [\n              32.32046,\n              29.76043\n            ],\n            [\n              32.73482,\n              28.70523\n            ],\n            [\n              33.34876,\n              27.69989\n            ],\n            [\n              34.10455,\n              26.14227\n            ],\n            [\n              34.47387,\n              25.59856\n            ],\n            [\n              34.79507,\n              25.03375\n            ],\n            [\n              35.69241,\n              23.92671\n            ],\n            [\n              35.49372,\n              23.75237\n            ],\n            [\n              35.52598,\n              23.10244\n            ],\n            [\n              36.69069,\n              22.20485\n            ],\n            [\n              36.86623,\n              22\n            ],\n            [\n              32.9,\n              22\n            ],\n            [\n              29.02,\n              22\n            ],\n            [\n              25,\n              22\n            ],\n            [\n              25,\n              25.6825\n            ],\n            [\n              25,\n              29.238655\n            ],\n            [\n              24.70007,\n              30.04419\n            ],\n            [\n              24.95762,\n              30.6616\n            ],\n            [\n              24.80287,\n              31.08929\n            ],\n            [\n              25.16482,\n              31.56915\n            ],\n            [\n              26.49533,\n              31.58568\n            ],\n            [\n              27.45762,\n              31.32126\n            ],\n            [\n              28.45048,\n              31.02577\n            ],\n            [\n              28.91353,\n              30.87005\n            ],\n            [\n              29.68342,\n              31.18686\n            ],\n            [\n              30.09503,\n              31.4734\n            ],\n            [\n              30.97693,\n              31.55586\n            ],\n            [\n              31.68796,\n              31.4296\n            ],\n            [\n              31.96041,\n              30.9336\n            ],\n            [\n              32.19247,\n              31.26034\n            ],\n            [\n              32.99392,\n              31.02407\n            ],\n            [\n              33.7734,\n              30.96746\n            ],\n            [\n              34.26544,\n              31.21936\n            ],\n            [\n              34.9226,\n              29.50133\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ERI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ERI\",\"properties\":{\"name\":\"Eritrea\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[42.35156,12.54223],[42.00975,12.86582],[41.59856,13.45209],[41.155194,13.77332],[40.8966,14.11864],[40.026219,14.519579],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607,14.95943],[37.59377,14.2131],[36.42951,14.42211],[36.323189,14.822481],[36.75386,16.291874],[36.85253,16.95655],[37.16747,17.26314],[37.904,17.42754],[38.41009,17.998307],[38.990623,16.840626],[39.26611,15.922723],[39.814294,15.435647],[41.179275,14.49108],[41.734952,13.921037],[42.276831,13.343992],[42.589576,13.000421],[43.081226,12.699639],[42.779642,12.455416],[42.35156,12.54223]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ERI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              33.75,\n              16.63619188\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              33.75,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              16.63619188\n            ],\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              39.375,\n              21.94304553\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              33.75,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              45,\n              16.63619188\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              39.375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              42.35156,\n              12.54223\n            ],\n            [\n              42.00975,\n              12.86582\n            ],\n            [\n              41.59856,\n              13.45209\n            ],\n            [\n              41.155194,\n              13.77332\n            ],\n            [\n              40.8966,\n              14.11864\n            ],\n            [\n              40.026219,\n              14.519579\n            ],\n            [\n              39.34061,\n              14.53155\n            ],\n            [\n              39.0994,\n              14.74064\n            ],\n            [\n              38.51295,\n              14.50547\n            ],\n            [\n              37.90607,\n              14.95943\n            ],\n            [\n              37.59377,\n              14.2131\n            ],\n            [\n              36.42951,\n              14.42211\n            ],\n            [\n              36.323189,\n              14.822481\n            ],\n            [\n              36.75386,\n              16.291874\n            ],\n            [\n              36.85253,\n              16.95655\n            ],\n            [\n              37.16747,\n              17.26314\n            ],\n            [\n              37.904,\n              17.42754\n            ],\n            [\n              38.41009,\n              17.998307\n            ],\n            [\n              38.990623,\n              16.840626\n            ],\n            [\n              39.26611,\n              15.922723\n            ],\n            [\n              39.814294,\n              15.435647\n            ],\n            [\n              41.179275,\n              14.49108\n            ],\n            [\n              41.734952,\n              13.921037\n            ],\n            [\n              42.276831,\n              13.343992\n            ],\n            [\n              42.589576,\n              13.000421\n            ],\n            [\n              43.081226,\n              12.699639\n            ],\n            [\n              42.779642,\n              12.455416\n            ],\n            [\n              42.35156,\n              12.54223\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ESH.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ESH\",\"properties\":{\"name\":\"Western Sahara\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-8.794884,27.120696],[-8.817828,27.656426],[-8.66559,27.656426],[-8.665124,27.589479],[-8.6844,27.395744],[-8.687294,25.881056],[-11.969419,25.933353],[-11.937224,23.374594],[-12.874222,23.284832],[-13.118754,22.77122],[-12.929102,21.327071],[-16.845194,21.333323],[-17.063423,20.999752],[-17.020428,21.42231],[-17.002962,21.420734],[-14.750955,21.5006],[-14.630833,21.86094],[-14.221168,22.310163],[-13.89111,23.691009],[-12.500963,24.770116],[-12.030759,26.030866],[-11.71822,26.104092],[-11.392555,26.883424],[-10.551263,26.990808],[-10.189424,26.860945],[-9.735343,26.860945],[-9.413037,27.088476],[-8.794884,27.120696]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ESH_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              -5.625,\n              21.94304553\n            ],\n            [\n              -11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -11.25,\n              31.95216224\n            ],\n            [\n              -5.625,\n              31.95216224\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              -11.25,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -16.875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -16.875,\n              27.05912578\n            ],\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -16.875,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              16.63619188\n            ],\n            [\n              -22.5,\n              21.94304553\n            ],\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -22.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -8.794884,\n              27.120696\n            ],\n            [\n              -8.817828,\n              27.656426\n            ],\n            [\n              -8.66559,\n              27.656426\n            ],\n            [\n              -8.665124,\n              27.589479\n            ],\n            [\n              -8.6844,\n              27.395744\n            ],\n            [\n              -8.687294,\n              25.881056\n            ],\n            [\n              -11.969419,\n              25.933353\n            ],\n            [\n              -11.937224,\n              23.374594\n            ],\n            [\n              -12.874222,\n              23.284832\n            ],\n            [\n              -13.118754,\n              22.77122\n            ],\n            [\n              -12.929102,\n              21.327071\n            ],\n            [\n              -16.845194,\n              21.333323\n            ],\n            [\n              -17.063423,\n              20.999752\n            ],\n            [\n              -17.020428,\n              21.42231\n            ],\n            [\n              -17.002962,\n              21.420734\n            ],\n            [\n              -14.750955,\n              21.5006\n            ],\n            [\n              -14.630833,\n              21.86094\n            ],\n            [\n              -14.221168,\n              22.310163\n            ],\n            [\n              -13.89111,\n              23.691009\n            ],\n            [\n              -12.500963,\n              24.770116\n            ],\n            [\n              -12.030759,\n              26.030866\n            ],\n            [\n              -11.71822,\n              26.104092\n            ],\n            [\n              -11.392555,\n              26.883424\n            ],\n            [\n              -10.551263,\n              26.990808\n            ],\n            [\n              -10.189424,\n              26.860945\n            ],\n            [\n              -9.735343,\n              26.860945\n            ],\n            [\n              -9.413037,\n              27.088476\n            ],\n            [\n              -8.794884,\n              27.120696\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ESP.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ESP\",\"properties\":{\"name\":\"Spain\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-9.034818,41.880571],[-8.984433,42.592775],[-9.392884,43.026625],[-7.97819,43.748338],[-6.754492,43.567909],[-5.411886,43.57424],[-4.347843,43.403449],[-3.517532,43.455901],[-1.901351,43.422802],[-1.502771,43.034014],[0.338047,42.579546],[0.701591,42.795734],[1.826793,42.343385],[2.985999,42.473015],[3.039484,41.89212],[2.091842,41.226089],[0.810525,41.014732],[0.721331,40.678318],[0.106692,40.123934],[-0.278711,39.309978],[0.111291,38.738514],[-0.467124,38.292366],[-0.683389,37.642354],[-1.438382,37.443064],[-2.146453,36.674144],[-3.415781,36.6589],[-4.368901,36.677839],[-4.995219,36.324708],[-5.37716,35.94685],[-5.866432,36.029817],[-6.236694,36.367677],[-6.520191,36.942913],[-7.453726,37.097788],[-7.537105,37.428904],[-7.166508,37.803894],[-7.029281,38.075764],[-7.374092,38.373059],[-7.098037,39.030073],[-7.498632,39.629571],[-7.066592,39.711892],[-7.026413,40.184524],[-6.86402,40.330872],[-6.851127,41.111083],[-6.389088,41.381815],[-6.668606,41.883387],[-7.251309,41.918346],[-7.422513,41.792075],[-8.013175,41.790886],[-8.263857,42.280469],[-8.671946,42.134689],[-9.034818,41.880571]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ESP_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              31.95216224\n            ],\n            [\n              -11.25,\n              40.97989807\n            ],\n            [\n              0,\n              40.97989807\n            ],\n            [\n              0,\n              31.95216224\n            ],\n            [\n              -11.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              40.97989807\n            ],\n            [\n              -11.25,\n              45.08903556\n            ],\n            [\n              -5.625,\n              45.08903556\n            ],\n            [\n              -5.625,\n              40.97989807\n            ],\n            [\n              -11.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              40.97989807\n            ],\n            [\n              -5.625,\n              45.08903556\n            ],\n            [\n              0,\n              45.08903556\n            ],\n            [\n              0,\n              40.97989807\n            ],\n            [\n              -5.625,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              36.59788913\n            ],\n            [\n              0,\n              40.97989807\n            ],\n            [\n              5.625,\n              40.97989807\n            ],\n            [\n              5.625,\n              36.59788913\n            ],\n            [\n              0,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              40.97989807\n            ],\n            [\n              0,\n              45.08903556\n            ],\n            [\n              5.625,\n              45.08903556\n            ],\n            [\n              5.625,\n              40.97989807\n            ],\n            [\n              0,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -9.034818,\n              41.880571\n            ],\n            [\n              -8.984433,\n              42.592775\n            ],\n            [\n              -9.392884,\n              43.026625\n            ],\n            [\n              -7.97819,\n              43.748338\n            ],\n            [\n              -6.754492,\n              43.567909\n            ],\n            [\n              -5.411886,\n              43.57424\n            ],\n            [\n              -4.347843,\n              43.403449\n            ],\n            [\n              -3.517532,\n              43.455901\n            ],\n            [\n              -1.901351,\n              43.422802\n            ],\n            [\n              -1.502771,\n              43.034014\n            ],\n            [\n              0.338047,\n              42.579546\n            ],\n            [\n              0.701591,\n              42.795734\n            ],\n            [\n              1.826793,\n              42.343385\n            ],\n            [\n              2.985999,\n              42.473015\n            ],\n            [\n              3.039484,\n              41.89212\n            ],\n            [\n              2.091842,\n              41.226089\n            ],\n            [\n              0.810525,\n              41.014732\n            ],\n            [\n              0.721331,\n              40.678318\n            ],\n            [\n              0.106692,\n              40.123934\n            ],\n            [\n              -0.278711,\n              39.309978\n            ],\n            [\n              0.111291,\n              38.738514\n            ],\n            [\n              -0.467124,\n              38.292366\n            ],\n            [\n              -0.683389,\n              37.642354\n            ],\n            [\n              -1.438382,\n              37.443064\n            ],\n            [\n              -2.146453,\n              36.674144\n            ],\n            [\n              -3.415781,\n              36.6589\n            ],\n            [\n              -4.368901,\n              36.677839\n            ],\n            [\n              -4.995219,\n              36.324708\n            ],\n            [\n              -5.37716,\n              35.94685\n            ],\n            [\n              -5.866432,\n              36.029817\n            ],\n            [\n              -6.236694,\n              36.367677\n            ],\n            [\n              -6.520191,\n              36.942913\n            ],\n            [\n              -7.453726,\n              37.097788\n            ],\n            [\n              -7.537105,\n              37.428904\n            ],\n            [\n              -7.166508,\n              37.803894\n            ],\n            [\n              -7.029281,\n              38.075764\n            ],\n            [\n              -7.374092,\n              38.373059\n            ],\n            [\n              -7.098037,\n              39.030073\n            ],\n            [\n              -7.498632,\n              39.629571\n            ],\n            [\n              -7.066592,\n              39.711892\n            ],\n            [\n              -7.026413,\n              40.184524\n            ],\n            [\n              -6.86402,\n              40.330872\n            ],\n            [\n              -6.851127,\n              41.111083\n            ],\n            [\n              -6.389088,\n              41.381815\n            ],\n            [\n              -6.668606,\n              41.883387\n            ],\n            [\n              -7.251309,\n              41.918346\n            ],\n            [\n              -7.422513,\n              41.792075\n            ],\n            [\n              -8.013175,\n              41.790886\n            ],\n            [\n              -8.263857,\n              42.280469\n            ],\n            [\n              -8.671946,\n              42.134689\n            ],\n            [\n              -9.034818,\n              41.880571\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/EST.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"EST\",\"properties\":{\"name\":\"Estonia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[24.312863,57.793424],[24.428928,58.383413],[24.061198,58.257375],[23.42656,58.612753],[23.339795,59.18724],[24.604214,59.465854],[25.864189,59.61109],[26.949136,59.445803],[27.981114,59.475388],[28.131699,59.300825],[27.420166,58.724581],[27.716686,57.791899],[27.288185,57.474528],[26.463532,57.476389],[25.60281,57.847529],[25.164594,57.970157],[24.312863,57.793424]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/EST_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              22.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              28.125,\n              61.60639637\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              22.5,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              28.125,\n              61.60639637\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              33.75,\n              58.81374172\n            ],\n            [\n              28.125,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              24.312863,\n              57.793424\n            ],\n            [\n              24.428928,\n              58.383413\n            ],\n            [\n              24.061198,\n              58.257375\n            ],\n            [\n              23.42656,\n              58.612753\n            ],\n            [\n              23.339795,\n              59.18724\n            ],\n            [\n              24.604214,\n              59.465854\n            ],\n            [\n              25.864189,\n              59.61109\n            ],\n            [\n              26.949136,\n              59.445803\n            ],\n            [\n              27.981114,\n              59.475388\n            ],\n            [\n              28.131699,\n              59.300825\n            ],\n            [\n              27.420166,\n              58.724581\n            ],\n            [\n              27.716686,\n              57.791899\n            ],\n            [\n              27.288185,\n              57.474528\n            ],\n            [\n              26.463532,\n              57.476389\n            ],\n            [\n              25.60281,\n              57.847529\n            ],\n            [\n              25.164594,\n              57.970157\n            ],\n            [\n              24.312863,\n              57.793424\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ETH.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ETH\",\"properties\":{\"name\":\"Ethiopia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[37.90607,14.95943],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625,14.51959],[40.8966,14.11864],[41.1552,13.77333],[41.59856,13.45209],[42.00975,12.86582],[42.35156,12.54223],[42,12.1],[41.66176,11.6312],[41.73959,11.35511],[41.75557,11.05091],[42.31414,11.0342],[42.55493,11.10511],[42.776852,10.926879],[42.55876,10.57258],[42.92812,10.02194],[43.29699,9.54048],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[42.12861,4.23413],[41.855083,3.918912],[41.1718,3.91909],[40.76848,4.25702],[39.85494,3.83879],[39.559384,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.43697,3.58851],[38.120915,3.598605],[36.855093,4.447864],[36.159079,4.447864],[35.817448,4.776966],[35.817448,5.338232],[35.298007,5.506],[34.70702,6.59422],[34.25032,6.82607],[34.0751,7.22595],[33.56829,7.71334],[32.95418,7.78497],[33.2948,8.35458],[33.8255,8.37916],[33.97498,8.68456],[33.96162,9.58358],[34.25745,10.63009],[34.73115,10.91017],[34.83163,11.31896],[35.26049,12.08286],[35.86363,12.57828],[36.27022,13.56333],[36.42951,14.42211],[37.59377,14.2131],[37.90607,14.95943]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ETH_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              28.125,\n              11.17840187\n            ],\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              28.125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              45,\n              0\n            ],\n            [\n              33.75,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              33.75,\n              16.63619188\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              33.75,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              45,\n              16.63619188\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              39.375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              0\n            ],\n            [\n              45,\n              5.61598582\n            ],\n            [\n              50.625,\n              5.61598582\n            ],\n            [\n              50.625,\n              0\n            ],\n            [\n              45,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              5.61598582\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              50.625,\n              11.17840187\n            ],\n            [\n              50.625,\n              5.61598582\n            ],\n            [\n              45,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              37.90607,\n              14.95943\n            ],\n            [\n              38.51295,\n              14.50547\n            ],\n            [\n              39.0994,\n              14.74064\n            ],\n            [\n              39.34061,\n              14.53155\n            ],\n            [\n              40.02625,\n              14.51959\n            ],\n            [\n              40.8966,\n              14.11864\n            ],\n            [\n              41.1552,\n              13.77333\n            ],\n            [\n              41.59856,\n              13.45209\n            ],\n            [\n              42.00975,\n              12.86582\n            ],\n            [\n              42.35156,\n              12.54223\n            ],\n            [\n              42,\n              12.1\n            ],\n            [\n              41.66176,\n              11.6312\n            ],\n            [\n              41.73959,\n              11.35511\n            ],\n            [\n              41.75557,\n              11.05091\n            ],\n            [\n              42.31414,\n              11.0342\n            ],\n            [\n              42.55493,\n              11.10511\n            ],\n            [\n              42.776852,\n              10.926879\n            ],\n            [\n              42.55876,\n              10.57258\n            ],\n            [\n              42.92812,\n              10.02194\n            ],\n            [\n              43.29699,\n              9.54048\n            ],\n            [\n              43.67875,\n              9.18358\n            ],\n            [\n              46.94834,\n              7.99688\n            ],\n            [\n              47.78942,\n              8.003\n            ],\n            [\n              44.9636,\n              5.00162\n            ],\n            [\n              43.66087,\n              4.95755\n            ],\n            [\n              42.76967,\n              4.25259\n            ],\n            [\n              42.12861,\n              4.23413\n            ],\n            [\n              41.855083,\n              3.918912\n            ],\n            [\n              41.1718,\n              3.91909\n            ],\n            [\n              40.76848,\n              4.25702\n            ],\n            [\n              39.85494,\n              3.83879\n            ],\n            [\n              39.559384,\n              3.42206\n            ],\n            [\n              38.89251,\n              3.50074\n            ],\n            [\n              38.67114,\n              3.61607\n            ],\n            [\n              38.43697,\n              3.58851\n            ],\n            [\n              38.120915,\n              3.598605\n            ],\n            [\n              36.855093,\n              4.447864\n            ],\n            [\n              36.159079,\n              4.447864\n            ],\n            [\n              35.817448,\n              4.776966\n            ],\n            [\n              35.817448,\n              5.338232\n            ],\n            [\n              35.298007,\n              5.506\n            ],\n            [\n              34.70702,\n              6.59422\n            ],\n            [\n              34.25032,\n              6.82607\n            ],\n            [\n              34.0751,\n              7.22595\n            ],\n            [\n              33.56829,\n              7.71334\n            ],\n            [\n              32.95418,\n              7.78497\n            ],\n            [\n              33.2948,\n              8.35458\n            ],\n            [\n              33.8255,\n              8.37916\n            ],\n            [\n              33.97498,\n              8.68456\n            ],\n            [\n              33.96162,\n              9.58358\n            ],\n            [\n              34.25745,\n              10.63009\n            ],\n            [\n              34.73115,\n              10.91017\n            ],\n            [\n              34.83163,\n              11.31896\n            ],\n            [\n              35.26049,\n              12.08286\n            ],\n            [\n              35.86363,\n              12.57828\n            ],\n            [\n              36.27022,\n              13.56333\n            ],\n            [\n              36.42951,\n              14.42211\n            ],\n            [\n              37.59377,\n              14.2131\n            ],\n            [\n              37.90607,\n              14.95943\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/FIN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"FIN\",\"properties\":{\"name\":\"Finland\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[28.59193,69.064777],[28.445944,68.364613],[29.977426,67.698297],[29.054589,66.944286],[30.21765,65.80598],[29.54443,64.948672],[30.444685,64.204453],[30.035872,63.552814],[31.516092,62.867687],[31.139991,62.357693],[30.211107,61.780028],[28.069998,60.503517],[26.255173,60.423961],[24.496624,60.057316],[22.869695,59.846373],[22.290764,60.391921],[21.322244,60.72017],[21.544866,61.705329],[21.059211,62.607393],[21.536029,63.189735],[22.442744,63.81781],[24.730512,64.902344],[25.398068,65.111427],[25.294043,65.534346],[23.903379,66.006927],[23.56588,66.396051],[23.539473,67.936009],[21.978535,68.616846],[20.645593,69.106247],[21.244936,69.370443],[22.356238,68.841741],[23.66205,68.891247],[24.735679,68.649557],[25.689213,69.092114],[26.179622,69.825299],[27.732292,70.164193],[29.015573,69.766491],[28.59193,69.064777]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/FIN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              58.81374172\n            ],\n            [\n              16.875,\n              61.60639637\n            ],\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              16.875,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              61.60639637\n            ],\n            [\n              16.875,\n              64.1681069\n            ],\n            [\n              22.5,\n              64.1681069\n            ],\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              16.875,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              66.51326044\n            ],\n            [\n              16.875,\n              68.65655498\n            ],\n            [\n              22.5,\n              68.65655498\n            ],\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              16.875,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              68.65655498\n            ],\n            [\n              16.875,\n              70.61261424\n            ],\n            [\n              22.5,\n              70.61261424\n            ],\n            [\n              22.5,\n              68.65655498\n            ],\n            [\n              16.875,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              28.125,\n              61.60639637\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              22.5,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              22.5,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              22.5,\n              70.61261424\n            ],\n            [\n              33.75,\n              70.61261424\n            ],\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              22.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              28.125,\n              61.60639637\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              33.75,\n              58.81374172\n            ],\n            [\n              28.125,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.59193,\n              69.064777\n            ],\n            [\n              28.445944,\n              68.364613\n            ],\n            [\n              29.977426,\n              67.698297\n            ],\n            [\n              29.054589,\n              66.944286\n            ],\n            [\n              30.21765,\n              65.80598\n            ],\n            [\n              29.54443,\n              64.948672\n            ],\n            [\n              30.444685,\n              64.204453\n            ],\n            [\n              30.035872,\n              63.552814\n            ],\n            [\n              31.516092,\n              62.867687\n            ],\n            [\n              31.139991,\n              62.357693\n            ],\n            [\n              30.211107,\n              61.780028\n            ],\n            [\n              28.069998,\n              60.503517\n            ],\n            [\n              26.255173,\n              60.423961\n            ],\n            [\n              24.496624,\n              60.057316\n            ],\n            [\n              22.869695,\n              59.846373\n            ],\n            [\n              22.290764,\n              60.391921\n            ],\n            [\n              21.322244,\n              60.72017\n            ],\n            [\n              21.544866,\n              61.705329\n            ],\n            [\n              21.059211,\n              62.607393\n            ],\n            [\n              21.536029,\n              63.189735\n            ],\n            [\n              22.442744,\n              63.81781\n            ],\n            [\n              24.730512,\n              64.902344\n            ],\n            [\n              25.398068,\n              65.111427\n            ],\n            [\n              25.294043,\n              65.534346\n            ],\n            [\n              23.903379,\n              66.006927\n            ],\n            [\n              23.56588,\n              66.396051\n            ],\n            [\n              23.539473,\n              67.936009\n            ],\n            [\n              21.978535,\n              68.616846\n            ],\n            [\n              20.645593,\n              69.106247\n            ],\n            [\n              21.244936,\n              69.370443\n            ],\n            [\n              22.356238,\n              68.841741\n            ],\n            [\n              23.66205,\n              68.891247\n            ],\n            [\n              24.735679,\n              68.649557\n            ],\n            [\n              25.689213,\n              69.092114\n            ],\n            [\n              26.179622,\n              69.825299\n            ],\n            [\n              27.732292,\n              70.164193\n            ],\n            [\n              29.015573,\n              69.766491\n            ],\n            [\n              28.59193,\n              69.064777\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/FJI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"FJI\",\"properties\":{\"name\":\"Fiji\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.364143,-16.801354],[178.725059,-17.012042],[178.596839,-16.63915],[179.096609,-16.433984],[179.413509,-16.379054],[180,-16.067133],[180,-16.555217],[179.364143,-16.801354]]],[[[-179.917369,-16.501783],[-180,-16.555217],[-180,-16.067133],[-179.79332,-16.020882],[-179.917369,-16.501783]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/FJI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -180,\n              -16.63619188\n            ],\n            [\n              -180,\n              -11.17840187\n            ],\n            [\n              -174.375,\n              -11.17840187\n            ],\n            [\n              -174.375,\n              -16.63619188\n            ],\n            [\n              -180,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              174.375,\n              -16.63619188\n            ],\n            [\n              174.375,\n              -11.17840187\n            ],\n            [\n              180,\n              -11.17840187\n            ],\n            [\n              180,\n              -16.63619188\n            ],\n            [\n              174.375,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              174.375,\n              -21.94304553\n            ],\n            [\n              174.375,\n              -16.63619188\n            ],\n            [\n              180,\n              -16.63619188\n            ],\n            [\n              180,\n              -21.94304553\n            ],\n            [\n              174.375,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              180,\n              -16.63619188\n            ],\n            [\n              180,\n              -11.17840187\n            ],\n            [\n              185.625,\n              -11.17840187\n            ],\n            [\n              185.625,\n              -16.63619188\n            ],\n            [\n              180,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                178.3736,\n                -17.33992\n              ],\n              [\n                178.71806,\n                -17.62846\n              ],\n              [\n                178.55271,\n                -18.15059\n              ],\n              [\n                177.93266,\n                -18.28799\n              ],\n              [\n                177.38146,\n                -18.16432\n              ],\n              [\n                177.28504,\n                -17.72465\n              ],\n              [\n                177.67087,\n                -17.38114\n              ],\n              [\n                178.12557,\n                -17.50481\n              ],\n              [\n                178.3736,\n                -17.33992\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                179.364143,\n                -16.801354\n              ],\n              [\n                178.725059,\n                -17.012042\n              ],\n              [\n                178.596839,\n                -16.63915\n              ],\n              [\n                179.096609,\n                -16.433984\n              ],\n              [\n                179.413509,\n                -16.379054\n              ],\n              [\n                180,\n                -16.067133\n              ],\n              [\n                180,\n                -16.555217\n              ],\n              [\n                179.364143,\n                -16.801354\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -179.917369,\n                -16.501783\n              ],\n              [\n                -180,\n                -16.555217\n              ],\n              [\n                -180,\n                -16.067133\n              ],\n              [\n                -179.79332,\n                -16.020882\n              ],\n              [\n                -179.917369,\n                -16.501783\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/FLK.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"FLK\",\"properties\":{\"name\":\"Falkland Islands\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/FLK_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -52.48278022\n            ],\n            [\n              -61.875,\n              -48.92249926\n            ],\n            [\n              -56.25,\n              -48.92249926\n            ],\n            [\n              -56.25,\n              -52.48278022\n            ],\n            [\n              -61.875,\n              -52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.2,\n              -51.85\n            ],\n            [\n              -60,\n              -51.25\n            ],\n            [\n              -59.15,\n              -51.5\n            ],\n            [\n              -58.55,\n              -51.1\n            ],\n            [\n              -57.75,\n              -51.55\n            ],\n            [\n              -58.05,\n              -51.9\n            ],\n            [\n              -59.4,\n              -52.2\n            ],\n            [\n              -59.85,\n              -51.85\n            ],\n            [\n              -60.7,\n              -52.3\n            ],\n            [\n              -61.2,\n              -51.85\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/FRA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"FRA\",\"properties\":{\"name\":\"France\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[9.560016,42.152492],[9.229752,41.380007],[8.775723,41.583612],[8.544213,42.256517],[8.746009,42.628122],[9.390001,43.009985],[9.560016,42.152492]]],[[[3.588184,50.378992],[4.286023,49.907497],[4.799222,49.985373],[5.674052,49.529484],[5.897759,49.442667],[6.18632,49.463803],[6.65823,49.201958],[8.099279,49.017784],[7.593676,48.333019],[7.466759,47.620582],[7.192202,47.449766],[6.736571,47.541801],[6.768714,47.287708],[6.037389,46.725779],[6.022609,46.27299],[6.5001,46.429673],[6.843593,45.991147],[6.802355,45.70858],[7.096652,45.333099],[6.749955,45.028518],[7.007562,44.254767],[7.549596,44.127901],[7.435185,43.693845],[6.529245,43.128892],[4.556963,43.399651],[3.100411,43.075201],[2.985999,42.473015],[1.826793,42.343385],[0.701591,42.795734],[0.338047,42.579546],[-1.502771,43.034014],[-1.901351,43.422802],[-1.384225,44.02261],[-1.193798,46.014918],[-2.225724,47.064363],[-2.963276,47.570327],[-4.491555,47.954954],[-4.59235,48.68416],[-3.295814,48.901692],[-1.616511,48.644421],[-1.933494,49.776342],[-0.989469,49.347376],[1.338761,50.127173],[1.639001,50.946606],[2.513573,51.148506],[2.658422,50.796848],[3.123252,50.780363],[3.588184,50.378992]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/FRA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              40.97989807\n            ],\n            [\n              -5.625,\n              45.08903556\n            ],\n            [\n              0,\n              45.08903556\n            ],\n            [\n              0,\n              40.97989807\n            ],\n            [\n              -5.625,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              45.08903556\n            ],\n            [\n              -5.625,\n              48.92249926\n            ],\n            [\n              0,\n              48.92249926\n            ],\n            [\n              0,\n              45.08903556\n            ],\n            [\n              -5.625,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              48.92249926\n            ],\n            [\n              -5.625,\n              52.48278022\n            ],\n            [\n              0,\n              52.48278022\n            ],\n            [\n              0,\n              48.92249926\n            ],\n            [\n              -5.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              40.97989807\n            ],\n            [\n              0,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              0,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              48.92249926\n            ],\n            [\n              0,\n              52.48278022\n            ],\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              0,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              5.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                9.560016,\n                42.152492\n              ],\n              [\n                9.229752,\n                41.380007\n              ],\n              [\n                8.775723,\n                41.583612\n              ],\n              [\n                8.544213,\n                42.256517\n              ],\n              [\n                8.746009,\n                42.628122\n              ],\n              [\n                9.390001,\n                43.009985\n              ],\n              [\n                9.560016,\n                42.152492\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                3.588184,\n                50.378992\n              ],\n              [\n                4.286023,\n                49.907497\n              ],\n              [\n                4.799222,\n                49.985373\n              ],\n              [\n                5.674052,\n                49.529484\n              ],\n              [\n                5.897759,\n                49.442667\n              ],\n              [\n                6.18632,\n                49.463803\n              ],\n              [\n                6.65823,\n                49.201958\n              ],\n              [\n                8.099279,\n                49.017784\n              ],\n              [\n                7.593676,\n                48.333019\n              ],\n              [\n                7.466759,\n                47.620582\n              ],\n              [\n                7.192202,\n                47.449766\n              ],\n              [\n                6.736571,\n                47.541801\n              ],\n              [\n                6.768714,\n                47.287708\n              ],\n              [\n                6.037389,\n                46.725779\n              ],\n              [\n                6.022609,\n                46.27299\n              ],\n              [\n                6.5001,\n                46.429673\n              ],\n              [\n                6.843593,\n                45.991147\n              ],\n              [\n                6.802355,\n                45.70858\n              ],\n              [\n                7.096652,\n                45.333099\n              ],\n              [\n                6.749955,\n                45.028518\n              ],\n              [\n                7.007562,\n                44.254767\n              ],\n              [\n                7.549596,\n                44.127901\n              ],\n              [\n                7.435185,\n                43.693845\n              ],\n              [\n                6.529245,\n                43.128892\n              ],\n              [\n                4.556963,\n                43.399651\n              ],\n              [\n                3.100411,\n                43.075201\n              ],\n              [\n                2.985999,\n                42.473015\n              ],\n              [\n                1.826793,\n                42.343385\n              ],\n              [\n                0.701591,\n                42.795734\n              ],\n              [\n                0.338047,\n                42.579546\n              ],\n              [\n                -1.502771,\n                43.034014\n              ],\n              [\n                -1.901351,\n                43.422802\n              ],\n              [\n                -1.384225,\n                44.02261\n              ],\n              [\n                -1.193798,\n                46.014918\n              ],\n              [\n                -2.225724,\n                47.064363\n              ],\n              [\n                -2.963276,\n                47.570327\n              ],\n              [\n                -4.491555,\n                47.954954\n              ],\n              [\n                -4.59235,\n                48.68416\n              ],\n              [\n                -3.295814,\n                48.901692\n              ],\n              [\n                -1.616511,\n                48.644421\n              ],\n              [\n                -1.933494,\n                49.776342\n              ],\n              [\n                -0.989469,\n                49.347376\n              ],\n              [\n                1.338761,\n                50.127173\n              ],\n              [\n                1.639001,\n                50.946606\n              ],\n              [\n                2.513573,\n                51.148506\n              ],\n              [\n                2.658422,\n                50.796848\n              ],\n              [\n                3.123252,\n                50.780363\n              ],\n              [\n                3.588184,\n                50.378992\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GAB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GAB\",\"properties\":{\"name\":\"Gabon\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[11.093773,-3.978827],[10.066135,-2.969483],[9.405245,-2.144313],[8.797996,-1.111301],[8.830087,-0.779074],[9.04842,-0.459351],[9.291351,0.268666],[9.492889,1.01012],[9.830284,1.067894],[11.285079,1.057662],[11.276449,2.261051],[11.751665,2.326758],[12.35938,2.192812],[12.951334,2.321616],[13.075822,2.267097],[13.003114,1.830896],[13.282631,1.314184],[14.026669,1.395677],[14.276266,1.19693],[13.843321,0.038758],[14.316418,-0.552627],[14.425456,-1.333407],[14.29921,-1.998276],[13.992407,-2.470805],[13.109619,-2.42874],[12.575284,-1.948511],[12.495703,-2.391688],[11.820964,-2.514161],[11.478039,-2.765619],[11.855122,-3.426871],[11.093773,-3.978827]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GAB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -5.61598582\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              16.875,\n              -5.61598582\n            ],\n            [\n              11.25,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              0\n            ],\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              11.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              -5.61598582\n            ],\n            [\n              5.625,\n              0\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              11.25,\n              -5.61598582\n            ],\n            [\n              5.625,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              0\n            ],\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              5.625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.093773,\n              -3.978827\n            ],\n            [\n              10.066135,\n              -2.969483\n            ],\n            [\n              9.405245,\n              -2.144313\n            ],\n            [\n              8.797996,\n              -1.111301\n            ],\n            [\n              8.830087,\n              -0.779074\n            ],\n            [\n              9.04842,\n              -0.459351\n            ],\n            [\n              9.291351,\n              0.268666\n            ],\n            [\n              9.492889,\n              1.01012\n            ],\n            [\n              9.830284,\n              1.067894\n            ],\n            [\n              11.285079,\n              1.057662\n            ],\n            [\n              11.276449,\n              2.261051\n            ],\n            [\n              11.751665,\n              2.326758\n            ],\n            [\n              12.35938,\n              2.192812\n            ],\n            [\n              12.951334,\n              2.321616\n            ],\n            [\n              13.075822,\n              2.267097\n            ],\n            [\n              13.003114,\n              1.830896\n            ],\n            [\n              13.282631,\n              1.314184\n            ],\n            [\n              14.026669,\n              1.395677\n            ],\n            [\n              14.276266,\n              1.19693\n            ],\n            [\n              13.843321,\n              0.038758\n            ],\n            [\n              14.316418,\n              -0.552627\n            ],\n            [\n              14.425456,\n              -1.333407\n            ],\n            [\n              14.29921,\n              -1.998276\n            ],\n            [\n              13.992407,\n              -2.470805\n            ],\n            [\n              13.109619,\n              -2.42874\n            ],\n            [\n              12.575284,\n              -1.948511\n            ],\n            [\n              12.495703,\n              -2.391688\n            ],\n            [\n              11.820964,\n              -2.514161\n            ],\n            [\n              11.478039,\n              -2.765619\n            ],\n            [\n              11.855122,\n              -3.426871\n            ],\n            [\n              11.093773,\n              -3.978827\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GBR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GBR\",\"properties\":{\"name\":\"United Kingdom\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-5.661949,54.554603],[-6.197885,53.867565],[-6.95373,54.073702],[-7.572168,54.059956],[-7.366031,54.595841],[-7.572168,55.131622],[-6.733847,55.17286],[-5.661949,54.554603]]],[[[-3.005005,58.635],[-4.073828,57.553025],[-3.055002,57.690019],[-1.959281,57.6848],[-2.219988,56.870017],[-3.119003,55.973793],[-2.085009,55.909998],[-2.005676,55.804903],[-1.114991,54.624986],[-0.430485,54.464376],[0.184981,53.325014],[0.469977,52.929999],[1.681531,52.73952],[1.559988,52.099998],[1.050562,51.806761],[1.449865,51.289428],[0.550334,50.765739],[-0.787517,50.774989],[-2.489998,50.500019],[-2.956274,50.69688],[-3.617448,50.228356],[-4.542508,50.341837],[-5.245023,49.96],[-5.776567,50.159678],[-4.30999,51.210001],[-3.414851,51.426009],[-3.422719,51.426848],[-4.984367,51.593466],[-5.267296,51.9914],[-4.222347,52.301356],[-4.770013,52.840005],[-4.579999,53.495004],[-3.093831,53.404547],[-3.09208,53.404441],[-2.945009,53.985],[-3.614701,54.600937],[-3.630005,54.615013],[-4.844169,54.790971],[-5.082527,55.061601],[-4.719112,55.508473],[-5.047981,55.783986],[-5.586398,55.311146],[-5.644999,56.275015],[-6.149981,56.78501],[-5.786825,57.818848],[-5.009999,58.630013],[-4.211495,58.550845],[-3.005005,58.635]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GBR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              48.92249926\n            ],\n            [\n              -11.25,\n              55.77657302\n            ],\n            [\n              0,\n              55.77657302\n            ],\n            [\n              0,\n              48.92249926\n            ],\n            [\n              -11.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              55.77657302\n            ],\n            [\n              -11.25,\n              58.81374172\n            ],\n            [\n              -5.625,\n              58.81374172\n            ],\n            [\n              -5.625,\n              55.77657302\n            ],\n            [\n              -11.25,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              55.77657302\n            ],\n            [\n              -5.625,\n              58.81374172\n            ],\n            [\n              0,\n              58.81374172\n            ],\n            [\n              0,\n              55.77657302\n            ],\n            [\n              -5.625,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              48.92249926\n            ],\n            [\n              0,\n              52.48278022\n            ],\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              0,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              52.48278022\n            ],\n            [\n              0,\n              55.77657302\n            ],\n            [\n              5.625,\n              55.77657302\n            ],\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              0,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                -5.661949,\n                54.554603\n              ],\n              [\n                -6.197885,\n                53.867565\n              ],\n              [\n                -6.95373,\n                54.073702\n              ],\n              [\n                -7.572168,\n                54.059956\n              ],\n              [\n                -7.366031,\n                54.595841\n              ],\n              [\n                -7.572168,\n                55.131622\n              ],\n              [\n                -6.733847,\n                55.17286\n              ],\n              [\n                -5.661949,\n                54.554603\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -3.005005,\n                58.635\n              ],\n              [\n                -4.073828,\n                57.553025\n              ],\n              [\n                -3.055002,\n                57.690019\n              ],\n              [\n                -1.959281,\n                57.6848\n              ],\n              [\n                -2.219988,\n                56.870017\n              ],\n              [\n                -3.119003,\n                55.973793\n              ],\n              [\n                -2.085009,\n                55.909998\n              ],\n              [\n                -2.005676,\n                55.804903\n              ],\n              [\n                -1.114991,\n                54.624986\n              ],\n              [\n                -0.430485,\n                54.464376\n              ],\n              [\n                0.184981,\n                53.325014\n              ],\n              [\n                0.469977,\n                52.929999\n              ],\n              [\n                1.681531,\n                52.73952\n              ],\n              [\n                1.559988,\n                52.099998\n              ],\n              [\n                1.050562,\n                51.806761\n              ],\n              [\n                1.449865,\n                51.289428\n              ],\n              [\n                0.550334,\n                50.765739\n              ],\n              [\n                -0.787517,\n                50.774989\n              ],\n              [\n                -2.489998,\n                50.500019\n              ],\n              [\n                -2.956274,\n                50.69688\n              ],\n              [\n                -3.617448,\n                50.228356\n              ],\n              [\n                -4.542508,\n                50.341837\n              ],\n              [\n                -5.245023,\n                49.96\n              ],\n              [\n                -5.776567,\n                50.159678\n              ],\n              [\n                -4.30999,\n                51.210001\n              ],\n              [\n                -3.414851,\n                51.426009\n              ],\n              [\n                -3.422719,\n                51.426848\n              ],\n              [\n                -4.984367,\n                51.593466\n              ],\n              [\n                -5.267296,\n                51.9914\n              ],\n              [\n                -4.222347,\n                52.301356\n              ],\n              [\n                -4.770013,\n                52.840005\n              ],\n              [\n                -4.579999,\n                53.495004\n              ],\n              [\n                -3.093831,\n                53.404547\n              ],\n              [\n                -3.09208,\n                53.404441\n              ],\n              [\n                -2.945009,\n                53.985\n              ],\n              [\n                -3.614701,\n                54.600937\n              ],\n              [\n                -3.630005,\n                54.615013\n              ],\n              [\n                -4.844169,\n                54.790971\n              ],\n              [\n                -5.082527,\n                55.061601\n              ],\n              [\n                -4.719112,\n                55.508473\n              ],\n              [\n                -5.047981,\n                55.783986\n              ],\n              [\n                -5.586398,\n                55.311146\n              ],\n              [\n                -5.644999,\n                56.275015\n              ],\n              [\n                -6.149981,\n                56.78501\n              ],\n              [\n                -5.786825,\n                57.818848\n              ],\n              [\n                -5.009999,\n                58.630013\n              ],\n              [\n                -4.211495,\n                58.550845\n              ],\n              [\n                -3.005005,\n                58.635\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GEO.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GEO\",\"properties\":{\"name\":\"Georgia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[41.554084,41.535656],[41.703171,41.962943],[41.45347,42.645123],[40.875469,43.013628],[40.321394,43.128634],[39.955009,43.434998],[40.076965,43.553104],[40.922185,43.382159],[42.394395,43.220308],[43.756017,42.740828],[43.9312,42.554974],[44.537623,42.711993],[45.470279,42.502781],[45.77641,42.092444],[46.404951,41.860675],[46.145432,41.722802],[46.637908,41.181673],[46.501637,41.064445],[45.962601,41.123873],[45.217426,41.411452],[44.97248,41.248129],[43.582746,41.092143],[42.619549,41.583173],[41.554084,41.535656]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GEO_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              39.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              41.554084,\n              41.535656\n            ],\n            [\n              41.703171,\n              41.962943\n            ],\n            [\n              41.45347,\n              42.645123\n            ],\n            [\n              40.875469,\n              43.013628\n            ],\n            [\n              40.321394,\n              43.128634\n            ],\n            [\n              39.955009,\n              43.434998\n            ],\n            [\n              40.076965,\n              43.553104\n            ],\n            [\n              40.922185,\n              43.382159\n            ],\n            [\n              42.394395,\n              43.220308\n            ],\n            [\n              43.756017,\n              42.740828\n            ],\n            [\n              43.9312,\n              42.554974\n            ],\n            [\n              44.537623,\n              42.711993\n            ],\n            [\n              45.470279,\n              42.502781\n            ],\n            [\n              45.77641,\n              42.092444\n            ],\n            [\n              46.404951,\n              41.860675\n            ],\n            [\n              46.145432,\n              41.722802\n            ],\n            [\n              46.637908,\n              41.181673\n            ],\n            [\n              46.501637,\n              41.064445\n            ],\n            [\n              45.962601,\n              41.123873\n            ],\n            [\n              45.217426,\n              41.411452\n            ],\n            [\n              44.97248,\n              41.248129\n            ],\n            [\n              43.582746,\n              41.092143\n            ],\n            [\n              42.619549,\n              41.583173\n            ],\n            [\n              41.554084,\n              41.535656\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GHA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GHA\",\"properties\":{\"name\":\"Ghana\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[1.060122,5.928837],[-0.507638,5.343473],[-1.063625,5.000548],[-1.964707,4.710462],[-2.856125,4.994476],[-2.810701,5.389051],[-3.24437,6.250472],[-2.983585,7.379705],[-2.56219,8.219628],[-2.827496,9.642461],[-2.963896,10.395335],[-2.940409,10.96269],[-1.203358,11.009819],[-0.761576,10.93693],[-0.438702,11.098341],[0.023803,11.018682],[-0.049785,10.706918],[0.36758,10.191213],[0.365901,9.465004],[0.461192,8.677223],[0.712029,8.312465],[0.490957,7.411744],[0.570384,6.914359],[0.836931,6.279979],[1.060122,5.928837]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GHA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              0\n            ],\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              0,\n              5.61598582\n            ],\n            [\n              0,\n              0\n            ],\n            [\n              -5.625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              5.61598582\n            ],\n            [\n              -5.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              0\n            ],\n            [\n              0,\n              5.61598582\n            ],\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              5.625,\n              0\n            ],\n            [\n              0,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              5.61598582\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              0,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              1.060122,\n              5.928837\n            ],\n            [\n              -0.507638,\n              5.343473\n            ],\n            [\n              -1.063625,\n              5.000548\n            ],\n            [\n              -1.964707,\n              4.710462\n            ],\n            [\n              -2.856125,\n              4.994476\n            ],\n            [\n              -2.810701,\n              5.389051\n            ],\n            [\n              -3.24437,\n              6.250472\n            ],\n            [\n              -2.983585,\n              7.379705\n            ],\n            [\n              -2.56219,\n              8.219628\n            ],\n            [\n              -2.827496,\n              9.642461\n            ],\n            [\n              -2.963896,\n              10.395335\n            ],\n            [\n              -2.940409,\n              10.96269\n            ],\n            [\n              -1.203358,\n              11.009819\n            ],\n            [\n              -0.761576,\n              10.93693\n            ],\n            [\n              -0.438702,\n              11.098341\n            ],\n            [\n              0.023803,\n              11.018682\n            ],\n            [\n              -0.049785,\n              10.706918\n            ],\n            [\n              0.36758,\n              10.191213\n            ],\n            [\n              0.365901,\n              9.465004\n            ],\n            [\n              0.461192,\n              8.677223\n            ],\n            [\n              0.712029,\n              8.312465\n            ],\n            [\n              0.490957,\n              7.411744\n            ],\n            [\n              0.570384,\n              6.914359\n            ],\n            [\n              0.836931,\n              6.279979\n            ],\n            [\n              1.060122,\n              5.928837\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GIN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GIN\",\"properties\":{\"name\":\"Guinea\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-8.439298,7.686043],[-8.722124,7.711674],[-8.926065,7.309037],[-9.208786,7.313921],[-9.403348,7.526905],[-9.33728,7.928534],[-9.755342,8.541055],[-10.016567,8.428504],[-10.230094,8.406206],[-10.505477,8.348896],[-10.494315,8.715541],[-10.65477,8.977178],[-10.622395,9.26791],[-10.839152,9.688246],[-11.117481,10.045873],[-11.917277,10.046984],[-12.150338,9.858572],[-12.425929,9.835834],[-12.596719,9.620188],[-12.711958,9.342712],[-13.24655,8.903049],[-13.685154,9.494744],[-14.074045,9.886167],[-14.330076,10.01572],[-14.579699,10.214467],[-14.693232,10.656301],[-14.839554,10.876572],[-15.130311,11.040412],[-14.685687,11.527824],[-14.382192,11.509272],[-14.121406,11.677117],[-13.9008,11.678719],[-13.743161,11.811269],[-13.828272,12.142644],[-13.718744,12.247186],[-13.700476,12.586183],[-13.217818,12.575874],[-12.499051,12.33209],[-12.278599,12.35444],[-12.203565,12.465648],[-11.658301,12.386583],[-11.513943,12.442988],[-11.456169,12.076834],[-11.297574,12.077971],[-11.036556,12.211245],[-10.87083,12.177887],[-10.593224,11.923975],[-10.165214,11.844084],[-9.890993,12.060479],[-9.567912,12.194243],[-9.327616,12.334286],[-9.127474,12.30806],[-8.905265,12.088358],[-8.786099,11.812561],[-8.376305,11.393646],[-8.581305,11.136246],[-8.620321,10.810891],[-8.407311,10.909257],[-8.282357,10.792597],[-8.335377,10.494812],[-8.029944,10.206535],[-8.229337,10.12902],[-8.309616,9.789532],[-8.079114,9.376224],[-7.8321,8.575704],[-8.203499,8.455453],[-8.299049,8.316444],[-8.221792,8.123329],[-8.280703,7.68718],[-8.439298,7.686043]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GIN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -5.625,\n              16.63619188\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              -11.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -11.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -16.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              5.61598582\n            ],\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -16.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -8.439298,\n              7.686043\n            ],\n            [\n              -8.722124,\n              7.711674\n            ],\n            [\n              -8.926065,\n              7.309037\n            ],\n            [\n              -9.208786,\n              7.313921\n            ],\n            [\n              -9.403348,\n              7.526905\n            ],\n            [\n              -9.33728,\n              7.928534\n            ],\n            [\n              -9.755342,\n              8.541055\n            ],\n            [\n              -10.016567,\n              8.428504\n            ],\n            [\n              -10.230094,\n              8.406206\n            ],\n            [\n              -10.505477,\n              8.348896\n            ],\n            [\n              -10.494315,\n              8.715541\n            ],\n            [\n              -10.65477,\n              8.977178\n            ],\n            [\n              -10.622395,\n              9.26791\n            ],\n            [\n              -10.839152,\n              9.688246\n            ],\n            [\n              -11.117481,\n              10.045873\n            ],\n            [\n              -11.917277,\n              10.046984\n            ],\n            [\n              -12.150338,\n              9.858572\n            ],\n            [\n              -12.425929,\n              9.835834\n            ],\n            [\n              -12.596719,\n              9.620188\n            ],\n            [\n              -12.711958,\n              9.342712\n            ],\n            [\n              -13.24655,\n              8.903049\n            ],\n            [\n              -13.685154,\n              9.494744\n            ],\n            [\n              -14.074045,\n              9.886167\n            ],\n            [\n              -14.330076,\n              10.01572\n            ],\n            [\n              -14.579699,\n              10.214467\n            ],\n            [\n              -14.693232,\n              10.656301\n            ],\n            [\n              -14.839554,\n              10.876572\n            ],\n            [\n              -15.130311,\n              11.040412\n            ],\n            [\n              -14.685687,\n              11.527824\n            ],\n            [\n              -14.382192,\n              11.509272\n            ],\n            [\n              -14.121406,\n              11.677117\n            ],\n            [\n              -13.9008,\n              11.678719\n            ],\n            [\n              -13.743161,\n              11.811269\n            ],\n            [\n              -13.828272,\n              12.142644\n            ],\n            [\n              -13.718744,\n              12.247186\n            ],\n            [\n              -13.700476,\n              12.586183\n            ],\n            [\n              -13.217818,\n              12.575874\n            ],\n            [\n              -12.499051,\n              12.33209\n            ],\n            [\n              -12.278599,\n              12.35444\n            ],\n            [\n              -12.203565,\n              12.465648\n            ],\n            [\n              -11.658301,\n              12.386583\n            ],\n            [\n              -11.513943,\n              12.442988\n            ],\n            [\n              -11.456169,\n              12.076834\n            ],\n            [\n              -11.297574,\n              12.077971\n            ],\n            [\n              -11.036556,\n              12.211245\n            ],\n            [\n              -10.87083,\n              12.177887\n            ],\n            [\n              -10.593224,\n              11.923975\n            ],\n            [\n              -10.165214,\n              11.844084\n            ],\n            [\n              -9.890993,\n              12.060479\n            ],\n            [\n              -9.567912,\n              12.194243\n            ],\n            [\n              -9.327616,\n              12.334286\n            ],\n            [\n              -9.127474,\n              12.30806\n            ],\n            [\n              -8.905265,\n              12.088358\n            ],\n            [\n              -8.786099,\n              11.812561\n            ],\n            [\n              -8.376305,\n              11.393646\n            ],\n            [\n              -8.581305,\n              11.136246\n            ],\n            [\n              -8.620321,\n              10.810891\n            ],\n            [\n              -8.407311,\n              10.909257\n            ],\n            [\n              -8.282357,\n              10.792597\n            ],\n            [\n              -8.335377,\n              10.494812\n            ],\n            [\n              -8.029944,\n              10.206535\n            ],\n            [\n              -8.229337,\n              10.12902\n            ],\n            [\n              -8.309616,\n              9.789532\n            ],\n            [\n              -8.079114,\n              9.376224\n            ],\n            [\n              -7.8321,\n              8.575704\n            ],\n            [\n              -8.203499,\n              8.455453\n            ],\n            [\n              -8.299049,\n              8.316444\n            ],\n            [\n              -8.221792,\n              8.123329\n            ],\n            [\n              -8.280703,\n              7.68718\n            ],\n            [\n              -8.439298,\n              7.686043\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GMB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GMB\",\"properties\":{\"name\":\"Gambia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-16.841525,13.151394],[-16.713729,13.594959],[-15.624596,13.623587],[-15.39877,13.860369],[-15.081735,13.876492],[-14.687031,13.630357],[-14.376714,13.62568],[-14.046992,13.794068],[-13.844963,13.505042],[-14.277702,13.280585],[-14.712197,13.298207],[-15.141163,13.509512],[-15.511813,13.27857],[-15.691001,13.270353],[-15.931296,13.130284],[-16.841525,13.151394]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GMB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -16.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.841525,\n              13.151394\n            ],\n            [\n              -16.713729,\n              13.594959\n            ],\n            [\n              -15.624596,\n              13.623587\n            ],\n            [\n              -15.39877,\n              13.860369\n            ],\n            [\n              -15.081735,\n              13.876492\n            ],\n            [\n              -14.687031,\n              13.630357\n            ],\n            [\n              -14.376714,\n              13.62568\n            ],\n            [\n              -14.046992,\n              13.794068\n            ],\n            [\n              -13.844963,\n              13.505042\n            ],\n            [\n              -14.277702,\n              13.280585\n            ],\n            [\n              -14.712197,\n              13.298207\n            ],\n            [\n              -15.141163,\n              13.509512\n            ],\n            [\n              -15.511813,\n              13.27857\n            ],\n            [\n              -15.691001,\n              13.270353\n            ],\n            [\n              -15.931296,\n              13.130284\n            ],\n            [\n              -16.841525,\n              13.151394\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GNB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GNB\",\"properties\":{\"name\":\"Guinea Bissau\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-15.130311,11.040412],[-15.66418,11.458474],[-16.085214,11.524594],[-16.314787,11.806515],[-16.308947,11.958702],[-16.613838,12.170911],[-16.677452,12.384852],[-16.147717,12.547762],[-15.816574,12.515567],[-15.548477,12.62817],[-13.700476,12.586183],[-13.718744,12.247186],[-13.828272,12.142644],[-13.743161,11.811269],[-13.9008,11.678719],[-14.121406,11.677117],[-14.382192,11.509272],[-14.685687,11.527824],[-15.130311,11.040412]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GNB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -16.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              5.61598582\n            ],\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -16.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -15.130311,\n              11.040412\n            ],\n            [\n              -15.66418,\n              11.458474\n            ],\n            [\n              -16.085214,\n              11.524594\n            ],\n            [\n              -16.314787,\n              11.806515\n            ],\n            [\n              -16.308947,\n              11.958702\n            ],\n            [\n              -16.613838,\n              12.170911\n            ],\n            [\n              -16.677452,\n              12.384852\n            ],\n            [\n              -16.147717,\n              12.547762\n            ],\n            [\n              -15.816574,\n              12.515567\n            ],\n            [\n              -15.548477,\n              12.62817\n            ],\n            [\n              -13.700476,\n              12.586183\n            ],\n            [\n              -13.718744,\n              12.247186\n            ],\n            [\n              -13.828272,\n              12.142644\n            ],\n            [\n              -13.743161,\n              11.811269\n            ],\n            [\n              -13.9008,\n              11.678719\n            ],\n            [\n              -14.121406,\n              11.677117\n            ],\n            [\n              -14.382192,\n              11.509272\n            ],\n            [\n              -14.685687,\n              11.527824\n            ],\n            [\n              -15.130311,\n              11.040412\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GNQ.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GNQ\",\"properties\":{\"name\":\"Equatorial Guinea\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[9.492889,1.01012],[9.305613,1.160911],[9.649158,2.283866],[11.276449,2.261051],[11.285079,1.057662],[9.830284,1.067894],[9.492889,1.01012]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GNQ_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              0\n            ],\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              16.875,\n              0\n            ],\n            [\n              11.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              0\n            ],\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              5.625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              9.492889,\n              1.01012\n            ],\n            [\n              9.305613,\n              1.160911\n            ],\n            [\n              9.649158,\n              2.283866\n            ],\n            [\n              11.276449,\n              2.261051\n            ],\n            [\n              11.285079,\n              1.057662\n            ],\n            [\n              9.830284,\n              1.067894\n            ],\n            [\n              9.492889,\n              1.01012\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GRC.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GRC\",\"properties\":{\"name\":\"Greece\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[23.69998,35.705004],[24.246665,35.368022],[25.025015,35.424996],[25.769208,35.354018],[25.745023,35.179998],[26.290003,35.29999],[26.164998,35.004995],[24.724982,34.919988],[24.735007,35.084991],[23.514978,35.279992],[23.69998,35.705004]]],[[[26.604196,41.562115],[26.294602,40.936261],[26.056942,40.824123],[25.447677,40.852545],[24.925848,40.947062],[23.714811,40.687129],[24.407999,40.124993],[23.899968,39.962006],[23.342999,39.960998],[22.813988,40.476005],[22.626299,40.256561],[22.849748,39.659311],[23.350027,39.190011],[22.973099,38.970903],[23.530016,38.510001],[24.025025,38.219993],[24.040011,37.655015],[23.115003,37.920011],[23.409972,37.409991],[22.774972,37.30501],[23.154225,36.422506],[22.490028,36.41],[21.670026,36.844986],[21.295011,37.644989],[21.120034,38.310323],[20.730032,38.769985],[20.217712,39.340235],[20.150016,39.624998],[20.615,40.110007],[20.674997,40.435],[20.99999,40.580004],[21.02004,40.842727],[21.674161,40.931275],[22.055378,41.149866],[22.597308,41.130487],[22.76177,41.3048],[22.952377,41.337994],[23.692074,41.309081],[24.492645,41.583896],[25.197201,41.234486],[26.106138,41.328899],[26.117042,41.826905],[26.604196,41.562115]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GRC_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              31.95216224\n            ],\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              22.5,\n              31.95216224\n            ],\n            [\n              16.875,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              16.875,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              31.95216224\n            ],\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              28.125,\n              36.59788913\n            ],\n            [\n              28.125,\n              31.95216224\n            ],\n            [\n              22.5,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              28.125,\n              36.59788913\n            ],\n            [\n              22.5,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                23.69998,\n                35.705004\n              ],\n              [\n                24.246665,\n                35.368022\n              ],\n              [\n                25.025015,\n                35.424996\n              ],\n              [\n                25.769208,\n                35.354018\n              ],\n              [\n                25.745023,\n                35.179998\n              ],\n              [\n                26.290003,\n                35.29999\n              ],\n              [\n                26.164998,\n                35.004995\n              ],\n              [\n                24.724982,\n                34.919988\n              ],\n              [\n                24.735007,\n                35.084991\n              ],\n              [\n                23.514978,\n                35.279992\n              ],\n              [\n                23.69998,\n                35.705004\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                26.604196,\n                41.562115\n              ],\n              [\n                26.294602,\n                40.936261\n              ],\n              [\n                26.056942,\n                40.824123\n              ],\n              [\n                25.447677,\n                40.852545\n              ],\n              [\n                24.925848,\n                40.947062\n              ],\n              [\n                23.714811,\n                40.687129\n              ],\n              [\n                24.407999,\n                40.124993\n              ],\n              [\n                23.899968,\n                39.962006\n              ],\n              [\n                23.342999,\n                39.960998\n              ],\n              [\n                22.813988,\n                40.476005\n              ],\n              [\n                22.626299,\n                40.256561\n              ],\n              [\n                22.849748,\n                39.659311\n              ],\n              [\n                23.350027,\n                39.190011\n              ],\n              [\n                22.973099,\n                38.970903\n              ],\n              [\n                23.530016,\n                38.510001\n              ],\n              [\n                24.025025,\n                38.219993\n              ],\n              [\n                24.040011,\n                37.655015\n              ],\n              [\n                23.115003,\n                37.920011\n              ],\n              [\n                23.409972,\n                37.409991\n              ],\n              [\n                22.774972,\n                37.30501\n              ],\n              [\n                23.154225,\n                36.422506\n              ],\n              [\n                22.490028,\n                36.41\n              ],\n              [\n                21.670026,\n                36.844986\n              ],\n              [\n                21.295011,\n                37.644989\n              ],\n              [\n                21.120034,\n                38.310323\n              ],\n              [\n                20.730032,\n                38.769985\n              ],\n              [\n                20.217712,\n                39.340235\n              ],\n              [\n                20.150016,\n                39.624998\n              ],\n              [\n                20.615,\n                40.110007\n              ],\n              [\n                20.674997,\n                40.435\n              ],\n              [\n                20.99999,\n                40.580004\n              ],\n              [\n                21.02004,\n                40.842727\n              ],\n              [\n                21.674161,\n                40.931275\n              ],\n              [\n                22.055378,\n                41.149866\n              ],\n              [\n                22.597308,\n                41.130487\n              ],\n              [\n                22.76177,\n                41.3048\n              ],\n              [\n                22.952377,\n                41.337994\n              ],\n              [\n                23.692074,\n                41.309081\n              ],\n              [\n                24.492645,\n                41.583896\n              ],\n              [\n                25.197201,\n                41.234486\n              ],\n              [\n                26.106138,\n                41.328899\n              ],\n              [\n                26.117042,\n                41.826905\n              ],\n              [\n                26.604196,\n                41.562115\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GRL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GRL\",\"properties\":{\"name\":\"Greenland\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.406537],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GRL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              80.1787135\n            ],\n            [\n              -16.875,\n              81.09321385\n            ],\n            [\n              -11.25,\n              81.09321385\n            ],\n            [\n              -11.25,\n              80.1787135\n            ],\n            [\n              -16.875,\n              80.1787135\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              81.09321385\n            ],\n            [\n              -16.875,\n              81.92318633\n            ],\n            [\n              -11.25,\n              81.92318633\n            ],\n            [\n              -11.25,\n              81.09321385\n            ],\n            [\n              -16.875,\n              81.09321385\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              68.65655498\n            ],\n            [\n              -22.5,\n              70.61261424\n            ],\n            [\n              -16.875,\n              70.61261424\n            ],\n            [\n              -16.875,\n              68.65655498\n            ],\n            [\n              -22.5,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              70.61261424\n            ],\n            [\n              -22.5,\n              72.39570571\n            ],\n            [\n              -16.875,\n              72.39570571\n            ],\n            [\n              -16.875,\n              70.61261424\n            ],\n            [\n              -22.5,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              72.39570571\n            ],\n            [\n              -22.5,\n              74.01954331\n            ],\n            [\n              -16.875,\n              74.01954331\n            ],\n            [\n              -16.875,\n              72.39570571\n            ],\n            [\n              -22.5,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              74.01954331\n            ],\n            [\n              -22.5,\n              75.49715732\n            ],\n            [\n              -16.875,\n              75.49715732\n            ],\n            [\n              -16.875,\n              74.01954331\n            ],\n            [\n              -22.5,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              75.49715732\n            ],\n            [\n              -22.5,\n              76.84081641\n            ],\n            [\n              -16.875,\n              76.84081641\n            ],\n            [\n              -16.875,\n              75.49715732\n            ],\n            [\n              -22.5,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              76.84081641\n            ],\n            [\n              -22.5,\n              78.06198919\n            ],\n            [\n              -16.875,\n              78.06198919\n            ],\n            [\n              -16.875,\n              76.84081641\n            ],\n            [\n              -22.5,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              78.06198919\n            ],\n            [\n              -22.5,\n              79.17133464\n            ],\n            [\n              -16.875,\n              79.17133464\n            ],\n            [\n              -16.875,\n              78.06198919\n            ],\n            [\n              -22.5,\n              78.06198919\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              79.17133464\n            ],\n            [\n              -22.5,\n              80.1787135\n            ],\n            [\n              -16.875,\n              80.1787135\n            ],\n            [\n              -16.875,\n              79.17133464\n            ],\n            [\n              -22.5,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              80.1787135\n            ],\n            [\n              -22.5,\n              81.09321385\n            ],\n            [\n              -16.875,\n              81.09321385\n            ],\n            [\n              -16.875,\n              80.1787135\n            ],\n            [\n              -22.5,\n              80.1787135\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              81.09321385\n            ],\n            [\n              -22.5,\n              81.92318633\n            ],\n            [\n              -16.875,\n              81.92318633\n            ],\n            [\n              -16.875,\n              81.09321385\n            ],\n            [\n              -22.5,\n              81.09321385\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              81.92318633\n            ],\n            [\n              -22.5,\n              82.67628498\n            ],\n            [\n              -16.875,\n              82.67628498\n            ],\n            [\n              -16.875,\n              81.92318633\n            ],\n            [\n              -22.5,\n              81.92318633\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              82.67628498\n            ],\n            [\n              -22.5,\n              83.35951133\n            ],\n            [\n              -16.875,\n              83.35951133\n            ],\n            [\n              -16.875,\n              82.67628498\n            ],\n            [\n              -22.5,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -33.75,\n              82.67628498\n            ],\n            [\n              -33.75,\n              83.9792595\n            ],\n            [\n              -22.5,\n              83.9792595\n            ],\n            [\n              -22.5,\n              82.67628498\n            ],\n            [\n              -33.75,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -39.375,\n              64.1681069\n            ],\n            [\n              -39.375,\n              66.51326044\n            ],\n            [\n              -33.75,\n              66.51326044\n            ],\n            [\n              -33.75,\n              64.1681069\n            ],\n            [\n              -39.375,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -39.375,\n              82.67628498\n            ],\n            [\n              -39.375,\n              83.35951133\n            ],\n            [\n              -33.75,\n              83.35951133\n            ],\n            [\n              -33.75,\n              82.67628498\n            ],\n            [\n              -39.375,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -39.375,\n              83.35951133\n            ],\n            [\n              -39.375,\n              83.9792595\n            ],\n            [\n              -33.75,\n              83.9792595\n            ],\n            [\n              -33.75,\n              83.35951133\n            ],\n            [\n              -39.375,\n              83.35951133\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              58.81374172\n            ],\n            [\n              -45,\n              61.60639637\n            ],\n            [\n              -39.375,\n              61.60639637\n            ],\n            [\n              -39.375,\n              58.81374172\n            ],\n            [\n              -45,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              61.60639637\n            ],\n            [\n              -45,\n              64.1681069\n            ],\n            [\n              -39.375,\n              64.1681069\n            ],\n            [\n              -39.375,\n              61.60639637\n            ],\n            [\n              -45,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              64.1681069\n            ],\n            [\n              -45,\n              66.51326044\n            ],\n            [\n              -39.375,\n              66.51326044\n            ],\n            [\n              -39.375,\n              64.1681069\n            ],\n            [\n              -45,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              66.51326044\n            ],\n            [\n              -45,\n              74.01954331\n            ],\n            [\n              -22.5,\n              74.01954331\n            ],\n            [\n              -22.5,\n              66.51326044\n            ],\n            [\n              -45,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              74.01954331\n            ],\n            [\n              -45,\n              79.17133464\n            ],\n            [\n              -22.5,\n              79.17133464\n            ],\n            [\n              -22.5,\n              74.01954331\n            ],\n            [\n              -45,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              79.17133464\n            ],\n            [\n              -45,\n              82.67628498\n            ],\n            [\n              -22.5,\n              82.67628498\n            ],\n            [\n              -22.5,\n              79.17133464\n            ],\n            [\n              -45,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -45,\n              82.67628498\n            ],\n            [\n              -45,\n              83.35951133\n            ],\n            [\n              -39.375,\n              83.35951133\n            ],\n            [\n              -39.375,\n              82.67628498\n            ],\n            [\n              -45,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -50.625,\n              58.81374172\n            ],\n            [\n              -50.625,\n              61.60639637\n            ],\n            [\n              -45,\n              61.60639637\n            ],\n            [\n              -45,\n              58.81374172\n            ],\n            [\n              -50.625,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -50.625,\n              82.67628498\n            ],\n            [\n              -50.625,\n              83.35951133\n            ],\n            [\n              -45,\n              83.35951133\n            ],\n            [\n              -45,\n              82.67628498\n            ],\n            [\n              -50.625,\n              82.67628498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              61.60639637\n            ],\n            [\n              -56.25,\n              66.51326044\n            ],\n            [\n              -45,\n              66.51326044\n            ],\n            [\n              -45,\n              61.60639637\n            ],\n            [\n              -56.25,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              66.51326044\n            ],\n            [\n              -56.25,\n              70.61261424\n            ],\n            [\n              -45,\n              70.61261424\n            ],\n            [\n              -45,\n              66.51326044\n            ],\n            [\n              -56.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              70.61261424\n            ],\n            [\n              -56.25,\n              74.01954331\n            ],\n            [\n              -45,\n              74.01954331\n            ],\n            [\n              -45,\n              70.61261424\n            ],\n            [\n              -56.25,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              74.01954331\n            ],\n            [\n              -56.25,\n              76.84081641\n            ],\n            [\n              -45,\n              76.84081641\n            ],\n            [\n              -45,\n              74.01954331\n            ],\n            [\n              -56.25,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              76.84081641\n            ],\n            [\n              -56.25,\n              79.17133464\n            ],\n            [\n              -45,\n              79.17133464\n            ],\n            [\n              -45,\n              76.84081641\n            ],\n            [\n              -56.25,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              79.17133464\n            ],\n            [\n              -56.25,\n              81.09321385\n            ],\n            [\n              -45,\n              81.09321385\n            ],\n            [\n              -45,\n              79.17133464\n            ],\n            [\n              -56.25,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              81.09321385\n            ],\n            [\n              -56.25,\n              82.67628498\n            ],\n            [\n              -45,\n              82.67628498\n            ],\n            [\n              -45,\n              81.09321385\n            ],\n            [\n              -56.25,\n              81.09321385\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              72.39570571\n            ],\n            [\n              -61.875,\n              74.01954331\n            ],\n            [\n              -56.25,\n              74.01954331\n            ],\n            [\n              -56.25,\n              72.39570571\n            ],\n            [\n              -61.875,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              74.01954331\n            ],\n            [\n              -61.875,\n              75.49715732\n            ],\n            [\n              -56.25,\n              75.49715732\n            ],\n            [\n              -56.25,\n              74.01954331\n            ],\n            [\n              -61.875,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              75.49715732\n            ],\n            [\n              -61.875,\n              76.84081641\n            ],\n            [\n              -56.25,\n              76.84081641\n            ],\n            [\n              -56.25,\n              75.49715732\n            ],\n            [\n              -61.875,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              81.09321385\n            ],\n            [\n              -61.875,\n              81.92318633\n            ],\n            [\n              -56.25,\n              81.92318633\n            ],\n            [\n              -56.25,\n              81.09321385\n            ],\n            [\n              -61.875,\n              81.09321385\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              81.92318633\n            ],\n            [\n              -61.875,\n              82.67628498\n            ],\n            [\n              -56.25,\n              82.67628498\n            ],\n            [\n              -56.25,\n              81.92318633\n            ],\n            [\n              -61.875,\n              81.92318633\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              75.49715732\n            ],\n            [\n              -67.5,\n              76.84081641\n            ],\n            [\n              -61.875,\n              76.84081641\n            ],\n            [\n              -61.875,\n              75.49715732\n            ],\n            [\n              -67.5,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              76.84081641\n            ],\n            [\n              -67.5,\n              79.17133464\n            ],\n            [\n              -56.25,\n              79.17133464\n            ],\n            [\n              -56.25,\n              76.84081641\n            ],\n            [\n              -67.5,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              79.17133464\n            ],\n            [\n              -67.5,\n              81.09321385\n            ],\n            [\n              -56.25,\n              81.09321385\n            ],\n            [\n              -56.25,\n              79.17133464\n            ],\n            [\n              -67.5,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              81.09321385\n            ],\n            [\n              -67.5,\n              81.92318633\n            ],\n            [\n              -61.875,\n              81.92318633\n            ],\n            [\n              -61.875,\n              81.09321385\n            ],\n            [\n              -67.5,\n              81.09321385\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              75.49715732\n            ],\n            [\n              -73.125,\n              76.84081641\n            ],\n            [\n              -67.5,\n              76.84081641\n            ],\n            [\n              -67.5,\n              75.49715732\n            ],\n            [\n              -73.125,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              79.17133464\n            ],\n            [\n              -73.125,\n              80.1787135\n            ],\n            [\n              -67.5,\n              80.1787135\n            ],\n            [\n              -67.5,\n              79.17133464\n            ],\n            [\n              -73.125,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              80.1787135\n            ],\n            [\n              -73.125,\n              81.09321385\n            ],\n            [\n              -67.5,\n              81.09321385\n            ],\n            [\n              -67.5,\n              80.1787135\n            ],\n            [\n              -73.125,\n              80.1787135\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              76.84081641\n            ],\n            [\n              -78.75,\n              79.17133464\n            ],\n            [\n              -67.5,\n              79.17133464\n            ],\n            [\n              -67.5,\n              76.84081641\n            ],\n            [\n              -78.75,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -46.76379,\n              82.62796\n            ],\n            [\n              -43.40644,\n              83.22516\n            ],\n            [\n              -39.89753,\n              83.18018\n            ],\n            [\n              -38.62214,\n              83.54905\n            ],\n            [\n              -35.08787,\n              83.64513\n            ],\n            [\n              -27.10046,\n              83.51966\n            ],\n            [\n              -20.84539,\n              82.72669\n            ],\n            [\n              -22.69182,\n              82.34165\n            ],\n            [\n              -26.51753,\n              82.29765\n            ],\n            [\n              -31.9,\n              82.2\n            ],\n            [\n              -31.39646,\n              82.02154\n            ],\n            [\n              -27.85666,\n              82.13178\n            ],\n            [\n              -24.84448,\n              81.78697\n            ],\n            [\n              -22.90328,\n              82.09317\n            ],\n            [\n              -22.07175,\n              81.73449\n            ],\n            [\n              -23.16961,\n              81.15271\n            ],\n            [\n              -20.62363,\n              81.52462\n            ],\n            [\n              -15.76818,\n              81.91245\n            ],\n            [\n              -12.77018,\n              81.71885\n            ],\n            [\n              -12.20855,\n              81.29154\n            ],\n            [\n              -16.28533,\n              80.58004\n            ],\n            [\n              -16.85,\n              80.35\n            ],\n            [\n              -20.04624,\n              80.17708\n            ],\n            [\n              -17.73035,\n              80.12912\n            ],\n            [\n              -18.9,\n              79.4\n            ],\n            [\n              -19.70499,\n              78.75128\n            ],\n            [\n              -19.67353,\n              77.63859\n            ],\n            [\n              -18.47285,\n              76.98565\n            ],\n            [\n              -20.03503,\n              76.94434\n            ],\n            [\n              -21.67944,\n              76.62795\n            ],\n            [\n              -19.83407,\n              76.09808\n            ],\n            [\n              -19.59896,\n              75.24838\n            ],\n            [\n              -20.66818,\n              75.15585\n            ],\n            [\n              -19.37281,\n              74.29561\n            ],\n            [\n              -21.59422,\n              74.22382\n            ],\n            [\n              -20.43454,\n              73.81713\n            ],\n            [\n              -20.76234,\n              73.46436\n            ],\n            [\n              -22.17221,\n              73.30955\n            ],\n            [\n              -23.56593,\n              73.30663\n            ],\n            [\n              -22.31311,\n              72.62928\n            ],\n            [\n              -22.29954,\n              72.18409\n            ],\n            [\n              -24.27834,\n              72.59788\n            ],\n            [\n              -24.79296,\n              72.3302\n            ],\n            [\n              -23.44296,\n              72.08016\n            ],\n            [\n              -22.13281,\n              71.46898\n            ],\n            [\n              -21.75356,\n              70.66369\n            ],\n            [\n              -23.53603,\n              70.471\n            ],\n            [\n              -24.30702,\n              70.85649\n            ],\n            [\n              -25.54341,\n              71.43094\n            ],\n            [\n              -25.20135,\n              70.75226\n            ],\n            [\n              -26.36276,\n              70.22646\n            ],\n            [\n              -23.72742,\n              70.18401\n            ],\n            [\n              -22.34902,\n              70.12946\n            ],\n            [\n              -25.02927,\n              69.2588\n            ],\n            [\n              -27.74737,\n              68.47046\n            ],\n            [\n              -30.67371,\n              68.12503\n            ],\n            [\n              -31.77665,\n              68.12078\n            ],\n            [\n              -32.81105,\n              67.73547\n            ],\n            [\n              -34.20196,\n              66.67974\n            ],\n            [\n              -36.35284,\n              65.9789\n            ],\n            [\n              -37.04378,\n              65.93768\n            ],\n            [\n              -38.37505,\n              65.69213\n            ],\n            [\n              -39.81222,\n              65.45848\n            ],\n            [\n              -40.66899,\n              64.83997\n            ],\n            [\n              -40.68281,\n              64.13902\n            ],\n            [\n              -41.1887,\n              63.48246\n            ],\n            [\n              -42.81938,\n              62.68233\n            ],\n            [\n              -42.41666,\n              61.90093\n            ],\n            [\n              -42.86619,\n              61.07404\n            ],\n            [\n              -43.3784,\n              60.09772\n            ],\n            [\n              -44.7875,\n              60.03676\n            ],\n            [\n              -46.26364,\n              60.85328\n            ],\n            [\n              -48.26294,\n              60.85843\n            ],\n            [\n              -49.23308,\n              61.40681\n            ],\n            [\n              -49.90039,\n              62.38336\n            ],\n            [\n              -51.63325,\n              63.62691\n            ],\n            [\n              -52.14014,\n              64.27842\n            ],\n            [\n              -52.27659,\n              65.1767\n            ],\n            [\n              -53.66166,\n              66.09957\n            ],\n            [\n              -53.30161,\n              66.8365\n            ],\n            [\n              -53.96911,\n              67.18899\n            ],\n            [\n              -52.9804,\n              68.35759\n            ],\n            [\n              -51.47536,\n              68.72958\n            ],\n            [\n              -51.08041,\n              69.14781\n            ],\n            [\n              -50.87122,\n              69.9291\n            ],\n            [\n              -52.013585,\n              69.574925\n            ],\n            [\n              -52.55792,\n              69.42616\n            ],\n            [\n              -53.45629,\n              69.283625\n            ],\n            [\n              -54.68336,\n              69.61003\n            ],\n            [\n              -54.75001,\n              70.28932\n            ],\n            [\n              -54.35884,\n              70.821315\n            ],\n            [\n              -53.431315,\n              70.835755\n            ],\n            [\n              -51.39014,\n              70.56978\n            ],\n            [\n              -53.10937,\n              71.20485\n            ],\n            [\n              -54.00422,\n              71.54719\n            ],\n            [\n              -55,\n              71.406537\n            ],\n            [\n              -55.83468,\n              71.65444\n            ],\n            [\n              -54.71819,\n              72.58625\n            ],\n            [\n              -55.32634,\n              72.95861\n            ],\n            [\n              -56.12003,\n              73.64977\n            ],\n            [\n              -57.32363,\n              74.71026\n            ],\n            [\n              -58.59679,\n              75.09861\n            ],\n            [\n              -58.58516,\n              75.51727\n            ],\n            [\n              -61.26861,\n              76.10238\n            ],\n            [\n              -63.39165,\n              76.1752\n            ],\n            [\n              -66.06427,\n              76.13486\n            ],\n            [\n              -68.50438,\n              76.06141\n            ],\n            [\n              -69.66485,\n              76.37975\n            ],\n            [\n              -71.40257,\n              77.00857\n            ],\n            [\n              -68.77671,\n              77.32312\n            ],\n            [\n              -66.76397,\n              77.37595\n            ],\n            [\n              -71.04293,\n              77.63595\n            ],\n            [\n              -73.297,\n              78.04419\n            ],\n            [\n              -73.15938,\n              78.43271\n            ],\n            [\n              -69.37345,\n              78.91388\n            ],\n            [\n              -65.7107,\n              79.39436\n            ],\n            [\n              -65.3239,\n              79.75814\n            ],\n            [\n              -68.02298,\n              80.11721\n            ],\n            [\n              -67.15129,\n              80.51582\n            ],\n            [\n              -63.68925,\n              81.21396\n            ],\n            [\n              -62.23444,\n              81.3211\n            ],\n            [\n              -62.65116,\n              81.77042\n            ],\n            [\n              -60.28249,\n              82.03363\n            ],\n            [\n              -57.20744,\n              82.19074\n            ],\n            [\n              -54.13442,\n              82.19962\n            ],\n            [\n              -53.04328,\n              81.88833\n            ],\n            [\n              -50.39061,\n              82.43883\n            ],\n            [\n              -48.00386,\n              82.06481\n            ],\n            [\n              -46.59984,\n              81.985945\n            ],\n            [\n              -44.523,\n              81.6607\n            ],\n            [\n              -46.9007,\n              82.19979\n            ],\n            [\n              -46.76379,\n              82.62796\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GTM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GTM\",\"properties\":{\"name\":\"Guatemala\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-90.095555,13.735338],[-90.608624,13.909771],[-91.23241,13.927832],[-91.689747,14.126218],[-92.22775,14.538829],[-92.20323,14.830103],[-92.087216,15.064585],[-92.229249,15.251447],[-91.74796,16.066565],[-90.464473,16.069562],[-90.438867,16.41011],[-90.600847,16.470778],[-90.711822,16.687483],[-91.08167,16.918477],[-91.453921,17.252177],[-91.002269,17.254658],[-91.00152,17.817595],[-90.067934,17.819326],[-89.14308,17.808319],[-89.150806,17.015577],[-89.229122,15.886938],[-88.930613,15.887273],[-88.604586,15.70638],[-88.518364,15.855389],[-88.225023,15.727722],[-88.68068,15.346247],[-89.154811,15.066419],[-89.22522,14.874286],[-89.145535,14.678019],[-89.353326,14.424133],[-89.587343,14.362586],[-89.534219,14.244816],[-89.721934,14.134228],[-90.064678,13.88197],[-90.095555,13.735338]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GTM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -90,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -90,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              11.17840187\n            ],\n            [\n              -95.625,\n              16.63619188\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -95.625,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              16.63619188\n            ],\n            [\n              -95.625,\n              21.94304553\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -95.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90.095555,\n              13.735338\n            ],\n            [\n              -90.608624,\n              13.909771\n            ],\n            [\n              -91.23241,\n              13.927832\n            ],\n            [\n              -91.689747,\n              14.126218\n            ],\n            [\n              -92.22775,\n              14.538829\n            ],\n            [\n              -92.20323,\n              14.830103\n            ],\n            [\n              -92.087216,\n              15.064585\n            ],\n            [\n              -92.229249,\n              15.251447\n            ],\n            [\n              -91.74796,\n              16.066565\n            ],\n            [\n              -90.464473,\n              16.069562\n            ],\n            [\n              -90.438867,\n              16.41011\n            ],\n            [\n              -90.600847,\n              16.470778\n            ],\n            [\n              -90.711822,\n              16.687483\n            ],\n            [\n              -91.08167,\n              16.918477\n            ],\n            [\n              -91.453921,\n              17.252177\n            ],\n            [\n              -91.002269,\n              17.254658\n            ],\n            [\n              -91.00152,\n              17.817595\n            ],\n            [\n              -90.067934,\n              17.819326\n            ],\n            [\n              -89.14308,\n              17.808319\n            ],\n            [\n              -89.150806,\n              17.015577\n            ],\n            [\n              -89.229122,\n              15.886938\n            ],\n            [\n              -88.930613,\n              15.887273\n            ],\n            [\n              -88.604586,\n              15.70638\n            ],\n            [\n              -88.518364,\n              15.855389\n            ],\n            [\n              -88.225023,\n              15.727722\n            ],\n            [\n              -88.68068,\n              15.346247\n            ],\n            [\n              -89.154811,\n              15.066419\n            ],\n            [\n              -89.22522,\n              14.874286\n            ],\n            [\n              -89.145535,\n              14.678019\n            ],\n            [\n              -89.353326,\n              14.424133\n            ],\n            [\n              -89.587343,\n              14.362586\n            ],\n            [\n              -89.534219,\n              14.244816\n            ],\n            [\n              -89.721934,\n              14.134228\n            ],\n            [\n              -90.064678,\n              13.88197\n            ],\n            [\n              -90.095555,\n              13.735338\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GUF.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GUF\",\"properties\":{\"name\":\"French Guiana\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-52.556425,2.504705],[-52.939657,2.124858],[-53.418465,2.053389],[-53.554839,2.334897],[-53.778521,2.376703],[-54.088063,2.105557],[-54.524754,2.311849],[-54.27123,2.738748],[-54.184284,3.194172],[-54.011504,3.62257],[-54.399542,4.212611],[-54.478633,4.896756],[-53.958045,5.756548],[-53.618453,5.646529],[-52.882141,5.409851],[-51.823343,4.565768],[-51.657797,4.156232],[-52.249338,3.241094],[-52.556425,2.504705]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GUF_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              0\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -50.625,\n              5.61598582\n            ],\n            [\n              -50.625,\n              0\n            ],\n            [\n              -56.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -56.25,\n              11.17840187\n            ],\n            [\n              -50.625,\n              11.17840187\n            ],\n            [\n              -50.625,\n              5.61598582\n            ],\n            [\n              -56.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -52.556425,\n              2.504705\n            ],\n            [\n              -52.939657,\n              2.124858\n            ],\n            [\n              -53.418465,\n              2.053389\n            ],\n            [\n              -53.554839,\n              2.334897\n            ],\n            [\n              -53.778521,\n              2.376703\n            ],\n            [\n              -54.088063,\n              2.105557\n            ],\n            [\n              -54.524754,\n              2.311849\n            ],\n            [\n              -54.27123,\n              2.738748\n            ],\n            [\n              -54.184284,\n              3.194172\n            ],\n            [\n              -54.011504,\n              3.62257\n            ],\n            [\n              -54.399542,\n              4.212611\n            ],\n            [\n              -54.478633,\n              4.896756\n            ],\n            [\n              -53.958045,\n              5.756548\n            ],\n            [\n              -53.618453,\n              5.646529\n            ],\n            [\n              -52.882141,\n              5.409851\n            ],\n            [\n              -51.823343,\n              4.565768\n            ],\n            [\n              -51.657797,\n              4.156232\n            ],\n            [\n              -52.249338,\n              3.241094\n            ],\n            [\n              -52.556425,\n              2.504705\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/GUY.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"GUY\",\"properties\":{\"name\":\"Guyana\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-59.758285,8.367035],[-59.101684,7.999202],[-58.482962,7.347691],[-58.454876,6.832787],[-58.078103,6.809094],[-57.542219,6.321268],[-57.147436,5.97315],[-57.307246,5.073567],[-57.914289,4.812626],[-57.86021,4.576801],[-58.044694,4.060864],[-57.601569,3.334655],[-57.281433,3.333492],[-57.150098,2.768927],[-56.539386,1.899523],[-56.782704,1.863711],[-57.335823,1.948538],[-57.660971,1.682585],[-58.11345,1.507195],[-58.429477,1.463942],[-58.540013,1.268088],[-59.030862,1.317698],[-59.646044,1.786894],[-59.718546,2.24963],[-59.974525,2.755233],[-59.815413,3.606499],[-59.53804,3.958803],[-59.767406,4.423503],[-60.111002,4.574967],[-59.980959,5.014061],[-60.213683,5.244486],[-60.733574,5.200277],[-61.410303,5.959068],[-61.139415,6.234297],[-61.159336,6.696077],[-60.543999,6.856584],[-60.295668,7.043911],[-60.637973,7.415],[-60.550588,7.779603],[-59.758285,8.367035]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/GUY_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              0\n            ],\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -56.25,\n              0\n            ],\n            [\n              -61.875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -61.875,\n              11.17840187\n            ],\n            [\n              -56.25,\n              11.17840187\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -61.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -59.758285,\n              8.367035\n            ],\n            [\n              -59.101684,\n              7.999202\n            ],\n            [\n              -58.482962,\n              7.347691\n            ],\n            [\n              -58.454876,\n              6.832787\n            ],\n            [\n              -58.078103,\n              6.809094\n            ],\n            [\n              -57.542219,\n              6.321268\n            ],\n            [\n              -57.147436,\n              5.97315\n            ],\n            [\n              -57.307246,\n              5.073567\n            ],\n            [\n              -57.914289,\n              4.812626\n            ],\n            [\n              -57.86021,\n              4.576801\n            ],\n            [\n              -58.044694,\n              4.060864\n            ],\n            [\n              -57.601569,\n              3.334655\n            ],\n            [\n              -57.281433,\n              3.333492\n            ],\n            [\n              -57.150098,\n              2.768927\n            ],\n            [\n              -56.539386,\n              1.899523\n            ],\n            [\n              -56.782704,\n              1.863711\n            ],\n            [\n              -57.335823,\n              1.948538\n            ],\n            [\n              -57.660971,\n              1.682585\n            ],\n            [\n              -58.11345,\n              1.507195\n            ],\n            [\n              -58.429477,\n              1.463942\n            ],\n            [\n              -58.540013,\n              1.268088\n            ],\n            [\n              -59.030862,\n              1.317698\n            ],\n            [\n              -59.646044,\n              1.786894\n            ],\n            [\n              -59.718546,\n              2.24963\n            ],\n            [\n              -59.974525,\n              2.755233\n            ],\n            [\n              -59.815413,\n              3.606499\n            ],\n            [\n              -59.53804,\n              3.958803\n            ],\n            [\n              -59.767406,\n              4.423503\n            ],\n            [\n              -60.111002,\n              4.574967\n            ],\n            [\n              -59.980959,\n              5.014061\n            ],\n            [\n              -60.213683,\n              5.244486\n            ],\n            [\n              -60.733574,\n              5.200277\n            ],\n            [\n              -61.410303,\n              5.959068\n            ],\n            [\n              -61.139415,\n              6.234297\n            ],\n            [\n              -61.159336,\n              6.696077\n            ],\n            [\n              -60.543999,\n              6.856584\n            ],\n            [\n              -60.295668,\n              7.043911\n            ],\n            [\n              -60.637973,\n              7.415\n            ],\n            [\n              -60.550588,\n              7.779603\n            ],\n            [\n              -59.758285,\n              8.367035\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/HND.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"HND\",\"properties\":{\"name\":\"Honduras\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-87.316654,12.984686],[-87.489409,13.297535],[-87.793111,13.38448],[-87.723503,13.78505],[-87.859515,13.893312],[-88.065343,13.964626],[-88.503998,13.845486],[-88.541231,13.980155],[-88.843073,14.140507],[-89.058512,14.340029],[-89.353326,14.424133],[-89.145535,14.678019],[-89.22522,14.874286],[-89.154811,15.066419],[-88.68068,15.346247],[-88.225023,15.727722],[-88.121153,15.688655],[-87.901813,15.864458],[-87.61568,15.878799],[-87.522921,15.797279],[-87.367762,15.84694],[-86.903191,15.756713],[-86.440946,15.782835],[-86.119234,15.893449],[-86.001954,16.005406],[-85.683317,15.953652],[-85.444004,15.885749],[-85.182444,15.909158],[-84.983722,15.995923],[-84.52698,15.857224],[-84.368256,15.835158],[-84.063055,15.648244],[-83.773977,15.424072],[-83.410381,15.270903],[-83.147219,14.995829],[-83.489989,15.016267],[-83.628585,14.880074],[-83.975721,14.749436],[-84.228342,14.748764],[-84.449336,14.621614],[-84.649582,14.666805],[-84.820037,14.819587],[-84.924501,14.790493],[-85.052787,14.551541],[-85.148751,14.560197],[-85.165365,14.35437],[-85.514413,14.079012],[-85.698665,13.960078],[-85.801295,13.836055],[-86.096264,14.038187],[-86.312142,13.771356],[-86.520708,13.778487],[-86.755087,13.754845],[-86.733822,13.263093],[-86.880557,13.254204],[-87.005769,13.025794],[-87.316654,12.984686]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/HND_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -78.75,\n              16.63619188\n            ],\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -84.375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -90,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.316654,\n              12.984686\n            ],\n            [\n              -87.489409,\n              13.297535\n            ],\n            [\n              -87.793111,\n              13.38448\n            ],\n            [\n              -87.723503,\n              13.78505\n            ],\n            [\n              -87.859515,\n              13.893312\n            ],\n            [\n              -88.065343,\n              13.964626\n            ],\n            [\n              -88.503998,\n              13.845486\n            ],\n            [\n              -88.541231,\n              13.980155\n            ],\n            [\n              -88.843073,\n              14.140507\n            ],\n            [\n              -89.058512,\n              14.340029\n            ],\n            [\n              -89.353326,\n              14.424133\n            ],\n            [\n              -89.145535,\n              14.678019\n            ],\n            [\n              -89.22522,\n              14.874286\n            ],\n            [\n              -89.154811,\n              15.066419\n            ],\n            [\n              -88.68068,\n              15.346247\n            ],\n            [\n              -88.225023,\n              15.727722\n            ],\n            [\n              -88.121153,\n              15.688655\n            ],\n            [\n              -87.901813,\n              15.864458\n            ],\n            [\n              -87.61568,\n              15.878799\n            ],\n            [\n              -87.522921,\n              15.797279\n            ],\n            [\n              -87.367762,\n              15.84694\n            ],\n            [\n              -86.903191,\n              15.756713\n            ],\n            [\n              -86.440946,\n              15.782835\n            ],\n            [\n              -86.119234,\n              15.893449\n            ],\n            [\n              -86.001954,\n              16.005406\n            ],\n            [\n              -85.683317,\n              15.953652\n            ],\n            [\n              -85.444004,\n              15.885749\n            ],\n            [\n              -85.182444,\n              15.909158\n            ],\n            [\n              -84.983722,\n              15.995923\n            ],\n            [\n              -84.52698,\n              15.857224\n            ],\n            [\n              -84.368256,\n              15.835158\n            ],\n            [\n              -84.063055,\n              15.648244\n            ],\n            [\n              -83.773977,\n              15.424072\n            ],\n            [\n              -83.410381,\n              15.270903\n            ],\n            [\n              -83.147219,\n              14.995829\n            ],\n            [\n              -83.489989,\n              15.016267\n            ],\n            [\n              -83.628585,\n              14.880074\n            ],\n            [\n              -83.975721,\n              14.749436\n            ],\n            [\n              -84.228342,\n              14.748764\n            ],\n            [\n              -84.449336,\n              14.621614\n            ],\n            [\n              -84.649582,\n              14.666805\n            ],\n            [\n              -84.820037,\n              14.819587\n            ],\n            [\n              -84.924501,\n              14.790493\n            ],\n            [\n              -85.052787,\n              14.551541\n            ],\n            [\n              -85.148751,\n              14.560197\n            ],\n            [\n              -85.165365,\n              14.35437\n            ],\n            [\n              -85.514413,\n              14.079012\n            ],\n            [\n              -85.698665,\n              13.960078\n            ],\n            [\n              -85.801295,\n              13.836055\n            ],\n            [\n              -86.096264,\n              14.038187\n            ],\n            [\n              -86.312142,\n              13.771356\n            ],\n            [\n              -86.520708,\n              13.778487\n            ],\n            [\n              -86.755087,\n              13.754845\n            ],\n            [\n              -86.733822,\n              13.263093\n            ],\n            [\n              -86.880557,\n              13.254204\n            ],\n            [\n              -87.005769,\n              13.025794\n            ],\n            [\n              -87.316654,\n              12.984686\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/HRV.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"HRV\",\"properties\":{\"name\":\"Croatia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[18.829838,45.908878],[19.072769,45.521511],[19.390476,45.236516],[19.005486,44.860234],[18.553214,45.08159],[17.861783,45.06774],[17.002146,45.233777],[16.534939,45.211608],[16.318157,45.004127],[15.959367,45.233777],[15.750026,44.818712],[16.23966,44.351143],[16.456443,44.04124],[16.916156,43.667722],[17.297373,43.446341],[17.674922,43.028563],[18.56,42.65],[18.450016,42.479991],[17.50997,42.849995],[16.930006,43.209998],[16.015385,43.507215],[15.174454,44.243191],[15.37625,44.317915],[14.920309,44.738484],[14.901602,45.07606],[14.258748,45.233777],[13.952255,44.802124],[13.656976,45.136935],[13.679403,45.484149],[13.71506,45.500324],[14.411968,45.466166],[14.595109,45.634941],[14.935244,45.471695],[15.327675,45.452316],[15.323954,45.731783],[15.67153,45.834154],[15.768733,46.238108],[16.564808,46.503751],[16.882515,46.380632],[17.630066,45.951769],[18.456062,45.759481],[18.829838,45.908878]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/HRV_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              11.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.829838,\n              45.908878\n            ],\n            [\n              19.072769,\n              45.521511\n            ],\n            [\n              19.390476,\n              45.236516\n            ],\n            [\n              19.005486,\n              44.860234\n            ],\n            [\n              18.553214,\n              45.08159\n            ],\n            [\n              17.861783,\n              45.06774\n            ],\n            [\n              17.002146,\n              45.233777\n            ],\n            [\n              16.534939,\n              45.211608\n            ],\n            [\n              16.318157,\n              45.004127\n            ],\n            [\n              15.959367,\n              45.233777\n            ],\n            [\n              15.750026,\n              44.818712\n            ],\n            [\n              16.23966,\n              44.351143\n            ],\n            [\n              16.456443,\n              44.04124\n            ],\n            [\n              16.916156,\n              43.667722\n            ],\n            [\n              17.297373,\n              43.446341\n            ],\n            [\n              17.674922,\n              43.028563\n            ],\n            [\n              18.56,\n              42.65\n            ],\n            [\n              18.450016,\n              42.479991\n            ],\n            [\n              17.50997,\n              42.849995\n            ],\n            [\n              16.930006,\n              43.209998\n            ],\n            [\n              16.015385,\n              43.507215\n            ],\n            [\n              15.174454,\n              44.243191\n            ],\n            [\n              15.37625,\n              44.317915\n            ],\n            [\n              14.920309,\n              44.738484\n            ],\n            [\n              14.901602,\n              45.07606\n            ],\n            [\n              14.258748,\n              45.233777\n            ],\n            [\n              13.952255,\n              44.802124\n            ],\n            [\n              13.656976,\n              45.136935\n            ],\n            [\n              13.679403,\n              45.484149\n            ],\n            [\n              13.71506,\n              45.500324\n            ],\n            [\n              14.411968,\n              45.466166\n            ],\n            [\n              14.595109,\n              45.634941\n            ],\n            [\n              14.935244,\n              45.471695\n            ],\n            [\n              15.327675,\n              45.452316\n            ],\n            [\n              15.323954,\n              45.731783\n            ],\n            [\n              15.67153,\n              45.834154\n            ],\n            [\n              15.768733,\n              46.238108\n            ],\n            [\n              16.564808,\n              46.503751\n            ],\n            [\n              16.882515,\n              46.380632\n            ],\n            [\n              17.630066,\n              45.951769\n            ],\n            [\n              18.456062,\n              45.759481\n            ],\n            [\n              18.829838,\n              45.908878\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/HTI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"HTI\",\"properties\":{\"name\":\"Haiti\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-73.189791,19.915684],[-72.579673,19.871501],[-71.712361,19.714456],[-71.624873,19.169838],[-71.701303,18.785417],[-71.945112,18.6169],[-71.687738,18.31666],[-71.708305,18.044997],[-72.372476,18.214961],[-72.844411,18.145611],[-73.454555,18.217906],[-73.922433,18.030993],[-74.458034,18.34255],[-74.369925,18.664908],[-73.449542,18.526053],[-72.694937,18.445799],[-72.334882,18.668422],[-72.79165,19.101625],[-72.784105,19.483591],[-73.415022,19.639551],[-73.189791,19.915684]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/HTI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              16.63619188\n            ],\n            [\n              -73.125,\n              21.94304553\n            ],\n            [\n              -67.5,\n              21.94304553\n            ],\n            [\n              -67.5,\n              16.63619188\n            ],\n            [\n              -73.125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              16.63619188\n            ],\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -73.125,\n              21.94304553\n            ],\n            [\n              -73.125,\n              16.63619188\n            ],\n            [\n              -78.75,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.189791,\n              19.915684\n            ],\n            [\n              -72.579673,\n              19.871501\n            ],\n            [\n              -71.712361,\n              19.714456\n            ],\n            [\n              -71.624873,\n              19.169838\n            ],\n            [\n              -71.701303,\n              18.785417\n            ],\n            [\n              -71.945112,\n              18.6169\n            ],\n            [\n              -71.687738,\n              18.31666\n            ],\n            [\n              -71.708305,\n              18.044997\n            ],\n            [\n              -72.372476,\n              18.214961\n            ],\n            [\n              -72.844411,\n              18.145611\n            ],\n            [\n              -73.454555,\n              18.217906\n            ],\n            [\n              -73.922433,\n              18.030993\n            ],\n            [\n              -74.458034,\n              18.34255\n            ],\n            [\n              -74.369925,\n              18.664908\n            ],\n            [\n              -73.449542,\n              18.526053\n            ],\n            [\n              -72.694937,\n              18.445799\n            ],\n            [\n              -72.334882,\n              18.668422\n            ],\n            [\n              -72.79165,\n              19.101625\n            ],\n            [\n              -72.784105,\n              19.483591\n            ],\n            [\n              -73.415022,\n              19.639551\n            ],\n            [\n              -73.189791,\n              19.915684\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/HUN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"HUN\",\"properties\":{\"name\":\"Hungary\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[16.202298,46.852386],[16.534268,47.496171],[16.340584,47.712902],[16.903754,47.714866],[16.979667,48.123497],[17.488473,47.867466],[17.857133,47.758429],[18.696513,47.880954],[18.777025,48.081768],[19.174365,48.111379],[19.661364,48.266615],[19.769471,48.202691],[20.239054,48.327567],[20.473562,48.56285],[20.801294,48.623854],[21.872236,48.319971],[22.085608,48.422264],[22.64082,48.15024],[22.710531,47.882194],[22.099768,47.672439],[21.626515,46.994238],[21.021952,46.316088],[20.220192,46.127469],[19.596045,46.17173],[18.829838,45.908878],[18.456062,45.759481],[17.630066,45.951769],[16.882515,46.380632],[16.564808,46.503751],[16.370505,46.841327],[16.202298,46.852386]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/HUN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              11.25,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              16.875,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.202298,\n              46.852386\n            ],\n            [\n              16.534268,\n              47.496171\n            ],\n            [\n              16.340584,\n              47.712902\n            ],\n            [\n              16.903754,\n              47.714866\n            ],\n            [\n              16.979667,\n              48.123497\n            ],\n            [\n              17.488473,\n              47.867466\n            ],\n            [\n              17.857133,\n              47.758429\n            ],\n            [\n              18.696513,\n              47.880954\n            ],\n            [\n              18.777025,\n              48.081768\n            ],\n            [\n              19.174365,\n              48.111379\n            ],\n            [\n              19.661364,\n              48.266615\n            ],\n            [\n              19.769471,\n              48.202691\n            ],\n            [\n              20.239054,\n              48.327567\n            ],\n            [\n              20.473562,\n              48.56285\n            ],\n            [\n              20.801294,\n              48.623854\n            ],\n            [\n              21.872236,\n              48.319971\n            ],\n            [\n              22.085608,\n              48.422264\n            ],\n            [\n              22.64082,\n              48.15024\n            ],\n            [\n              22.710531,\n              47.882194\n            ],\n            [\n              22.099768,\n              47.672439\n            ],\n            [\n              21.626515,\n              46.994238\n            ],\n            [\n              21.021952,\n              46.316088\n            ],\n            [\n              20.220192,\n              46.127469\n            ],\n            [\n              19.596045,\n              46.17173\n            ],\n            [\n              18.829838,\n              45.908878\n            ],\n            [\n              18.456062,\n              45.759481\n            ],\n            [\n              17.630066,\n              45.951769\n            ],\n            [\n              16.882515,\n              46.380632\n            ],\n            [\n              16.564808,\n              46.503751\n            ],\n            [\n              16.370505,\n              46.841327\n            ],\n            [\n              16.202298,\n              46.852386\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/IDN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"IDN\",\"properties\":{\"name\":\"Indonesia\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[120.715609,-10.239581],[120.295014,-10.25865],[118.967808,-9.557969],[119.90031,-9.36134],[120.425756,-9.665921],[120.775502,-9.969675],[120.715609,-10.239581]]],[[[124.43595,-10.140001],[123.579982,-10.359987],[123.459989,-10.239995],[123.550009,-9.900016],[123.980009,-9.290027],[124.968682,-8.89279],[125.07002,-9.089987],[125.08852,-9.393173],[124.43595,-10.140001]]],[[[117.900018,-8.095681],[118.260616,-8.362383],[118.87846,-8.280683],[119.126507,-8.705825],[117.970402,-8.906639],[117.277731,-9.040895],[116.740141,-9.032937],[117.083737,-8.457158],[117.632024,-8.449303],[117.900018,-8.095681]]],[[[122.903537,-8.094234],[122.756983,-8.649808],[121.254491,-8.933666],[119.924391,-8.810418],[119.920929,-8.444859],[120.715092,-8.236965],[121.341669,-8.53674],[122.007365,-8.46062],[122.903537,-8.094234]]],[[[108.623479,-6.777674],[110.539227,-6.877358],[110.759576,-6.465186],[112.614811,-6.946036],[112.978768,-7.594213],[114.478935,-7.776528],[115.705527,-8.370807],[114.564511,-8.751817],[113.464734,-8.348947],[112.559672,-8.376181],[111.522061,-8.302129],[110.58615,-8.122605],[109.427667,-7.740664],[108.693655,-7.6416],[108.277763,-7.766657],[106.454102,-7.3549],[106.280624,-6.9249],[105.365486,-6.851416],[106.051646,-5.895919],[107.265009,-5.954985],[108.072091,-6.345762],[108.486846,-6.421985],[108.623479,-6.777674]]],[[[134.724624,-6.214401],[134.210134,-6.895238],[134.112776,-6.142467],[134.290336,-5.783058],[134.499625,-5.445042],[134.727002,-5.737582],[134.724624,-6.214401]]],[[[127.249215,-3.459065],[126.874923,-3.790983],[126.183802,-3.607376],[125.989034,-3.177273],[127.000651,-3.129318],[127.249215,-3.459065]]],[[[130.471344,-3.093764],[130.834836,-3.858472],[129.990547,-3.446301],[129.155249,-3.362637],[128.590684,-3.428679],[127.898891,-3.393436],[128.135879,-2.84365],[129.370998,-2.802154],[130.471344,-3.093764]]],[[[134.143368,-1.151867],[134.422627,-2.769185],[135.457603,-3.367753],[136.293314,-2.307042],[137.440738,-1.703513],[138.329727,-1.702686],[139.184921,-2.051296],[139.926684,-2.409052],[141.00021,-2.600151],[141.017057,-5.859022],[141.033852,-9.117893],[140.143415,-8.297168],[139.127767,-8.096043],[138.881477,-8.380935],[137.614474,-8.411683],[138.039099,-7.597882],[138.668621,-7.320225],[138.407914,-6.232849],[137.92784,-5.393366],[135.98925,-4.546544],[135.164598,-4.462931],[133.66288,-3.538853],[133.367705,-4.024819],[132.983956,-4.112979],[132.756941,-3.746283],[132.753789,-3.311787],[131.989804,-2.820551],[133.066845,-2.460418],[133.780031,-2.479848],[133.696212,-2.214542],[132.232373,-2.212526],[131.836222,-1.617162],[130.94284,-1.432522],[130.519558,-0.93772],[131.867538,-0.695461],[132.380116,-0.369538],[133.985548,-0.78021],[134.143368,-1.151867]]],[[[125.240501,1.419836],[124.437035,0.427881],[123.685505,0.235593],[122.723083,0.431137],[121.056725,0.381217],[120.183083,0.237247],[120.04087,-0.519658],[120.935905,-1.408906],[121.475821,-0.955962],[123.340565,-0.615673],[123.258399,-1.076213],[122.822715,-0.930951],[122.38853,-1.516858],[121.508274,-1.904483],[122.454572,-3.186058],[122.271896,-3.5295],[123.170963,-4.683693],[123.162333,-5.340604],[122.628515,-5.634591],[122.236394,-5.282933],[122.719569,-4.464172],[121.738234,-4.851331],[121.489463,-4.574553],[121.619171,-4.188478],[120.898182,-3.602105],[120.972389,-2.627643],[120.305453,-2.931604],[120.390047,-4.097579],[120.430717,-5.528241],[119.796543,-5.6734],[119.366906,-5.379878],[119.653606,-4.459417],[119.498835,-3.494412],[119.078344,-3.487022],[118.767769,-2.801999],[119.180974,-2.147104],[119.323394,-1.353147],[119.825999,0.154254],[120.035702,0.566477],[120.885779,1.309223],[121.666817,1.013944],[122.927567,0.875192],[124.077522,0.917102],[125.065989,1.643259],[125.240501,1.419836]]],[[[128.688249,1.132386],[128.635952,0.258486],[128.12017,0.356413],[127.968034,-0.252077],[128.379999,-0.780004],[128.100016,-0.899996],[127.696475,-0.266598],[127.39949,1.011722],[127.600512,1.810691],[127.932378,2.174596],[128.004156,1.628531],[128.594559,1.540811],[128.688249,1.132386]]],[[[117.875627,1.827641],[118.996747,0.902219],[117.811858,0.784242],[117.478339,0.102475],[117.521644,-0.803723],[116.560048,-1.487661],[116.533797,-2.483517],[116.148084,-4.012726],[116.000858,-3.657037],[114.864803,-4.106984],[114.468652,-3.495704],[113.755672,-3.43917],[113.256994,-3.118776],[112.068126,-3.478392],[111.703291,-2.994442],[111.04824,-3.049426],[110.223846,-2.934032],[110.070936,-1.592874],[109.571948,-1.314907],[109.091874,-0.459507],[108.952658,0.415375],[109.069136,1.341934],[109.66326,2.006467],[109.830227,1.338136],[110.514061,0.773131],[111.159138,0.976478],[111.797548,0.904441],[112.380252,1.410121],[112.859809,1.49779],[113.80585,1.217549],[114.621355,1.430688],[115.134037,2.821482],[115.519078,3.169238],[115.865517,4.306559],[117.015214,4.306094],[117.882035,4.137551],[117.313232,3.234428],[118.04833,2.28769],[117.875627,1.827641]]],[[[105.817655,-5.852356],[104.710384,-5.873285],[103.868213,-5.037315],[102.584261,-4.220259],[102.156173,-3.614146],[101.399113,-2.799777],[100.902503,-2.050262],[100.141981,-0.650348],[99.26374,0.183142],[98.970011,1.042882],[98.601351,1.823507],[97.699598,2.453184],[97.176942,3.308791],[96.424017,3.86886],[95.380876,4.970782],[95.293026,5.479821],[95.936863,5.439513],[97.484882,5.246321],[98.369169,4.26837],[99.142559,3.59035],[99.693998,3.174329],[100.641434,2.099381],[101.658012,2.083697],[102.498271,1.3987],[103.07684,0.561361],[103.838396,0.104542],[103.437645,-0.711946],[104.010789,-1.059212],[104.369991,-1.084843],[104.53949,-1.782372],[104.887893,-2.340425],[105.622111,-2.428844],[106.108593,-3.061777],[105.857446,-4.305525],[105.817655,-5.852356]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/IDN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              -11.17840187\n            ],\n            [\n              101.25,\n              0\n            ],\n            [\n              112.5,\n              0\n            ],\n            [\n              112.5,\n              -11.17840187\n            ],\n            [\n              101.25,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              0\n            ],\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              106.875,\n              0\n            ],\n            [\n              101.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              0\n            ],\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              112.5,\n              5.61598582\n            ],\n            [\n              112.5,\n              0\n            ],\n            [\n              106.875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              -11.17840187\n            ],\n            [\n              112.5,\n              0\n            ],\n            [\n              123.75,\n              0\n            ],\n            [\n              123.75,\n              -11.17840187\n            ],\n            [\n              112.5,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              0\n            ],\n            [\n              112.5,\n              5.61598582\n            ],\n            [\n              118.125,\n              5.61598582\n            ],\n            [\n              118.125,\n              0\n            ],\n            [\n              112.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              0\n            ],\n            [\n              118.125,\n              5.61598582\n            ],\n            [\n              123.75,\n              5.61598582\n            ],\n            [\n              123.75,\n              0\n            ],\n            [\n              118.125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              -11.17840187\n            ],\n            [\n              123.75,\n              0\n            ],\n            [\n              135,\n              0\n            ],\n            [\n              135,\n              -11.17840187\n            ],\n            [\n              123.75,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              0\n            ],\n            [\n              123.75,\n              5.61598582\n            ],\n            [\n              129.375,\n              5.61598582\n            ],\n            [\n              129.375,\n              0\n            ],\n            [\n              123.75,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              -11.17840187\n            ],\n            [\n              135,\n              0\n            ],\n            [\n              146.25,\n              0\n            ],\n            [\n              146.25,\n              -11.17840187\n            ],\n            [\n              135,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              0\n            ],\n            [\n              90,\n              5.61598582\n            ],\n            [\n              95.625,\n              5.61598582\n            ],\n            [\n              95.625,\n              0\n            ],\n            [\n              90,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              -5.61598582\n            ],\n            [\n              95.625,\n              0\n            ],\n            [\n              101.25,\n              0\n            ],\n            [\n              101.25,\n              -5.61598582\n            ],\n            [\n              95.625,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              0\n            ],\n            [\n              95.625,\n              5.61598582\n            ],\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              101.25,\n              0\n            ],\n            [\n              95.625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                120.715609,\n                -10.239581\n              ],\n              [\n                120.295014,\n                -10.25865\n              ],\n              [\n                118.967808,\n                -9.557969\n              ],\n              [\n                119.90031,\n                -9.36134\n              ],\n              [\n                120.425756,\n                -9.665921\n              ],\n              [\n                120.775502,\n                -9.969675\n              ],\n              [\n                120.715609,\n                -10.239581\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                124.43595,\n                -10.140001\n              ],\n              [\n                123.579982,\n                -10.359987\n              ],\n              [\n                123.459989,\n                -10.239995\n              ],\n              [\n                123.550009,\n                -9.900016\n              ],\n              [\n                123.980009,\n                -9.290027\n              ],\n              [\n                124.968682,\n                -8.89279\n              ],\n              [\n                125.07002,\n                -9.089987\n              ],\n              [\n                125.08852,\n                -9.393173\n              ],\n              [\n                124.43595,\n                -10.140001\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                117.900018,\n                -8.095681\n              ],\n              [\n                118.260616,\n                -8.362383\n              ],\n              [\n                118.87846,\n                -8.280683\n              ],\n              [\n                119.126507,\n                -8.705825\n              ],\n              [\n                117.970402,\n                -8.906639\n              ],\n              [\n                117.277731,\n                -9.040895\n              ],\n              [\n                116.740141,\n                -9.032937\n              ],\n              [\n                117.083737,\n                -8.457158\n              ],\n              [\n                117.632024,\n                -8.449303\n              ],\n              [\n                117.900018,\n                -8.095681\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                122.903537,\n                -8.094234\n              ],\n              [\n                122.756983,\n                -8.649808\n              ],\n              [\n                121.254491,\n                -8.933666\n              ],\n              [\n                119.924391,\n                -8.810418\n              ],\n              [\n                119.920929,\n                -8.444859\n              ],\n              [\n                120.715092,\n                -8.236965\n              ],\n              [\n                121.341669,\n                -8.53674\n              ],\n              [\n                122.007365,\n                -8.46062\n              ],\n              [\n                122.903537,\n                -8.094234\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                108.623479,\n                -6.777674\n              ],\n              [\n                110.539227,\n                -6.877358\n              ],\n              [\n                110.759576,\n                -6.465186\n              ],\n              [\n                112.614811,\n                -6.946036\n              ],\n              [\n                112.978768,\n                -7.594213\n              ],\n              [\n                114.478935,\n                -7.776528\n              ],\n              [\n                115.705527,\n                -8.370807\n              ],\n              [\n                114.564511,\n                -8.751817\n              ],\n              [\n                113.464734,\n                -8.348947\n              ],\n              [\n                112.559672,\n                -8.376181\n              ],\n              [\n                111.522061,\n                -8.302129\n              ],\n              [\n                110.58615,\n                -8.122605\n              ],\n              [\n                109.427667,\n                -7.740664\n              ],\n              [\n                108.693655,\n                -7.6416\n              ],\n              [\n                108.277763,\n                -7.766657\n              ],\n              [\n                106.454102,\n                -7.3549\n              ],\n              [\n                106.280624,\n                -6.9249\n              ],\n              [\n                105.365486,\n                -6.851416\n              ],\n              [\n                106.051646,\n                -5.895919\n              ],\n              [\n                107.265009,\n                -5.954985\n              ],\n              [\n                108.072091,\n                -6.345762\n              ],\n              [\n                108.486846,\n                -6.421985\n              ],\n              [\n                108.623479,\n                -6.777674\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                134.724624,\n                -6.214401\n              ],\n              [\n                134.210134,\n                -6.895238\n              ],\n              [\n                134.112776,\n                -6.142467\n              ],\n              [\n                134.290336,\n                -5.783058\n              ],\n              [\n                134.499625,\n                -5.445042\n              ],\n              [\n                134.727002,\n                -5.737582\n              ],\n              [\n                134.724624,\n                -6.214401\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                127.249215,\n                -3.459065\n              ],\n              [\n                126.874923,\n                -3.790983\n              ],\n              [\n                126.183802,\n                -3.607376\n              ],\n              [\n                125.989034,\n                -3.177273\n              ],\n              [\n                127.000651,\n                -3.129318\n              ],\n              [\n                127.249215,\n                -3.459065\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                130.471344,\n                -3.093764\n              ],\n              [\n                130.834836,\n                -3.858472\n              ],\n              [\n                129.990547,\n                -3.446301\n              ],\n              [\n                129.155249,\n                -3.362637\n              ],\n              [\n                128.590684,\n                -3.428679\n              ],\n              [\n                127.898891,\n                -3.393436\n              ],\n              [\n                128.135879,\n                -2.84365\n              ],\n              [\n                129.370998,\n                -2.802154\n              ],\n              [\n                130.471344,\n                -3.093764\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                134.143368,\n                -1.151867\n              ],\n              [\n                134.422627,\n                -2.769185\n              ],\n              [\n                135.457603,\n                -3.367753\n              ],\n              [\n                136.293314,\n                -2.307042\n              ],\n              [\n                137.440738,\n                -1.703513\n              ],\n              [\n                138.329727,\n                -1.702686\n              ],\n              [\n                139.184921,\n                -2.051296\n              ],\n              [\n                139.926684,\n                -2.409052\n              ],\n              [\n                141.00021,\n                -2.600151\n              ],\n              [\n                141.017057,\n                -5.859022\n              ],\n              [\n                141.033852,\n                -9.117893\n              ],\n              [\n                140.143415,\n                -8.297168\n              ],\n              [\n                139.127767,\n                -8.096043\n              ],\n              [\n                138.881477,\n                -8.380935\n              ],\n              [\n                137.614474,\n                -8.411683\n              ],\n              [\n                138.039099,\n                -7.597882\n              ],\n              [\n                138.668621,\n                -7.320225\n              ],\n              [\n                138.407914,\n                -6.232849\n              ],\n              [\n                137.92784,\n                -5.393366\n              ],\n              [\n                135.98925,\n                -4.546544\n              ],\n              [\n                135.164598,\n                -4.462931\n              ],\n              [\n                133.66288,\n                -3.538853\n              ],\n              [\n                133.367705,\n                -4.024819\n              ],\n              [\n                132.983956,\n                -4.112979\n              ],\n              [\n                132.756941,\n                -3.746283\n              ],\n              [\n                132.753789,\n                -3.311787\n              ],\n              [\n                131.989804,\n                -2.820551\n              ],\n              [\n                133.066845,\n                -2.460418\n              ],\n              [\n                133.780031,\n                -2.479848\n              ],\n              [\n                133.696212,\n                -2.214542\n              ],\n              [\n                132.232373,\n                -2.212526\n              ],\n              [\n                131.836222,\n                -1.617162\n              ],\n              [\n                130.94284,\n                -1.432522\n              ],\n              [\n                130.519558,\n                -0.93772\n              ],\n              [\n                131.867538,\n                -0.695461\n              ],\n              [\n                132.380116,\n                -0.369538\n              ],\n              [\n                133.985548,\n                -0.78021\n              ],\n              [\n                134.143368,\n                -1.151867\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                125.240501,\n                1.419836\n              ],\n              [\n                124.437035,\n                0.427881\n              ],\n              [\n                123.685505,\n                0.235593\n              ],\n              [\n                122.723083,\n                0.431137\n              ],\n              [\n                121.056725,\n                0.381217\n              ],\n              [\n                120.183083,\n                0.237247\n              ],\n              [\n                120.04087,\n                -0.519658\n              ],\n              [\n                120.935905,\n                -1.408906\n              ],\n              [\n                121.475821,\n                -0.955962\n              ],\n              [\n                123.340565,\n                -0.615673\n              ],\n              [\n                123.258399,\n                -1.076213\n              ],\n              [\n                122.822715,\n                -0.930951\n              ],\n              [\n                122.38853,\n                -1.516858\n              ],\n              [\n                121.508274,\n                -1.904483\n              ],\n              [\n                122.454572,\n                -3.186058\n              ],\n              [\n                122.271896,\n                -3.5295\n              ],\n              [\n                123.170963,\n                -4.683693\n              ],\n              [\n                123.162333,\n                -5.340604\n              ],\n              [\n                122.628515,\n                -5.634591\n              ],\n              [\n                122.236394,\n                -5.282933\n              ],\n              [\n                122.719569,\n                -4.464172\n              ],\n              [\n                121.738234,\n                -4.851331\n              ],\n              [\n                121.489463,\n                -4.574553\n              ],\n              [\n                121.619171,\n                -4.188478\n              ],\n              [\n                120.898182,\n                -3.602105\n              ],\n              [\n                120.972389,\n                -2.627643\n              ],\n              [\n                120.305453,\n                -2.931604\n              ],\n              [\n                120.390047,\n                -4.097579\n              ],\n              [\n                120.430717,\n                -5.528241\n              ],\n              [\n                119.796543,\n                -5.6734\n              ],\n              [\n                119.366906,\n                -5.379878\n              ],\n              [\n                119.653606,\n                -4.459417\n              ],\n              [\n                119.498835,\n                -3.494412\n              ],\n              [\n                119.078344,\n                -3.487022\n              ],\n              [\n                118.767769,\n                -2.801999\n              ],\n              [\n                119.180974,\n                -2.147104\n              ],\n              [\n                119.323394,\n                -1.353147\n              ],\n              [\n                119.825999,\n                0.154254\n              ],\n              [\n                120.035702,\n                0.566477\n              ],\n              [\n                120.885779,\n                1.309223\n              ],\n              [\n                121.666817,\n                1.013944\n              ],\n              [\n                122.927567,\n                0.875192\n              ],\n              [\n                124.077522,\n                0.917102\n              ],\n              [\n                125.065989,\n                1.643259\n              ],\n              [\n                125.240501,\n                1.419836\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                128.688249,\n                1.132386\n              ],\n              [\n                128.635952,\n                0.258486\n              ],\n              [\n                128.12017,\n                0.356413\n              ],\n              [\n                127.968034,\n                -0.252077\n              ],\n              [\n                128.379999,\n                -0.780004\n              ],\n              [\n                128.100016,\n                -0.899996\n              ],\n              [\n                127.696475,\n                -0.266598\n              ],\n              [\n                127.39949,\n                1.011722\n              ],\n              [\n                127.600512,\n                1.810691\n              ],\n              [\n                127.932378,\n                2.174596\n              ],\n              [\n                128.004156,\n                1.628531\n              ],\n              [\n                128.594559,\n                1.540811\n              ],\n              [\n                128.688249,\n                1.132386\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                117.875627,\n                1.827641\n              ],\n              [\n                118.996747,\n                0.902219\n              ],\n              [\n                117.811858,\n                0.784242\n              ],\n              [\n                117.478339,\n                0.102475\n              ],\n              [\n                117.521644,\n                -0.803723\n              ],\n              [\n                116.560048,\n                -1.487661\n              ],\n              [\n                116.533797,\n                -2.483517\n              ],\n              [\n                116.148084,\n                -4.012726\n              ],\n              [\n                116.000858,\n                -3.657037\n              ],\n              [\n                114.864803,\n                -4.106984\n              ],\n              [\n                114.468652,\n                -3.495704\n              ],\n              [\n                113.755672,\n                -3.43917\n              ],\n              [\n                113.256994,\n                -3.118776\n              ],\n              [\n                112.068126,\n                -3.478392\n              ],\n              [\n                111.703291,\n                -2.994442\n              ],\n              [\n                111.04824,\n                -3.049426\n              ],\n              [\n                110.223846,\n                -2.934032\n              ],\n              [\n                110.070936,\n                -1.592874\n              ],\n              [\n                109.571948,\n                -1.314907\n              ],\n              [\n                109.091874,\n                -0.459507\n              ],\n              [\n                108.952658,\n                0.415375\n              ],\n              [\n                109.069136,\n                1.341934\n              ],\n              [\n                109.66326,\n                2.006467\n              ],\n              [\n                109.830227,\n                1.338136\n              ],\n              [\n                110.514061,\n                0.773131\n              ],\n              [\n                111.159138,\n                0.976478\n              ],\n              [\n                111.797548,\n                0.904441\n              ],\n              [\n                112.380252,\n                1.410121\n              ],\n              [\n                112.859809,\n                1.49779\n              ],\n              [\n                113.80585,\n                1.217549\n              ],\n              [\n                114.621355,\n                1.430688\n              ],\n              [\n                115.134037,\n                2.821482\n              ],\n              [\n                115.519078,\n                3.169238\n              ],\n              [\n                115.865517,\n                4.306559\n              ],\n              [\n                117.015214,\n                4.306094\n              ],\n              [\n                117.882035,\n                4.137551\n              ],\n              [\n                117.313232,\n                3.234428\n              ],\n              [\n                118.04833,\n                2.28769\n              ],\n              [\n                117.875627,\n                1.827641\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                105.817655,\n                -5.852356\n              ],\n              [\n                104.710384,\n                -5.873285\n              ],\n              [\n                103.868213,\n                -5.037315\n              ],\n              [\n                102.584261,\n                -4.220259\n              ],\n              [\n                102.156173,\n                -3.614146\n              ],\n              [\n                101.399113,\n                -2.799777\n              ],\n              [\n                100.902503,\n                -2.050262\n              ],\n              [\n                100.141981,\n                -0.650348\n              ],\n              [\n                99.26374,\n                0.183142\n              ],\n              [\n                98.970011,\n                1.042882\n              ],\n              [\n                98.601351,\n                1.823507\n              ],\n              [\n                97.699598,\n                2.453184\n              ],\n              [\n                97.176942,\n                3.308791\n              ],\n              [\n                96.424017,\n                3.86886\n              ],\n              [\n                95.380876,\n                4.970782\n              ],\n              [\n                95.293026,\n                5.479821\n              ],\n              [\n                95.936863,\n                5.439513\n              ],\n              [\n                97.484882,\n                5.246321\n              ],\n              [\n                98.369169,\n                4.26837\n              ],\n              [\n                99.142559,\n                3.59035\n              ],\n              [\n                99.693998,\n                3.174329\n              ],\n              [\n                100.641434,\n                2.099381\n              ],\n              [\n                101.658012,\n                2.083697\n              ],\n              [\n                102.498271,\n                1.3987\n              ],\n              [\n                103.07684,\n                0.561361\n              ],\n              [\n                103.838396,\n                0.104542\n              ],\n              [\n                103.437645,\n                -0.711946\n              ],\n              [\n                104.010789,\n                -1.059212\n              ],\n              [\n                104.369991,\n                -1.084843\n              ],\n              [\n                104.53949,\n                -1.782372\n              ],\n              [\n                104.887893,\n                -2.340425\n              ],\n              [\n                105.622111,\n                -2.428844\n              ],\n              [\n                106.108593,\n                -3.061777\n              ],\n              [\n                105.857446,\n                -4.305525\n              ],\n              [\n                105.817655,\n                -5.852356\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/IND.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"IND\",\"properties\":{\"name\":\"India\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[77.837451,35.49401],[78.912269,34.321936],[78.811086,33.506198],[79.208892,32.994395],[79.176129,32.48378],[78.458446,32.618164],[78.738894,31.515906],[79.721367,30.882715],[81.111256,30.183481],[80.476721,29.729865],[80.088425,28.79447],[81.057203,28.416095],[81.999987,27.925479],[83.304249,27.364506],[84.675018,27.234901],[85.251779,26.726198],[86.024393,26.630985],[87.227472,26.397898],[88.060238,26.414615],[88.174804,26.810405],[88.043133,27.445819],[88.120441,27.876542],[88.730326,28.086865],[88.814248,27.299316],[88.835643,27.098966],[89.744528,26.719403],[90.373275,26.875724],[91.217513,26.808648],[92.033484,26.83831],[92.103712,27.452614],[91.696657,27.771742],[92.503119,27.896876],[93.413348,28.640629],[94.56599,29.277438],[95.404802,29.031717],[96.117679,29.452802],[96.586591,28.83098],[96.248833,28.411031],[97.327114,28.261583],[97.402561,27.882536],[97.051989,27.699059],[97.133999,27.083774],[96.419366,27.264589],[95.124768,26.573572],[95.155153,26.001307],[94.603249,25.162495],[94.552658,24.675238],[94.106742,23.850741],[93.325188,24.078556],[93.286327,23.043658],[93.060294,22.703111],[93.166128,22.27846],[92.672721,22.041239],[92.146035,23.627499],[91.869928,23.624346],[91.706475,22.985264],[91.158963,23.503527],[91.46773,24.072639],[91.915093,24.130414],[92.376202,24.976693],[91.799596,25.147432],[90.872211,25.132601],[89.920693,25.26975],[89.832481,25.965082],[89.355094,26.014407],[88.563049,26.446526],[88.209789,25.768066],[88.931554,25.238692],[88.306373,24.866079],[88.084422,24.501657],[88.69994,24.233715],[88.52977,23.631142],[88.876312,22.879146],[89.031961,22.055708],[88.888766,21.690588],[88.208497,21.703172],[86.975704,21.495562],[87.033169,20.743308],[86.499351,20.151638],[85.060266,19.478579],[83.941006,18.30201],[83.189217,17.671221],[82.192792,17.016636],[82.191242,16.556664],[81.692719,16.310219],[80.791999,15.951972],[80.324896,15.899185],[80.025069,15.136415],[80.233274,13.835771],[80.286294,13.006261],[79.862547,12.056215],[79.857999,10.357275],[79.340512,10.308854],[78.885345,9.546136],[79.18972,9.216544],[78.277941,8.933047],[77.941165,8.252959],[77.539898,7.965535],[76.592979,8.899276],[76.130061,10.29963],[75.746467,11.308251],[75.396101,11.781245],[74.864816,12.741936],[74.616717,13.992583],[74.443859,14.617222],[73.534199,15.990652],[73.119909,17.92857],[72.820909,19.208234],[72.824475,20.419503],[72.630533,21.356009],[71.175273,20.757441],[70.470459,20.877331],[69.16413,22.089298],[69.644928,22.450775],[69.349597,22.84318],[68.176645,23.691965],[68.842599,24.359134],[71.04324,24.356524],[70.844699,25.215102],[70.282873,25.722229],[70.168927,26.491872],[69.514393,26.940966],[70.616496,27.989196],[71.777666,27.91318],[72.823752,28.961592],[73.450638,29.976413],[74.42138,30.979815],[74.405929,31.692639],[75.258642,32.271105],[74.451559,32.7649],[74.104294,33.441473],[73.749948,34.317699],[74.240203,34.748887],[75.757061,34.504923],[76.871722,34.653544],[77.837451,35.49401]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/IND_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              16.63619188\n            ],\n            [\n              67.5,\n              21.94304553\n            ],\n            [\n              73.125,\n              21.94304553\n            ],\n            [\n              73.125,\n              16.63619188\n            ],\n            [\n              67.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              21.94304553\n            ],\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              78.75,\n              21.94304553\n            ],\n            [\n              67.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              11.17840187\n            ],\n            [\n              73.125,\n              16.63619188\n            ],\n            [\n              78.75,\n              16.63619188\n            ],\n            [\n              78.75,\n              11.17840187\n            ],\n            [\n              73.125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              16.63619188\n            ],\n            [\n              73.125,\n              21.94304553\n            ],\n            [\n              78.75,\n              21.94304553\n            ],\n            [\n              78.75,\n              16.63619188\n            ],\n            [\n              73.125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              31.95216224\n            ],\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              78.75,\n              36.59788913\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              73.125,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              5.61598582\n            ],\n            [\n              73.125,\n              11.17840187\n            ],\n            [\n              78.75,\n              11.17840187\n            ],\n            [\n              78.75,\n              5.61598582\n            ],\n            [\n              73.125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              11.17840187\n            ],\n            [\n              78.75,\n              16.63619188\n            ],\n            [\n              84.375,\n              16.63619188\n            ],\n            [\n              84.375,\n              11.17840187\n            ],\n            [\n              78.75,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              16.63619188\n            ],\n            [\n              78.75,\n              21.94304553\n            ],\n            [\n              84.375,\n              21.94304553\n            ],\n            [\n              84.375,\n              16.63619188\n            ],\n            [\n              78.75,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              21.94304553\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              90,\n              31.95216224\n            ],\n            [\n              90,\n              21.94304553\n            ],\n            [\n              78.75,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              78.75,\n              36.59788913\n            ],\n            [\n              84.375,\n              36.59788913\n            ],\n            [\n              84.375,\n              31.95216224\n            ],\n            [\n              78.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              5.61598582\n            ],\n            [\n              78.75,\n              11.17840187\n            ],\n            [\n              84.375,\n              11.17840187\n            ],\n            [\n              84.375,\n              5.61598582\n            ],\n            [\n              78.75,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              16.63619188\n            ],\n            [\n              84.375,\n              21.94304553\n            ],\n            [\n              90,\n              21.94304553\n            ],\n            [\n              90,\n              16.63619188\n            ],\n            [\n              84.375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              21.94304553\n            ],\n            [\n              90,\n              31.95216224\n            ],\n            [\n              101.25,\n              31.95216224\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              90,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              77.837451,\n              35.49401\n            ],\n            [\n              78.912269,\n              34.321936\n            ],\n            [\n              78.811086,\n              33.506198\n            ],\n            [\n              79.208892,\n              32.994395\n            ],\n            [\n              79.176129,\n              32.48378\n            ],\n            [\n              78.458446,\n              32.618164\n            ],\n            [\n              78.738894,\n              31.515906\n            ],\n            [\n              79.721367,\n              30.882715\n            ],\n            [\n              81.111256,\n              30.183481\n            ],\n            [\n              80.476721,\n              29.729865\n            ],\n            [\n              80.088425,\n              28.79447\n            ],\n            [\n              81.057203,\n              28.416095\n            ],\n            [\n              81.999987,\n              27.925479\n            ],\n            [\n              83.304249,\n              27.364506\n            ],\n            [\n              84.675018,\n              27.234901\n            ],\n            [\n              85.251779,\n              26.726198\n            ],\n            [\n              86.024393,\n              26.630985\n            ],\n            [\n              87.227472,\n              26.397898\n            ],\n            [\n              88.060238,\n              26.414615\n            ],\n            [\n              88.174804,\n              26.810405\n            ],\n            [\n              88.043133,\n              27.445819\n            ],\n            [\n              88.120441,\n              27.876542\n            ],\n            [\n              88.730326,\n              28.086865\n            ],\n            [\n              88.814248,\n              27.299316\n            ],\n            [\n              88.835643,\n              27.098966\n            ],\n            [\n              89.744528,\n              26.719403\n            ],\n            [\n              90.373275,\n              26.875724\n            ],\n            [\n              91.217513,\n              26.808648\n            ],\n            [\n              92.033484,\n              26.83831\n            ],\n            [\n              92.103712,\n              27.452614\n            ],\n            [\n              91.696657,\n              27.771742\n            ],\n            [\n              92.503119,\n              27.896876\n            ],\n            [\n              93.413348,\n              28.640629\n            ],\n            [\n              94.56599,\n              29.277438\n            ],\n            [\n              95.404802,\n              29.031717\n            ],\n            [\n              96.117679,\n              29.452802\n            ],\n            [\n              96.586591,\n              28.83098\n            ],\n            [\n              96.248833,\n              28.411031\n            ],\n            [\n              97.327114,\n              28.261583\n            ],\n            [\n              97.402561,\n              27.882536\n            ],\n            [\n              97.051989,\n              27.699059\n            ],\n            [\n              97.133999,\n              27.083774\n            ],\n            [\n              96.419366,\n              27.264589\n            ],\n            [\n              95.124768,\n              26.573572\n            ],\n            [\n              95.155153,\n              26.001307\n            ],\n            [\n              94.603249,\n              25.162495\n            ],\n            [\n              94.552658,\n              24.675238\n            ],\n            [\n              94.106742,\n              23.850741\n            ],\n            [\n              93.325188,\n              24.078556\n            ],\n            [\n              93.286327,\n              23.043658\n            ],\n            [\n              93.060294,\n              22.703111\n            ],\n            [\n              93.166128,\n              22.27846\n            ],\n            [\n              92.672721,\n              22.041239\n            ],\n            [\n              92.146035,\n              23.627499\n            ],\n            [\n              91.869928,\n              23.624346\n            ],\n            [\n              91.706475,\n              22.985264\n            ],\n            [\n              91.158963,\n              23.503527\n            ],\n            [\n              91.46773,\n              24.072639\n            ],\n            [\n              91.915093,\n              24.130414\n            ],\n            [\n              92.376202,\n              24.976693\n            ],\n            [\n              91.799596,\n              25.147432\n            ],\n            [\n              90.872211,\n              25.132601\n            ],\n            [\n              89.920693,\n              25.26975\n            ],\n            [\n              89.832481,\n              25.965082\n            ],\n            [\n              89.355094,\n              26.014407\n            ],\n            [\n              88.563049,\n              26.446526\n            ],\n            [\n              88.209789,\n              25.768066\n            ],\n            [\n              88.931554,\n              25.238692\n            ],\n            [\n              88.306373,\n              24.866079\n            ],\n            [\n              88.084422,\n              24.501657\n            ],\n            [\n              88.69994,\n              24.233715\n            ],\n            [\n              88.52977,\n              23.631142\n            ],\n            [\n              88.876312,\n              22.879146\n            ],\n            [\n              89.031961,\n              22.055708\n            ],\n            [\n              88.888766,\n              21.690588\n            ],\n            [\n              88.208497,\n              21.703172\n            ],\n            [\n              86.975704,\n              21.495562\n            ],\n            [\n              87.033169,\n              20.743308\n            ],\n            [\n              86.499351,\n              20.151638\n            ],\n            [\n              85.060266,\n              19.478579\n            ],\n            [\n              83.941006,\n              18.30201\n            ],\n            [\n              83.189217,\n              17.671221\n            ],\n            [\n              82.192792,\n              17.016636\n            ],\n            [\n              82.191242,\n              16.556664\n            ],\n            [\n              81.692719,\n              16.310219\n            ],\n            [\n              80.791999,\n              15.951972\n            ],\n            [\n              80.324896,\n              15.899185\n            ],\n            [\n              80.025069,\n              15.136415\n            ],\n            [\n              80.233274,\n              13.835771\n            ],\n            [\n              80.286294,\n              13.006261\n            ],\n            [\n              79.862547,\n              12.056215\n            ],\n            [\n              79.857999,\n              10.357275\n            ],\n            [\n              79.340512,\n              10.308854\n            ],\n            [\n              78.885345,\n              9.546136\n            ],\n            [\n              79.18972,\n              9.216544\n            ],\n            [\n              78.277941,\n              8.933047\n            ],\n            [\n              77.941165,\n              8.252959\n            ],\n            [\n              77.539898,\n              7.965535\n            ],\n            [\n              76.592979,\n              8.899276\n            ],\n            [\n              76.130061,\n              10.29963\n            ],\n            [\n              75.746467,\n              11.308251\n            ],\n            [\n              75.396101,\n              11.781245\n            ],\n            [\n              74.864816,\n              12.741936\n            ],\n            [\n              74.616717,\n              13.992583\n            ],\n            [\n              74.443859,\n              14.617222\n            ],\n            [\n              73.534199,\n              15.990652\n            ],\n            [\n              73.119909,\n              17.92857\n            ],\n            [\n              72.820909,\n              19.208234\n            ],\n            [\n              72.824475,\n              20.419503\n            ],\n            [\n              72.630533,\n              21.356009\n            ],\n            [\n              71.175273,\n              20.757441\n            ],\n            [\n              70.470459,\n              20.877331\n            ],\n            [\n              69.16413,\n              22.089298\n            ],\n            [\n              69.644928,\n              22.450775\n            ],\n            [\n              69.349597,\n              22.84318\n            ],\n            [\n              68.176645,\n              23.691965\n            ],\n            [\n              68.842599,\n              24.359134\n            ],\n            [\n              71.04324,\n              24.356524\n            ],\n            [\n              70.844699,\n              25.215102\n            ],\n            [\n              70.282873,\n              25.722229\n            ],\n            [\n              70.168927,\n              26.491872\n            ],\n            [\n              69.514393,\n              26.940966\n            ],\n            [\n              70.616496,\n              27.989196\n            ],\n            [\n              71.777666,\n              27.91318\n            ],\n            [\n              72.823752,\n              28.961592\n            ],\n            [\n              73.450638,\n              29.976413\n            ],\n            [\n              74.42138,\n              30.979815\n            ],\n            [\n              74.405929,\n              31.692639\n            ],\n            [\n              75.258642,\n              32.271105\n            ],\n            [\n              74.451559,\n              32.7649\n            ],\n            [\n              74.104294,\n              33.441473\n            ],\n            [\n              73.749948,\n              34.317699\n            ],\n            [\n              74.240203,\n              34.748887\n            ],\n            [\n              75.757061,\n              34.504923\n            ],\n            [\n              76.871722,\n              34.653544\n            ],\n            [\n              77.837451,\n              35.49401\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/IRL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"IRL\",\"properties\":{\"name\":\"Ireland\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-6.197885,53.867565],[-6.032985,53.153164],[-6.788857,52.260118],[-8.561617,51.669301],[-9.977086,51.820455],[-9.166283,52.864629],[-9.688525,53.881363],[-8.327987,54.664519],[-7.572168,55.131622],[-7.366031,54.595841],[-7.572168,54.059956],[-6.95373,54.073702],[-6.197885,53.867565]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/IRL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              48.92249926\n            ],\n            [\n              -11.25,\n              52.48278022\n            ],\n            [\n              -5.625,\n              52.48278022\n            ],\n            [\n              -5.625,\n              48.92249926\n            ],\n            [\n              -11.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              52.48278022\n            ],\n            [\n              -11.25,\n              55.77657302\n            ],\n            [\n              -5.625,\n              55.77657302\n            ],\n            [\n              -5.625,\n              52.48278022\n            ],\n            [\n              -11.25,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -6.197885,\n              53.867565\n            ],\n            [\n              -6.032985,\n              53.153164\n            ],\n            [\n              -6.788857,\n              52.260118\n            ],\n            [\n              -8.561617,\n              51.669301\n            ],\n            [\n              -9.977086,\n              51.820455\n            ],\n            [\n              -9.166283,\n              52.864629\n            ],\n            [\n              -9.688525,\n              53.881363\n            ],\n            [\n              -8.327987,\n              54.664519\n            ],\n            [\n              -7.572168,\n              55.131622\n            ],\n            [\n              -7.366031,\n              54.595841\n            ],\n            [\n              -7.572168,\n              54.059956\n            ],\n            [\n              -6.95373,\n              54.073702\n            ],\n            [\n              -6.197885,\n              53.867565\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/IRN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"IRN\",\"properties\":{\"name\":\"Iran\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[53.921598,37.198918],[54.800304,37.392421],[55.511578,37.964117],[56.180375,37.935127],[56.619366,38.121394],[57.330434,38.029229],[58.436154,37.522309],[59.234762,37.412988],[60.377638,36.527383],[61.123071,36.491597],[61.210817,35.650072],[60.803193,34.404102],[60.52843,33.676446],[60.9637,33.528832],[60.536078,32.981269],[60.863655,32.18292],[60.941945,31.548075],[61.699314,31.379506],[61.781222,30.73585],[60.874248,29.829239],[61.369309,29.303276],[61.771868,28.699334],[62.72783,28.259645],[62.755426,27.378923],[63.233898,27.217047],[63.316632,26.756532],[61.874187,26.239975],[61.497363,25.078237],[59.616134,25.380157],[58.525761,25.609962],[57.397251,25.739902],[56.970766,26.966106],[56.492139,27.143305],[55.72371,26.964633],[54.71509,26.480658],[53.493097,26.812369],[52.483598,27.580849],[51.520763,27.86569],[50.852948,28.814521],[50.115009,30.147773],[49.57685,29.985715],[48.941333,30.31709],[48.567971,29.926778],[48.014568,30.452457],[48.004698,30.985137],[47.685286,30.984853],[47.849204,31.709176],[47.334661,32.469155],[46.109362,33.017287],[45.416691,33.967798],[45.64846,34.748138],[46.151788,35.093259],[46.07634,35.677383],[45.420618,35.977546],[44.77267,37.17045],[44.225756,37.971584],[44.421403,38.281281],[44.109225,39.428136],[44.79399,39.713003],[44.952688,39.335765],[45.457722,38.874139],[46.143623,38.741201],[46.50572,38.770605],[47.685079,39.508364],[48.060095,39.582235],[48.355529,39.288765],[48.010744,38.794015],[48.634375,38.270378],[48.883249,38.320245],[49.199612,37.582874],[50.147771,37.374567],[50.842354,36.872814],[52.264025,36.700422],[53.82579,36.965031],[53.921598,37.198918]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/IRN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              27.05912578\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              50.625,\n              31.95216224\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              45,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              31.95216224\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              56.25,\n              31.95216224\n            ],\n            [\n              45,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              50.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              50.625,\n              31.95216224\n            ],\n            [\n              56.25,\n              31.95216224\n            ],\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              50.625,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              56.25,\n              31.95216224\n            ],\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              67.5,\n              21.94304553\n            ],\n            [\n              56.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              31.95216224\n            ],\n            [\n              56.25,\n              36.59788913\n            ],\n            [\n              61.875,\n              36.59788913\n            ],\n            [\n              61.875,\n              31.95216224\n            ],\n            [\n              56.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              36.59788913\n            ],\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              61.875,\n              40.97989807\n            ],\n            [\n              61.875,\n              36.59788913\n            ],\n            [\n              56.25,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              53.921598,\n              37.198918\n            ],\n            [\n              54.800304,\n              37.392421\n            ],\n            [\n              55.511578,\n              37.964117\n            ],\n            [\n              56.180375,\n              37.935127\n            ],\n            [\n              56.619366,\n              38.121394\n            ],\n            [\n              57.330434,\n              38.029229\n            ],\n            [\n              58.436154,\n              37.522309\n            ],\n            [\n              59.234762,\n              37.412988\n            ],\n            [\n              60.377638,\n              36.527383\n            ],\n            [\n              61.123071,\n              36.491597\n            ],\n            [\n              61.210817,\n              35.650072\n            ],\n            [\n              60.803193,\n              34.404102\n            ],\n            [\n              60.52843,\n              33.676446\n            ],\n            [\n              60.9637,\n              33.528832\n            ],\n            [\n              60.536078,\n              32.981269\n            ],\n            [\n              60.863655,\n              32.18292\n            ],\n            [\n              60.941945,\n              31.548075\n            ],\n            [\n              61.699314,\n              31.379506\n            ],\n            [\n              61.781222,\n              30.73585\n            ],\n            [\n              60.874248,\n              29.829239\n            ],\n            [\n              61.369309,\n              29.303276\n            ],\n            [\n              61.771868,\n              28.699334\n            ],\n            [\n              62.72783,\n              28.259645\n            ],\n            [\n              62.755426,\n              27.378923\n            ],\n            [\n              63.233898,\n              27.217047\n            ],\n            [\n              63.316632,\n              26.756532\n            ],\n            [\n              61.874187,\n              26.239975\n            ],\n            [\n              61.497363,\n              25.078237\n            ],\n            [\n              59.616134,\n              25.380157\n            ],\n            [\n              58.525761,\n              25.609962\n            ],\n            [\n              57.397251,\n              25.739902\n            ],\n            [\n              56.970766,\n              26.966106\n            ],\n            [\n              56.492139,\n              27.143305\n            ],\n            [\n              55.72371,\n              26.964633\n            ],\n            [\n              54.71509,\n              26.480658\n            ],\n            [\n              53.493097,\n              26.812369\n            ],\n            [\n              52.483598,\n              27.580849\n            ],\n            [\n              51.520763,\n              27.86569\n            ],\n            [\n              50.852948,\n              28.814521\n            ],\n            [\n              50.115009,\n              30.147773\n            ],\n            [\n              49.57685,\n              29.985715\n            ],\n            [\n              48.941333,\n              30.31709\n            ],\n            [\n              48.567971,\n              29.926778\n            ],\n            [\n              48.014568,\n              30.452457\n            ],\n            [\n              48.004698,\n              30.985137\n            ],\n            [\n              47.685286,\n              30.984853\n            ],\n            [\n              47.849204,\n              31.709176\n            ],\n            [\n              47.334661,\n              32.469155\n            ],\n            [\n              46.109362,\n              33.017287\n            ],\n            [\n              45.416691,\n              33.967798\n            ],\n            [\n              45.64846,\n              34.748138\n            ],\n            [\n              46.151788,\n              35.093259\n            ],\n            [\n              46.07634,\n              35.677383\n            ],\n            [\n              45.420618,\n              35.977546\n            ],\n            [\n              44.77267,\n              37.17045\n            ],\n            [\n              44.225756,\n              37.971584\n            ],\n            [\n              44.421403,\n              38.281281\n            ],\n            [\n              44.109225,\n              39.428136\n            ],\n            [\n              44.79399,\n              39.713003\n            ],\n            [\n              44.952688,\n              39.335765\n            ],\n            [\n              45.457722,\n              38.874139\n            ],\n            [\n              46.143623,\n              38.741201\n            ],\n            [\n              46.50572,\n              38.770605\n            ],\n            [\n              47.685079,\n              39.508364\n            ],\n            [\n              48.060095,\n              39.582235\n            ],\n            [\n              48.355529,\n              39.288765\n            ],\n            [\n              48.010744,\n              38.794015\n            ],\n            [\n              48.634375,\n              38.270378\n            ],\n            [\n              48.883249,\n              38.320245\n            ],\n            [\n              49.199612,\n              37.582874\n            ],\n            [\n              50.147771,\n              37.374567\n            ],\n            [\n              50.842354,\n              36.872814\n            ],\n            [\n              52.264025,\n              36.700422\n            ],\n            [\n              53.82579,\n              36.965031\n            ],\n            [\n              53.921598,\n              37.198918\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/IRQ.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"IRQ\",\"properties\":{\"name\":\"Iraq\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[45.420618,35.977546],[46.07634,35.677383],[46.151788,35.093259],[45.64846,34.748138],[45.416691,33.967798],[46.109362,33.017287],[47.334661,32.469155],[47.849204,31.709176],[47.685286,30.984853],[48.004698,30.985137],[48.014568,30.452457],[48.567971,29.926778],[47.974519,29.975819],[47.302622,30.05907],[46.568713,29.099025],[44.709499,29.178891],[41.889981,31.190009],[40.399994,31.889992],[39.195468,32.161009],[38.792341,33.378686],[41.006159,34.419372],[41.383965,35.628317],[41.289707,36.358815],[41.837064,36.605854],[42.349591,37.229873],[42.779126,37.385264],[43.942259,37.256228],[44.293452,37.001514],[44.772699,37.170445],[45.420618,35.977546]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/IRQ_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              27.05912578\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              45,\n              27.05912578\n            ],\n            [\n              39.375,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              45,\n              36.59788913\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              39.375,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              27.05912578\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              50.625,\n              31.95216224\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              45,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              31.95216224\n            ],\n            [\n              45,\n              36.59788913\n            ],\n            [\n              50.625,\n              36.59788913\n            ],\n            [\n              50.625,\n              31.95216224\n            ],\n            [\n              45,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              36.59788913\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              50.625,\n              36.59788913\n            ],\n            [\n              45,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45.420618,\n              35.977546\n            ],\n            [\n              46.07634,\n              35.677383\n            ],\n            [\n              46.151788,\n              35.093259\n            ],\n            [\n              45.64846,\n              34.748138\n            ],\n            [\n              45.416691,\n              33.967798\n            ],\n            [\n              46.109362,\n              33.017287\n            ],\n            [\n              47.334661,\n              32.469155\n            ],\n            [\n              47.849204,\n              31.709176\n            ],\n            [\n              47.685286,\n              30.984853\n            ],\n            [\n              48.004698,\n              30.985137\n            ],\n            [\n              48.014568,\n              30.452457\n            ],\n            [\n              48.567971,\n              29.926778\n            ],\n            [\n              47.974519,\n              29.975819\n            ],\n            [\n              47.302622,\n              30.05907\n            ],\n            [\n              46.568713,\n              29.099025\n            ],\n            [\n              44.709499,\n              29.178891\n            ],\n            [\n              41.889981,\n              31.190009\n            ],\n            [\n              40.399994,\n              31.889992\n            ],\n            [\n              39.195468,\n              32.161009\n            ],\n            [\n              38.792341,\n              33.378686\n            ],\n            [\n              41.006159,\n              34.419372\n            ],\n            [\n              41.383965,\n              35.628317\n            ],\n            [\n              41.289707,\n              36.358815\n            ],\n            [\n              41.837064,\n              36.605854\n            ],\n            [\n              42.349591,\n              37.229873\n            ],\n            [\n              42.779126,\n              37.385264\n            ],\n            [\n              43.942259,\n              37.256228\n            ],\n            [\n              44.293452,\n              37.001514\n            ],\n            [\n              44.772699,\n              37.170445\n            ],\n            [\n              45.420618,\n              35.977546\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ISL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ISL\",\"properties\":{\"name\":\"Iceland\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-14.508695,66.455892],[-14.739637,65.808748],[-13.609732,65.126671],[-14.909834,64.364082],[-17.794438,63.678749],[-18.656246,63.496383],[-19.972755,63.643635],[-22.762972,63.960179],[-21.778484,64.402116],[-23.955044,64.89113],[-22.184403,65.084968],[-22.227423,65.378594],[-24.326184,65.611189],[-23.650515,66.262519],[-22.134922,66.410469],[-20.576284,65.732112],[-19.056842,66.276601],[-17.798624,65.993853],[-16.167819,66.526792],[-14.508695,66.455892]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ISL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              66.51326044\n            ],\n            [\n              -16.875,\n              68.65655498\n            ],\n            [\n              -11.25,\n              68.65655498\n            ],\n            [\n              -11.25,\n              66.51326044\n            ],\n            [\n              -16.875,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              61.60639637\n            ],\n            [\n              -22.5,\n              66.51326044\n            ],\n            [\n              -11.25,\n              66.51326044\n            ],\n            [\n              -11.25,\n              61.60639637\n            ],\n            [\n              -22.5,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -28.125,\n              61.60639637\n            ],\n            [\n              -28.125,\n              64.1681069\n            ],\n            [\n              -22.5,\n              64.1681069\n            ],\n            [\n              -22.5,\n              61.60639637\n            ],\n            [\n              -28.125,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -28.125,\n              64.1681069\n            ],\n            [\n              -28.125,\n              66.51326044\n            ],\n            [\n              -22.5,\n              66.51326044\n            ],\n            [\n              -22.5,\n              64.1681069\n            ],\n            [\n              -28.125,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -14.508695,\n              66.455892\n            ],\n            [\n              -14.739637,\n              65.808748\n            ],\n            [\n              -13.609732,\n              65.126671\n            ],\n            [\n              -14.909834,\n              64.364082\n            ],\n            [\n              -17.794438,\n              63.678749\n            ],\n            [\n              -18.656246,\n              63.496383\n            ],\n            [\n              -19.972755,\n              63.643635\n            ],\n            [\n              -22.762972,\n              63.960179\n            ],\n            [\n              -21.778484,\n              64.402116\n            ],\n            [\n              -23.955044,\n              64.89113\n            ],\n            [\n              -22.184403,\n              65.084968\n            ],\n            [\n              -22.227423,\n              65.378594\n            ],\n            [\n              -24.326184,\n              65.611189\n            ],\n            [\n              -23.650515,\n              66.262519\n            ],\n            [\n              -22.134922,\n              66.410469\n            ],\n            [\n              -20.576284,\n              65.732112\n            ],\n            [\n              -19.056842,\n              66.276601\n            ],\n            [\n              -17.798624,\n              65.993853\n            ],\n            [\n              -16.167819,\n              66.526792\n            ],\n            [\n              -14.508695,\n              66.455892\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ISR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ISR\",\"properties\":{\"name\":\"Israel\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[35.719918,32.709192],[35.545665,32.393992],[35.18393,32.532511],[34.974641,31.866582],[35.225892,31.754341],[34.970507,31.616778],[34.927408,31.353435],[35.397561,31.489086],[35.420918,31.100066],[34.922603,29.501326],[34.265433,31.219361],[34.556372,31.548824],[34.488107,31.605539],[34.752587,32.072926],[34.955417,32.827376],[35.098457,33.080539],[35.126053,33.0909],[35.460709,33.08904],[35.552797,33.264275],[35.821101,33.277426],[35.836397,32.868123],[35.700798,32.716014],[35.719918,32.709192]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ISR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              27.05912578\n            ],\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              39.375,\n              27.05912578\n            ],\n            [\n              33.75,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              35.719918,\n              32.709192\n            ],\n            [\n              35.545665,\n              32.393992\n            ],\n            [\n              35.18393,\n              32.532511\n            ],\n            [\n              34.974641,\n              31.866582\n            ],\n            [\n              35.225892,\n              31.754341\n            ],\n            [\n              34.970507,\n              31.616778\n            ],\n            [\n              34.927408,\n              31.353435\n            ],\n            [\n              35.397561,\n              31.489086\n            ],\n            [\n              35.420918,\n              31.100066\n            ],\n            [\n              34.922603,\n              29.501326\n            ],\n            [\n              34.265433,\n              31.219361\n            ],\n            [\n              34.556372,\n              31.548824\n            ],\n            [\n              34.488107,\n              31.605539\n            ],\n            [\n              34.752587,\n              32.072926\n            ],\n            [\n              34.955417,\n              32.827376\n            ],\n            [\n              35.098457,\n              33.080539\n            ],\n            [\n              35.126053,\n              33.0909\n            ],\n            [\n              35.460709,\n              33.08904\n            ],\n            [\n              35.552797,\n              33.264275\n            ],\n            [\n              35.821101,\n              33.277426\n            ],\n            [\n              35.836397,\n              32.868123\n            ],\n            [\n              35.700798,\n              32.716014\n            ],\n            [\n              35.719918,\n              32.709192\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ITA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ITA\",\"properties\":{\"name\":\"Italy\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[15.520376,38.231155],[15.160243,37.444046],[15.309898,37.134219],[15.099988,36.619987],[14.335229,36.996631],[13.826733,37.104531],[12.431004,37.61295],[12.570944,38.126381],[13.741156,38.034966],[14.761249,38.143874],[15.520376,38.231155]]],[[[9.210012,41.209991],[9.809975,40.500009],[9.669519,39.177376],[9.214818,39.240473],[8.806936,38.906618],[8.428302,39.171847],[8.388253,40.378311],[8.159998,40.950007],[8.709991,40.899984],[9.210012,41.209991]]],[[[12.376485,46.767559],[13.806475,46.509306],[13.69811,46.016778],[13.93763,45.591016],[13.141606,45.736692],[12.328581,45.381778],[12.383875,44.885374],[12.261453,44.600482],[12.589237,44.091366],[13.526906,43.587727],[14.029821,42.761008],[15.14257,41.95514],[15.926191,41.961315],[16.169897,41.740295],[15.889346,41.541082],[16.785002,41.179606],[17.519169,40.877143],[18.376687,40.355625],[18.480247,40.168866],[18.293385,39.810774],[17.73838,40.277671],[16.869596,40.442235],[16.448743,39.795401],[17.17149,39.4247],[17.052841,38.902871],[16.635088,38.843572],[16.100961,37.985899],[15.684087,37.908849],[15.687963,38.214593],[15.891981,38.750942],[16.109332,38.964547],[15.718814,39.544072],[15.413613,40.048357],[14.998496,40.172949],[14.703268,40.60455],[14.060672,40.786348],[13.627985,41.188287],[12.888082,41.25309],[12.106683,41.704535],[11.191906,42.355425],[10.511948,42.931463],[10.200029,43.920007],[9.702488,44.036279],[8.888946,44.366336],[8.428561,44.231228],[7.850767,43.767148],[7.435185,43.693845],[7.549596,44.127901],[7.007562,44.254767],[6.749955,45.028518],[7.096652,45.333099],[6.802355,45.70858],[6.843593,45.991147],[7.273851,45.776948],[7.755992,45.82449],[8.31663,46.163642],[8.489952,46.005151],[8.966306,46.036932],[9.182882,46.440215],[9.922837,46.314899],[10.363378,46.483571],[10.442701,46.893546],[11.048556,46.751359],[11.164828,46.941579],[12.153088,47.115393],[12.376485,46.767559]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ITA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              36.59788913\n            ],\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              11.25,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              11.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              11.25,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              16.875,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              36.59788913\n            ],\n            [\n              5.625,\n              40.97989807\n            ],\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              11.25,\n              36.59788913\n            ],\n            [\n              5.625,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              40.97989807\n            ],\n            [\n              5.625,\n              45.08903556\n            ],\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              5.625,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              45.08903556\n            ],\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              5.625,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                15.520376,\n                38.231155\n              ],\n              [\n                15.160243,\n                37.444046\n              ],\n              [\n                15.309898,\n                37.134219\n              ],\n              [\n                15.099988,\n                36.619987\n              ],\n              [\n                14.335229,\n                36.996631\n              ],\n              [\n                13.826733,\n                37.104531\n              ],\n              [\n                12.431004,\n                37.61295\n              ],\n              [\n                12.570944,\n                38.126381\n              ],\n              [\n                13.741156,\n                38.034966\n              ],\n              [\n                14.761249,\n                38.143874\n              ],\n              [\n                15.520376,\n                38.231155\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                9.210012,\n                41.209991\n              ],\n              [\n                9.809975,\n                40.500009\n              ],\n              [\n                9.669519,\n                39.177376\n              ],\n              [\n                9.214818,\n                39.240473\n              ],\n              [\n                8.806936,\n                38.906618\n              ],\n              [\n                8.428302,\n                39.171847\n              ],\n              [\n                8.388253,\n                40.378311\n              ],\n              [\n                8.159998,\n                40.950007\n              ],\n              [\n                8.709991,\n                40.899984\n              ],\n              [\n                9.210012,\n                41.209991\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                12.376485,\n                46.767559\n              ],\n              [\n                13.806475,\n                46.509306\n              ],\n              [\n                13.69811,\n                46.016778\n              ],\n              [\n                13.93763,\n                45.591016\n              ],\n              [\n                13.141606,\n                45.736692\n              ],\n              [\n                12.328581,\n                45.381778\n              ],\n              [\n                12.383875,\n                44.885374\n              ],\n              [\n                12.261453,\n                44.600482\n              ],\n              [\n                12.589237,\n                44.091366\n              ],\n              [\n                13.526906,\n                43.587727\n              ],\n              [\n                14.029821,\n                42.761008\n              ],\n              [\n                15.14257,\n                41.95514\n              ],\n              [\n                15.926191,\n                41.961315\n              ],\n              [\n                16.169897,\n                41.740295\n              ],\n              [\n                15.889346,\n                41.541082\n              ],\n              [\n                16.785002,\n                41.179606\n              ],\n              [\n                17.519169,\n                40.877143\n              ],\n              [\n                18.376687,\n                40.355625\n              ],\n              [\n                18.480247,\n                40.168866\n              ],\n              [\n                18.293385,\n                39.810774\n              ],\n              [\n                17.73838,\n                40.277671\n              ],\n              [\n                16.869596,\n                40.442235\n              ],\n              [\n                16.448743,\n                39.795401\n              ],\n              [\n                17.17149,\n                39.4247\n              ],\n              [\n                17.052841,\n                38.902871\n              ],\n              [\n                16.635088,\n                38.843572\n              ],\n              [\n                16.100961,\n                37.985899\n              ],\n              [\n                15.684087,\n                37.908849\n              ],\n              [\n                15.687963,\n                38.214593\n              ],\n              [\n                15.891981,\n                38.750942\n              ],\n              [\n                16.109332,\n                38.964547\n              ],\n              [\n                15.718814,\n                39.544072\n              ],\n              [\n                15.413613,\n                40.048357\n              ],\n              [\n                14.998496,\n                40.172949\n              ],\n              [\n                14.703268,\n                40.60455\n              ],\n              [\n                14.060672,\n                40.786348\n              ],\n              [\n                13.627985,\n                41.188287\n              ],\n              [\n                12.888082,\n                41.25309\n              ],\n              [\n                12.106683,\n                41.704535\n              ],\n              [\n                11.191906,\n                42.355425\n              ],\n              [\n                10.511948,\n                42.931463\n              ],\n              [\n                10.200029,\n                43.920007\n              ],\n              [\n                9.702488,\n                44.036279\n              ],\n              [\n                8.888946,\n                44.366336\n              ],\n              [\n                8.428561,\n                44.231228\n              ],\n              [\n                7.850767,\n                43.767148\n              ],\n              [\n                7.435185,\n                43.693845\n              ],\n              [\n                7.549596,\n                44.127901\n              ],\n              [\n                7.007562,\n                44.254767\n              ],\n              [\n                6.749955,\n                45.028518\n              ],\n              [\n                7.096652,\n                45.333099\n              ],\n              [\n                6.802355,\n                45.70858\n              ],\n              [\n                6.843593,\n                45.991147\n              ],\n              [\n                7.273851,\n                45.776948\n              ],\n              [\n                7.755992,\n                45.82449\n              ],\n              [\n                8.31663,\n                46.163642\n              ],\n              [\n                8.489952,\n                46.005151\n              ],\n              [\n                8.966306,\n                46.036932\n              ],\n              [\n                9.182882,\n                46.440215\n              ],\n              [\n                9.922837,\n                46.314899\n              ],\n              [\n                10.363378,\n                46.483571\n              ],\n              [\n                10.442701,\n                46.893546\n              ],\n              [\n                11.048556,\n                46.751359\n              ],\n              [\n                11.164828,\n                46.941579\n              ],\n              [\n                12.153088,\n                47.115393\n              ],\n              [\n                12.376485,\n                46.767559\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/JAM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"JAM\",\"properties\":{\"name\":\"Jamaica\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.569601,18.490525],[-76.896619,18.400867],[-76.365359,18.160701],[-76.199659,17.886867],[-76.902561,17.868238],[-77.206341,17.701116],[-77.766023,17.861597],[-78.337719,18.225968],[-78.217727,18.454533],[-77.797365,18.524218],[-77.569601,18.490525]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/JAM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              16.63619188\n            ],\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -73.125,\n              21.94304553\n            ],\n            [\n              -73.125,\n              16.63619188\n            ],\n            [\n              -78.75,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.569601,\n              18.490525\n            ],\n            [\n              -76.896619,\n              18.400867\n            ],\n            [\n              -76.365359,\n              18.160701\n            ],\n            [\n              -76.199659,\n              17.886867\n            ],\n            [\n              -76.902561,\n              17.868238\n            ],\n            [\n              -77.206341,\n              17.701116\n            ],\n            [\n              -77.766023,\n              17.861597\n            ],\n            [\n              -78.337719,\n              18.225968\n            ],\n            [\n              -78.217727,\n              18.454533\n            ],\n            [\n              -77.797365,\n              18.524218\n            ],\n            [\n              -77.569601,\n              18.490525\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/JOR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"JOR\",\"properties\":{\"name\":\"Jordan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[35.545665,32.393992],[35.719918,32.709192],[36.834062,32.312938],[38.792341,33.378686],[39.195468,32.161009],[39.004886,32.010217],[37.002166,31.508413],[37.998849,30.5085],[37.66812,30.338665],[37.503582,30.003776],[36.740528,29.865283],[36.501214,29.505254],[36.068941,29.197495],[34.956037,29.356555],[34.922603,29.501326],[35.420918,31.100066],[35.397561,31.489086],[35.545252,31.782505],[35.545665,32.393992]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/JOR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              27.05912578\n            ],\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              39.375,\n              27.05912578\n            ],\n            [\n              33.75,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              35.545665,\n              32.393992\n            ],\n            [\n              35.719918,\n              32.709192\n            ],\n            [\n              36.834062,\n              32.312938\n            ],\n            [\n              38.792341,\n              33.378686\n            ],\n            [\n              39.195468,\n              32.161009\n            ],\n            [\n              39.004886,\n              32.010217\n            ],\n            [\n              37.002166,\n              31.508413\n            ],\n            [\n              37.998849,\n              30.5085\n            ],\n            [\n              37.66812,\n              30.338665\n            ],\n            [\n              37.503582,\n              30.003776\n            ],\n            [\n              36.740528,\n              29.865283\n            ],\n            [\n              36.501214,\n              29.505254\n            ],\n            [\n              36.068941,\n              29.197495\n            ],\n            [\n              34.956037,\n              29.356555\n            ],\n            [\n              34.922603,\n              29.501326\n            ],\n            [\n              35.420918,\n              31.100066\n            ],\n            [\n              35.397561,\n              31.489086\n            ],\n            [\n              35.545252,\n              31.782505\n            ],\n            [\n              35.545665,\n              32.393992\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/JPN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"JPN\",\"properties\":{\"name\":\"Japan\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[134.638428,34.149234],[134.766379,33.806335],[134.203416,33.201178],[133.79295,33.521985],[133.280268,33.28957],[133.014858,32.704567],[132.363115,32.989382],[132.371176,33.463642],[132.924373,34.060299],[133.492968,33.944621],[133.904106,34.364931],[134.638428,34.149234]]],[[[140.976388,37.142074],[140.59977,36.343983],[140.774074,35.842877],[140.253279,35.138114],[138.975528,34.6676],[137.217599,34.606286],[135.792983,33.464805],[135.120983,33.849071],[135.079435,34.596545],[133.340316,34.375938],[132.156771,33.904933],[130.986145,33.885761],[132.000036,33.149992],[131.33279,31.450355],[130.686318,31.029579],[130.20242,31.418238],[130.447676,32.319475],[129.814692,32.61031],[129.408463,33.296056],[130.353935,33.604151],[130.878451,34.232743],[131.884229,34.749714],[132.617673,35.433393],[134.608301,35.731618],[135.677538,35.527134],[136.723831,37.304984],[137.390612,36.827391],[138.857602,37.827485],[139.426405,38.215962],[140.05479,39.438807],[139.883379,40.563312],[140.305783,41.195005],[141.368973,41.37856],[141.914263,39.991616],[141.884601,39.180865],[140.959489,38.174001],[140.976388,37.142074]]],[[[143.910162,44.1741],[144.613427,43.960883],[145.320825,44.384733],[145.543137,43.262088],[144.059662,42.988358],[143.18385,41.995215],[141.611491,42.678791],[141.067286,41.584594],[139.955106,41.569556],[139.817544,42.563759],[140.312087,43.333273],[141.380549,43.388825],[141.671952,44.772125],[141.967645,45.551483],[143.14287,44.510358],[143.910162,44.1741]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/JPN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              27.05912578\n            ],\n            [\n              129.375,\n              31.95216224\n            ],\n            [\n              135,\n              31.95216224\n            ],\n            [\n              135,\n              27.05912578\n            ],\n            [\n              129.375,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              31.95216224\n            ],\n            [\n              129.375,\n              36.59788913\n            ],\n            [\n              135,\n              36.59788913\n            ],\n            [\n              135,\n              31.95216224\n            ],\n            [\n              129.375,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              31.95216224\n            ],\n            [\n              135,\n              40.97989807\n            ],\n            [\n              146.25,\n              40.97989807\n            ],\n            [\n              146.25,\n              31.95216224\n            ],\n            [\n              135,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              40.97989807\n            ],\n            [\n              135,\n              45.08903556\n            ],\n            [\n              140.625,\n              45.08903556\n            ],\n            [\n              140.625,\n              40.97989807\n            ],\n            [\n              135,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              40.97989807\n            ],\n            [\n              140.625,\n              45.08903556\n            ],\n            [\n              146.25,\n              45.08903556\n            ],\n            [\n              146.25,\n              40.97989807\n            ],\n            [\n              140.625,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              45.08903556\n            ],\n            [\n              140.625,\n              48.92249926\n            ],\n            [\n              146.25,\n              48.92249926\n            ],\n            [\n              146.25,\n              45.08903556\n            ],\n            [\n              140.625,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                134.638428,\n                34.149234\n              ],\n              [\n                134.766379,\n                33.806335\n              ],\n              [\n                134.203416,\n                33.201178\n              ],\n              [\n                133.79295,\n                33.521985\n              ],\n              [\n                133.280268,\n                33.28957\n              ],\n              [\n                133.014858,\n                32.704567\n              ],\n              [\n                132.363115,\n                32.989382\n              ],\n              [\n                132.371176,\n                33.463642\n              ],\n              [\n                132.924373,\n                34.060299\n              ],\n              [\n                133.492968,\n                33.944621\n              ],\n              [\n                133.904106,\n                34.364931\n              ],\n              [\n                134.638428,\n                34.149234\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                140.976388,\n                37.142074\n              ],\n              [\n                140.59977,\n                36.343983\n              ],\n              [\n                140.774074,\n                35.842877\n              ],\n              [\n                140.253279,\n                35.138114\n              ],\n              [\n                138.975528,\n                34.6676\n              ],\n              [\n                137.217599,\n                34.606286\n              ],\n              [\n                135.792983,\n                33.464805\n              ],\n              [\n                135.120983,\n                33.849071\n              ],\n              [\n                135.079435,\n                34.596545\n              ],\n              [\n                133.340316,\n                34.375938\n              ],\n              [\n                132.156771,\n                33.904933\n              ],\n              [\n                130.986145,\n                33.885761\n              ],\n              [\n                132.000036,\n                33.149992\n              ],\n              [\n                131.33279,\n                31.450355\n              ],\n              [\n                130.686318,\n                31.029579\n              ],\n              [\n                130.20242,\n                31.418238\n              ],\n              [\n                130.447676,\n                32.319475\n              ],\n              [\n                129.814692,\n                32.61031\n              ],\n              [\n                129.408463,\n                33.296056\n              ],\n              [\n                130.353935,\n                33.604151\n              ],\n              [\n                130.878451,\n                34.232743\n              ],\n              [\n                131.884229,\n                34.749714\n              ],\n              [\n                132.617673,\n                35.433393\n              ],\n              [\n                134.608301,\n                35.731618\n              ],\n              [\n                135.677538,\n                35.527134\n              ],\n              [\n                136.723831,\n                37.304984\n              ],\n              [\n                137.390612,\n                36.827391\n              ],\n              [\n                138.857602,\n                37.827485\n              ],\n              [\n                139.426405,\n                38.215962\n              ],\n              [\n                140.05479,\n                39.438807\n              ],\n              [\n                139.883379,\n                40.563312\n              ],\n              [\n                140.305783,\n                41.195005\n              ],\n              [\n                141.368973,\n                41.37856\n              ],\n              [\n                141.914263,\n                39.991616\n              ],\n              [\n                141.884601,\n                39.180865\n              ],\n              [\n                140.959489,\n                38.174001\n              ],\n              [\n                140.976388,\n                37.142074\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                143.910162,\n                44.1741\n              ],\n              [\n                144.613427,\n                43.960883\n              ],\n              [\n                145.320825,\n                44.384733\n              ],\n              [\n                145.543137,\n                43.262088\n              ],\n              [\n                144.059662,\n                42.988358\n              ],\n              [\n                143.18385,\n                41.995215\n              ],\n              [\n                141.611491,\n                42.678791\n              ],\n              [\n                141.067286,\n                41.584594\n              ],\n              [\n                139.955106,\n                41.569556\n              ],\n              [\n                139.817544,\n                42.563759\n              ],\n              [\n                140.312087,\n                43.333273\n              ],\n              [\n                141.380549,\n                43.388825\n              ],\n              [\n                141.671952,\n                44.772125\n              ],\n              [\n                141.967645,\n                45.551483\n              ],\n              [\n                143.14287,\n                44.510358\n              ],\n              [\n                143.910162,\n                44.1741\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/KAZ.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"KAZ\",\"properties\":{\"name\":\"Kazakhstan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[70.962315,42.266154],[70.388965,42.081308],[69.070027,41.384244],[68.632483,40.668681],[68.259896,40.662325],[67.985856,41.135991],[66.714047,41.168444],[66.510649,41.987644],[66.023392,41.994646],[66.098012,42.99766],[64.900824,43.728081],[63.185787,43.650075],[62.0133,43.504477],[61.05832,44.405817],[60.239972,44.784037],[58.689989,45.500014],[58.503127,45.586804],[55.928917,44.995858],[55.968191,41.308642],[55.455251,41.259859],[54.755345,42.043971],[54.079418,42.324109],[52.944293,42.116034],[52.50246,41.783316],[52.446339,42.027151],[52.692112,42.443895],[52.501426,42.792298],[51.342427,43.132975],[50.891292,44.031034],[50.339129,44.284016],[50.305643,44.609836],[51.278503,44.514854],[51.316899,45.245998],[52.16739,45.408391],[53.040876,45.259047],[53.220866,46.234646],[53.042737,46.853006],[52.042023,46.804637],[51.191945,47.048705],[50.034083,46.60899],[49.10116,46.39933],[48.593241,46.561034],[48.694734,47.075628],[48.057253,47.743753],[47.315231,47.715847],[46.466446,48.394152],[47.043672,49.152039],[46.751596,49.356006],[47.54948,50.454698],[48.577841,49.87476],[48.702382,50.605128],[50.766648,51.692762],[52.328724,51.718652],[54.532878,51.02624],[55.716941,50.621717],[56.777961,51.043551],[58.363291,51.063653],[59.642282,50.545442],[59.932807,50.842194],[61.337424,50.79907],[61.588003,51.272659],[59.967534,51.96042],[60.927269,52.447548],[60.739993,52.719986],[61.699986,52.979996],[60.978066,53.664993],[61.436591,54.006265],[65.178534,54.354228],[65.666876,54.601267],[68.1691,54.970392],[69.068167,55.38525],[70.865267,55.169734],[71.180131,54.133285],[72.22415,54.376655],[73.508516,54.035617],[73.425679,53.48981],[74.384845,53.546861],[76.8911,54.490524],[76.525179,54.177003],[77.800916,53.404415],[80.03556,50.864751],[80.568447,51.388336],[81.945986,50.812196],[83.383004,51.069183],[83.935115,50.889246],[84.416377,50.3114],[85.11556,50.117303],[85.54127,49.692859],[86.829357,49.826675],[87.35997,49.214981],[86.598776,48.549182],[85.768233,48.455751],[85.720484,47.452969],[85.16429,47.000956],[83.180484,47.330031],[82.458926,45.53965],[81.947071,45.317027],[79.966106,44.917517],[80.866206,43.180362],[80.18015,42.920068],[80.25999,42.349999],[79.643645,42.496683],[79.142177,42.856092],[77.658392,42.960686],[76.000354,42.988022],[75.636965,42.8779],[74.212866,43.298339],[73.645304,43.091272],[73.489758,42.500894],[71.844638,42.845395],[71.186281,42.704293],[70.962315,42.266154]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/KAZ_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              48.92249926\n            ],\n            [\n              45,\n              52.48278022\n            ],\n            [\n              50.625,\n              52.48278022\n            ],\n            [\n              50.625,\n              48.92249926\n            ],\n            [\n              45,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              48.92249926\n            ],\n            [\n              50.625,\n              52.48278022\n            ],\n            [\n              56.25,\n              52.48278022\n            ],\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              50.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              67.5,\n              48.92249926\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              56.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              56.25,\n              55.77657302\n            ],\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              67.5,\n              48.92249926\n            ],\n            [\n              56.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              67.5,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              67.5,\n              48.92249926\n            ],\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              67.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              48.92249926\n            ],\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              78.75,\n              55.77657302\n            ],\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              67.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              78.75,\n              45.08903556\n            ],\n            [\n              84.375,\n              45.08903556\n            ],\n            [\n              84.375,\n              40.97989807\n            ],\n            [\n              78.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              45.08903556\n            ],\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              84.375,\n              45.08903556\n            ],\n            [\n              78.75,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              78.75,\n              52.48278022\n            ],\n            [\n              84.375,\n              52.48278022\n            ],\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              78.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              45.08903556\n            ],\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              90,\n              45.08903556\n            ],\n            [\n              84.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              84.375,\n              52.48278022\n            ],\n            [\n              90,\n              52.48278022\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              84.375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              70.962315,\n              42.266154\n            ],\n            [\n              70.388965,\n              42.081308\n            ],\n            [\n              69.070027,\n              41.384244\n            ],\n            [\n              68.632483,\n              40.668681\n            ],\n            [\n              68.259896,\n              40.662325\n            ],\n            [\n              67.985856,\n              41.135991\n            ],\n            [\n              66.714047,\n              41.168444\n            ],\n            [\n              66.510649,\n              41.987644\n            ],\n            [\n              66.023392,\n              41.994646\n            ],\n            [\n              66.098012,\n              42.99766\n            ],\n            [\n              64.900824,\n              43.728081\n            ],\n            [\n              63.185787,\n              43.650075\n            ],\n            [\n              62.0133,\n              43.504477\n            ],\n            [\n              61.05832,\n              44.405817\n            ],\n            [\n              60.239972,\n              44.784037\n            ],\n            [\n              58.689989,\n              45.500014\n            ],\n            [\n              58.503127,\n              45.586804\n            ],\n            [\n              55.928917,\n              44.995858\n            ],\n            [\n              55.968191,\n              41.308642\n            ],\n            [\n              55.455251,\n              41.259859\n            ],\n            [\n              54.755345,\n              42.043971\n            ],\n            [\n              54.079418,\n              42.324109\n            ],\n            [\n              52.944293,\n              42.116034\n            ],\n            [\n              52.50246,\n              41.783316\n            ],\n            [\n              52.446339,\n              42.027151\n            ],\n            [\n              52.692112,\n              42.443895\n            ],\n            [\n              52.501426,\n              42.792298\n            ],\n            [\n              51.342427,\n              43.132975\n            ],\n            [\n              50.891292,\n              44.031034\n            ],\n            [\n              50.339129,\n              44.284016\n            ],\n            [\n              50.305643,\n              44.609836\n            ],\n            [\n              51.278503,\n              44.514854\n            ],\n            [\n              51.316899,\n              45.245998\n            ],\n            [\n              52.16739,\n              45.408391\n            ],\n            [\n              53.040876,\n              45.259047\n            ],\n            [\n              53.220866,\n              46.234646\n            ],\n            [\n              53.042737,\n              46.853006\n            ],\n            [\n              52.042023,\n              46.804637\n            ],\n            [\n              51.191945,\n              47.048705\n            ],\n            [\n              50.034083,\n              46.60899\n            ],\n            [\n              49.10116,\n              46.39933\n            ],\n            [\n              48.593241,\n              46.561034\n            ],\n            [\n              48.694734,\n              47.075628\n            ],\n            [\n              48.057253,\n              47.743753\n            ],\n            [\n              47.315231,\n              47.715847\n            ],\n            [\n              46.466446,\n              48.394152\n            ],\n            [\n              47.043672,\n              49.152039\n            ],\n            [\n              46.751596,\n              49.356006\n            ],\n            [\n              47.54948,\n              50.454698\n            ],\n            [\n              48.577841,\n              49.87476\n            ],\n            [\n              48.702382,\n              50.605128\n            ],\n            [\n              50.766648,\n              51.692762\n            ],\n            [\n              52.328724,\n              51.718652\n            ],\n            [\n              54.532878,\n              51.02624\n            ],\n            [\n              55.716941,\n              50.621717\n            ],\n            [\n              56.777961,\n              51.043551\n            ],\n            [\n              58.363291,\n              51.063653\n            ],\n            [\n              59.642282,\n              50.545442\n            ],\n            [\n              59.932807,\n              50.842194\n            ],\n            [\n              61.337424,\n              50.79907\n            ],\n            [\n              61.588003,\n              51.272659\n            ],\n            [\n              59.967534,\n              51.96042\n            ],\n            [\n              60.927269,\n              52.447548\n            ],\n            [\n              60.739993,\n              52.719986\n            ],\n            [\n              61.699986,\n              52.979996\n            ],\n            [\n              60.978066,\n              53.664993\n            ],\n            [\n              61.436591,\n              54.006265\n            ],\n            [\n              65.178534,\n              54.354228\n            ],\n            [\n              65.666876,\n              54.601267\n            ],\n            [\n              68.1691,\n              54.970392\n            ],\n            [\n              69.068167,\n              55.38525\n            ],\n            [\n              70.865267,\n              55.169734\n            ],\n            [\n              71.180131,\n              54.133285\n            ],\n            [\n              72.22415,\n              54.376655\n            ],\n            [\n              73.508516,\n              54.035617\n            ],\n            [\n              73.425679,\n              53.48981\n            ],\n            [\n              74.384845,\n              53.546861\n            ],\n            [\n              76.8911,\n              54.490524\n            ],\n            [\n              76.525179,\n              54.177003\n            ],\n            [\n              77.800916,\n              53.404415\n            ],\n            [\n              80.03556,\n              50.864751\n            ],\n            [\n              80.568447,\n              51.388336\n            ],\n            [\n              81.945986,\n              50.812196\n            ],\n            [\n              83.383004,\n              51.069183\n            ],\n            [\n              83.935115,\n              50.889246\n            ],\n            [\n              84.416377,\n              50.3114\n            ],\n            [\n              85.11556,\n              50.117303\n            ],\n            [\n              85.54127,\n              49.692859\n            ],\n            [\n              86.829357,\n              49.826675\n            ],\n            [\n              87.35997,\n              49.214981\n            ],\n            [\n              86.598776,\n              48.549182\n            ],\n            [\n              85.768233,\n              48.455751\n            ],\n            [\n              85.720484,\n              47.452969\n            ],\n            [\n              85.16429,\n              47.000956\n            ],\n            [\n              83.180484,\n              47.330031\n            ],\n            [\n              82.458926,\n              45.53965\n            ],\n            [\n              81.947071,\n              45.317027\n            ],\n            [\n              79.966106,\n              44.917517\n            ],\n            [\n              80.866206,\n              43.180362\n            ],\n            [\n              80.18015,\n              42.920068\n            ],\n            [\n              80.25999,\n              42.349999\n            ],\n            [\n              79.643645,\n              42.496683\n            ],\n            [\n              79.142177,\n              42.856092\n            ],\n            [\n              77.658392,\n              42.960686\n            ],\n            [\n              76.000354,\n              42.988022\n            ],\n            [\n              75.636965,\n              42.8779\n            ],\n            [\n              74.212866,\n              43.298339\n            ],\n            [\n              73.645304,\n              43.091272\n            ],\n            [\n              73.489758,\n              42.500894\n            ],\n            [\n              71.844638,\n              42.845395\n            ],\n            [\n              71.186281,\n              42.704293\n            ],\n            [\n              70.962315,\n              42.266154\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/KEN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"KEN\",\"properties\":{\"name\":\"Kenya\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[40.993,-0.85829],[41.58513,-1.68325],[40.88477,-2.08255],[40.63785,-2.49979],[40.26304,-2.57309],[40.12119,-3.27768],[39.80006,-3.68116],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[33.903711,-0.95],[33.893569,0.109814],[34.18,0.515],[34.6721,1.17694],[35.03599,1.90584],[34.59607,3.05374],[34.47913,3.5556],[34.005,4.249885],[34.620196,4.847123],[35.298007,5.506],[35.817448,5.338232],[35.817448,4.776966],[36.159079,4.447864],[36.855093,4.447864],[38.120915,3.598605],[38.43697,3.58851],[38.67114,3.61607],[38.89251,3.50074],[39.559384,3.42206],[39.85494,3.83879],[40.76848,4.25702],[41.1718,3.91909],[41.855083,3.918912],[40.98105,2.78452],[40.993,-0.85829]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/KEN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              39.375,\n              0\n            ],\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              39.375,\n              5.61598582\n            ],\n            [\n              39.375,\n              0\n            ],\n            [\n              33.75,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              39.375,\n              0\n            ],\n            [\n              45,\n              0\n            ],\n            [\n              45,\n              -5.61598582\n            ],\n            [\n              39.375,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              0\n            ],\n            [\n              39.375,\n              5.61598582\n            ],\n            [\n              45,\n              5.61598582\n            ],\n            [\n              45,\n              0\n            ],\n            [\n              39.375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              40.993,\n              -0.85829\n            ],\n            [\n              41.58513,\n              -1.68325\n            ],\n            [\n              40.88477,\n              -2.08255\n            ],\n            [\n              40.63785,\n              -2.49979\n            ],\n            [\n              40.26304,\n              -2.57309\n            ],\n            [\n              40.12119,\n              -3.27768\n            ],\n            [\n              39.80006,\n              -3.68116\n            ],\n            [\n              39.60489,\n              -4.34653\n            ],\n            [\n              39.20222,\n              -4.67677\n            ],\n            [\n              37.7669,\n              -3.67712\n            ],\n            [\n              37.69869,\n              -3.09699\n            ],\n            [\n              34.07262,\n              -1.05982\n            ],\n            [\n              33.903711,\n              -0.95\n            ],\n            [\n              33.893569,\n              0.109814\n            ],\n            [\n              34.18,\n              0.515\n            ],\n            [\n              34.6721,\n              1.17694\n            ],\n            [\n              35.03599,\n              1.90584\n            ],\n            [\n              34.59607,\n              3.05374\n            ],\n            [\n              34.47913,\n              3.5556\n            ],\n            [\n              34.005,\n              4.249885\n            ],\n            [\n              34.620196,\n              4.847123\n            ],\n            [\n              35.298007,\n              5.506\n            ],\n            [\n              35.817448,\n              5.338232\n            ],\n            [\n              35.817448,\n              4.776966\n            ],\n            [\n              36.159079,\n              4.447864\n            ],\n            [\n              36.855093,\n              4.447864\n            ],\n            [\n              38.120915,\n              3.598605\n            ],\n            [\n              38.43697,\n              3.58851\n            ],\n            [\n              38.67114,\n              3.61607\n            ],\n            [\n              38.89251,\n              3.50074\n            ],\n            [\n              39.559384,\n              3.42206\n            ],\n            [\n              39.85494,\n              3.83879\n            ],\n            [\n              40.76848,\n              4.25702\n            ],\n            [\n              41.1718,\n              3.91909\n            ],\n            [\n              41.855083,\n              3.918912\n            ],\n            [\n              40.98105,\n              2.78452\n            ],\n            [\n              40.993,\n              -0.85829\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/KGZ.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"KGZ\",\"properties\":{\"name\":\"Kyrgyzstan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[70.962315,42.266154],[71.186281,42.704293],[71.844638,42.845395],[73.489758,42.500894],[73.645304,43.091272],[74.212866,43.298339],[75.636965,42.8779],[76.000354,42.988022],[77.658392,42.960686],[79.142177,42.856092],[79.643645,42.496683],[80.25999,42.349999],[80.11943,42.123941],[78.543661,41.582243],[78.187197,41.185316],[76.904484,41.066486],[76.526368,40.427946],[75.467828,40.562072],[74.776862,40.366425],[73.822244,39.893973],[73.960013,39.660008],[73.675379,39.431237],[71.784694,39.279463],[70.549162,39.604198],[69.464887,39.526683],[69.55961,40.103211],[70.648019,39.935754],[71.014198,40.244366],[71.774875,40.145844],[73.055417,40.866033],[71.870115,41.3929],[71.157859,41.143587],[70.420022,41.519998],[71.259248,42.167711],[70.962315,42.266154]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/KGZ_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              67.5,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              67.5,\n              45.08903556\n            ],\n            [\n              73.125,\n              45.08903556\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              67.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              78.75,\n              36.59788913\n            ],\n            [\n              73.125,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              73.125,\n              45.08903556\n            ],\n            [\n              78.75,\n              45.08903556\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              73.125,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              78.75,\n              45.08903556\n            ],\n            [\n              84.375,\n              45.08903556\n            ],\n            [\n              84.375,\n              40.97989807\n            ],\n            [\n              78.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              70.962315,\n              42.266154\n            ],\n            [\n              71.186281,\n              42.704293\n            ],\n            [\n              71.844638,\n              42.845395\n            ],\n            [\n              73.489758,\n              42.500894\n            ],\n            [\n              73.645304,\n              43.091272\n            ],\n            [\n              74.212866,\n              43.298339\n            ],\n            [\n              75.636965,\n              42.8779\n            ],\n            [\n              76.000354,\n              42.988022\n            ],\n            [\n              77.658392,\n              42.960686\n            ],\n            [\n              79.142177,\n              42.856092\n            ],\n            [\n              79.643645,\n              42.496683\n            ],\n            [\n              80.25999,\n              42.349999\n            ],\n            [\n              80.11943,\n              42.123941\n            ],\n            [\n              78.543661,\n              41.582243\n            ],\n            [\n              78.187197,\n              41.185316\n            ],\n            [\n              76.904484,\n              41.066486\n            ],\n            [\n              76.526368,\n              40.427946\n            ],\n            [\n              75.467828,\n              40.562072\n            ],\n            [\n              74.776862,\n              40.366425\n            ],\n            [\n              73.822244,\n              39.893973\n            ],\n            [\n              73.960013,\n              39.660008\n            ],\n            [\n              73.675379,\n              39.431237\n            ],\n            [\n              71.784694,\n              39.279463\n            ],\n            [\n              70.549162,\n              39.604198\n            ],\n            [\n              69.464887,\n              39.526683\n            ],\n            [\n              69.55961,\n              40.103211\n            ],\n            [\n              70.648019,\n              39.935754\n            ],\n            [\n              71.014198,\n              40.244366\n            ],\n            [\n              71.774875,\n              40.145844\n            ],\n            [\n              73.055417,\n              40.866033\n            ],\n            [\n              71.870115,\n              41.3929\n            ],\n            [\n              71.157859,\n              41.143587\n            ],\n            [\n              70.420022,\n              41.519998\n            ],\n            [\n              71.259248,\n              42.167711\n            ],\n            [\n              70.962315,\n              42.266154\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/KHM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"KHM\",\"properties\":{\"name\":\"Cambodia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[103.49728,10.632555],[103.09069,11.153661],[102.584932,12.186595],[102.348099,13.394247],[102.988422,14.225721],[104.281418,14.416743],[105.218777,14.273212],[106.043946,13.881091],[106.496373,14.570584],[107.382727,14.202441],[107.614548,13.535531],[107.491403,12.337206],[105.810524,11.567615],[106.24967,10.961812],[105.199915,10.88931],[104.334335,10.486544],[103.49728,10.632555]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/KHM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              101.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              101.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              112.5,\n              16.63619188\n            ],\n            [\n              112.5,\n              11.17840187\n            ],\n            [\n              106.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              103.49728,\n              10.632555\n            ],\n            [\n              103.09069,\n              11.153661\n            ],\n            [\n              102.584932,\n              12.186595\n            ],\n            [\n              102.348099,\n              13.394247\n            ],\n            [\n              102.988422,\n              14.225721\n            ],\n            [\n              104.281418,\n              14.416743\n            ],\n            [\n              105.218777,\n              14.273212\n            ],\n            [\n              106.043946,\n              13.881091\n            ],\n            [\n              106.496373,\n              14.570584\n            ],\n            [\n              107.382727,\n              14.202441\n            ],\n            [\n              107.614548,\n              13.535531\n            ],\n            [\n              107.491403,\n              12.337206\n            ],\n            [\n              105.810524,\n              11.567615\n            ],\n            [\n              106.24967,\n              10.961812\n            ],\n            [\n              105.199915,\n              10.88931\n            ],\n            [\n              104.334335,\n              10.486544\n            ],\n            [\n              103.49728,\n              10.632555\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/KOR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"KOR\",\"properties\":{\"name\":\"South Korea\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[128.349716,38.612243],[129.21292,37.432392],[129.46045,36.784189],[129.468304,35.632141],[129.091377,35.082484],[128.18585,34.890377],[127.386519,34.475674],[126.485748,34.390046],[126.37392,34.93456],[126.559231,35.684541],[126.117398,36.725485],[126.860143,36.893924],[126.174759,37.749686],[126.237339,37.840378],[126.68372,37.804773],[127.073309,38.256115],[127.780035,38.304536],[128.205746,38.370397],[128.349716,38.612243]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/KOR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              31.95216224\n            ],\n            [\n              123.75,\n              40.97989807\n            ],\n            [\n              135,\n              40.97989807\n            ],\n            [\n              135,\n              31.95216224\n            ],\n            [\n              123.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              128.349716,\n              38.612243\n            ],\n            [\n              129.21292,\n              37.432392\n            ],\n            [\n              129.46045,\n              36.784189\n            ],\n            [\n              129.468304,\n              35.632141\n            ],\n            [\n              129.091377,\n              35.082484\n            ],\n            [\n              128.18585,\n              34.890377\n            ],\n            [\n              127.386519,\n              34.475674\n            ],\n            [\n              126.485748,\n              34.390046\n            ],\n            [\n              126.37392,\n              34.93456\n            ],\n            [\n              126.559231,\n              35.684541\n            ],\n            [\n              126.117398,\n              36.725485\n            ],\n            [\n              126.860143,\n              36.893924\n            ],\n            [\n              126.174759,\n              37.749686\n            ],\n            [\n              126.237339,\n              37.840378\n            ],\n            [\n              126.68372,\n              37.804773\n            ],\n            [\n              127.073309,\n              38.256115\n            ],\n            [\n              127.780035,\n              38.304536\n            ],\n            [\n              128.205746,\n              38.370397\n            ],\n            [\n              128.349716,\n              38.612243\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/KWT.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"KWT\",\"properties\":{\"name\":\"Kuwait\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[47.974519,29.975819],[48.183189,29.534477],[48.093943,29.306299],[48.416094,28.552004],[47.708851,28.526063],[47.459822,29.002519],[46.568713,29.099025],[47.302622,30.05907],[47.974519,29.975819]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/KWT_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              27.05912578\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              50.625,\n              31.95216224\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              45,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              47.974519,\n              29.975819\n            ],\n            [\n              48.183189,\n              29.534477\n            ],\n            [\n              48.093943,\n              29.306299\n            ],\n            [\n              48.416094,\n              28.552004\n            ],\n            [\n              47.708851,\n              28.526063\n            ],\n            [\n              47.459822,\n              29.002519\n            ],\n            [\n              46.568713,\n              29.099025\n            ],\n            [\n              47.302622,\n              30.05907\n            ],\n            [\n              47.974519,\n              29.975819\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LAO.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LAO\",\"properties\":{\"name\":\"Laos\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[105.218777,14.273212],[105.544338,14.723934],[105.589039,15.570316],[104.779321,16.441865],[104.716947,17.428859],[103.956477,18.240954],[103.200192,18.309632],[102.998706,17.961695],[102.413005,17.932782],[102.113592,18.109102],[101.059548,17.512497],[101.035931,18.408928],[101.282015,19.462585],[100.606294,19.508344],[100.548881,20.109238],[100.115988,20.41785],[100.329101,20.786122],[101.180005,21.436573],[101.270026,21.201652],[101.80312,21.174367],[101.652018,22.318199],[102.170436,22.464753],[102.754896,21.675137],[103.203861,20.766562],[104.435,20.758733],[104.822574,19.886642],[104.183388,19.624668],[103.896532,19.265181],[105.094598,18.666975],[105.925762,17.485315],[106.556008,16.604284],[107.312706,15.908538],[107.564525,15.202173],[107.382727,14.202441],[106.496373,14.570584],[106.043946,13.881091],[105.218777,14.273212]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LAO_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              101.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              106.875,\n              21.94304553\n            ],\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              101.25,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              101.25,\n              27.05912578\n            ],\n            [\n              106.875,\n              27.05912578\n            ],\n            [\n              106.875,\n              21.94304553\n            ],\n            [\n              101.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              112.5,\n              16.63619188\n            ],\n            [\n              112.5,\n              11.17840187\n            ],\n            [\n              106.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              16.63619188\n            ],\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              95.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              105.218777,\n              14.273212\n            ],\n            [\n              105.544338,\n              14.723934\n            ],\n            [\n              105.589039,\n              15.570316\n            ],\n            [\n              104.779321,\n              16.441865\n            ],\n            [\n              104.716947,\n              17.428859\n            ],\n            [\n              103.956477,\n              18.240954\n            ],\n            [\n              103.200192,\n              18.309632\n            ],\n            [\n              102.998706,\n              17.961695\n            ],\n            [\n              102.413005,\n              17.932782\n            ],\n            [\n              102.113592,\n              18.109102\n            ],\n            [\n              101.059548,\n              17.512497\n            ],\n            [\n              101.035931,\n              18.408928\n            ],\n            [\n              101.282015,\n              19.462585\n            ],\n            [\n              100.606294,\n              19.508344\n            ],\n            [\n              100.548881,\n              20.109238\n            ],\n            [\n              100.115988,\n              20.41785\n            ],\n            [\n              100.329101,\n              20.786122\n            ],\n            [\n              101.180005,\n              21.436573\n            ],\n            [\n              101.270026,\n              21.201652\n            ],\n            [\n              101.80312,\n              21.174367\n            ],\n            [\n              101.652018,\n              22.318199\n            ],\n            [\n              102.170436,\n              22.464753\n            ],\n            [\n              102.754896,\n              21.675137\n            ],\n            [\n              103.203861,\n              20.766562\n            ],\n            [\n              104.435,\n              20.758733\n            ],\n            [\n              104.822574,\n              19.886642\n            ],\n            [\n              104.183388,\n              19.624668\n            ],\n            [\n              103.896532,\n              19.265181\n            ],\n            [\n              105.094598,\n              18.666975\n            ],\n            [\n              105.925762,\n              17.485315\n            ],\n            [\n              106.556008,\n              16.604284\n            ],\n            [\n              107.312706,\n              15.908538\n            ],\n            [\n              107.564525,\n              15.202173\n            ],\n            [\n              107.382727,\n              14.202441\n            ],\n            [\n              106.496373,\n              14.570584\n            ],\n            [\n              106.043946,\n              13.881091\n            ],\n            [\n              105.218777,\n              14.273212\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LBN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LBN\",\"properties\":{\"name\":\"Lebanon\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[35.821101,33.277426],[35.552797,33.264275],[35.460709,33.08904],[35.126053,33.0909],[35.482207,33.90545],[35.979592,34.610058],[35.998403,34.644914],[36.448194,34.593935],[36.61175,34.201789],[36.06646,33.824912],[35.821101,33.277426]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LBN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              35.821101,\n              33.277426\n            ],\n            [\n              35.552797,\n              33.264275\n            ],\n            [\n              35.460709,\n              33.08904\n            ],\n            [\n              35.126053,\n              33.0909\n            ],\n            [\n              35.482207,\n              33.90545\n            ],\n            [\n              35.979592,\n              34.610058\n            ],\n            [\n              35.998403,\n              34.644914\n            ],\n            [\n              36.448194,\n              34.593935\n            ],\n            [\n              36.61175,\n              34.201789\n            ],\n            [\n              36.06646,\n              33.824912\n            ],\n            [\n              35.821101,\n              33.277426\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LBR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LBR\",\"properties\":{\"name\":\"Liberia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-7.712159,4.364566],[-7.974107,4.355755],[-9.004794,4.832419],[-9.91342,5.593561],[-10.765384,6.140711],[-11.438779,6.785917],[-11.199802,7.105846],[-11.146704,7.396706],[-10.695595,7.939464],[-10.230094,8.406206],[-10.016567,8.428504],[-9.755342,8.541055],[-9.33728,7.928534],[-9.403348,7.526905],[-9.208786,7.313921],[-8.926065,7.309037],[-8.722124,7.711674],[-8.439298,7.686043],[-8.485446,7.395208],[-8.385452,6.911801],[-8.60288,6.467564],[-8.311348,6.193033],[-7.993693,6.12619],[-7.570153,5.707352],[-7.539715,5.313345],[-7.635368,5.188159],[-7.712159,4.364566]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LBR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              0\n            ],\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -5.625,\n              0\n            ],\n            [\n              -11.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -11.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              5.61598582\n            ],\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -16.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -7.712159,\n              4.364566\n            ],\n            [\n              -7.974107,\n              4.355755\n            ],\n            [\n              -9.004794,\n              4.832419\n            ],\n            [\n              -9.91342,\n              5.593561\n            ],\n            [\n              -10.765384,\n              6.140711\n            ],\n            [\n              -11.438779,\n              6.785917\n            ],\n            [\n              -11.199802,\n              7.105846\n            ],\n            [\n              -11.146704,\n              7.396706\n            ],\n            [\n              -10.695595,\n              7.939464\n            ],\n            [\n              -10.230094,\n              8.406206\n            ],\n            [\n              -10.016567,\n              8.428504\n            ],\n            [\n              -9.755342,\n              8.541055\n            ],\n            [\n              -9.33728,\n              7.928534\n            ],\n            [\n              -9.403348,\n              7.526905\n            ],\n            [\n              -9.208786,\n              7.313921\n            ],\n            [\n              -8.926065,\n              7.309037\n            ],\n            [\n              -8.722124,\n              7.711674\n            ],\n            [\n              -8.439298,\n              7.686043\n            ],\n            [\n              -8.485446,\n              7.395208\n            ],\n            [\n              -8.385452,\n              6.911801\n            ],\n            [\n              -8.60288,\n              6.467564\n            ],\n            [\n              -8.311348,\n              6.193033\n            ],\n            [\n              -7.993693,\n              6.12619\n            ],\n            [\n              -7.570153,\n              5.707352\n            ],\n            [\n              -7.539715,\n              5.313345\n            ],\n            [\n              -7.635368,\n              5.188159\n            ],\n            [\n              -7.712159,\n              4.364566\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LBY.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LBY\",\"properties\":{\"name\":\"Libya\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[14.8513,22.86295],[14.143871,22.491289],[13.581425,23.040506],[11.999506,23.471668],[11.560669,24.097909],[10.771364,24.562532],[10.303847,24.379313],[9.948261,24.936954],[9.910693,25.365455],[9.319411,26.094325],[9.716286,26.512206],[9.629056,27.140953],[9.756128,27.688259],[9.683885,28.144174],[9.859998,28.95999],[9.805634,29.424638],[9.48214,30.307556],[9.970017,30.539325],[10.056575,30.961831],[9.950225,31.37607],[10.636901,31.761421],[10.94479,32.081815],[11.432253,32.368903],[11.488787,33.136996],[12.66331,32.79278],[13.08326,32.87882],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[16.61162,31.18218],[18.02109,30.76357],[19.08641,30.26639],[19.57404,30.52582],[20.05335,30.98576],[19.82033,31.75179],[20.13397,32.2382],[20.85452,32.7068],[21.54298,32.8432],[22.89576,32.63858],[23.2368,32.19149],[23.60913,32.18726],[23.9275,32.01667],[24.92114,31.89936],[25.16482,31.56915],[24.80287,31.08929],[24.95762,30.6616],[24.70007,30.04419],[25,29.238655],[25,25.6825],[25,22],[25,20.00304],[23.85,20],[23.83766,19.58047],[19.84926,21.49509],[15.86085,23.40972],[14.8513,22.86295]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LBY_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              22.5,\n              31.95216224\n            ],\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              11.25,\n              36.59788913\n            ],\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              16.875,\n              31.95216224\n            ],\n            [\n              11.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              16.63619188\n            ],\n            [\n              16.875,\n              21.94304553\n            ],\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              16.875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              31.95216224\n            ],\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              22.5,\n              31.95216224\n            ],\n            [\n              16.875,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              28.125,\n              21.94304553\n            ],\n            [\n              28.125,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              22.5,\n              27.05912578\n            ],\n            [\n              28.125,\n              27.05912578\n            ],\n            [\n              28.125,\n              21.94304553\n            ],\n            [\n              22.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              27.05912578\n            ],\n            [\n              22.5,\n              31.95216224\n            ],\n            [\n              28.125,\n              31.95216224\n            ],\n            [\n              28.125,\n              27.05912578\n            ],\n            [\n              22.5,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              31.95216224\n            ],\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              28.125,\n              36.59788913\n            ],\n            [\n              28.125,\n              31.95216224\n            ],\n            [\n              22.5,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              21.94304553\n            ],\n            [\n              5.625,\n              27.05912578\n            ],\n            [\n              11.25,\n              27.05912578\n            ],\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              5.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              27.05912578\n            ],\n            [\n              5.625,\n              31.95216224\n            ],\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              11.25,\n              27.05912578\n            ],\n            [\n              5.625,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              31.95216224\n            ],\n            [\n              5.625,\n              36.59788913\n            ],\n            [\n              11.25,\n              36.59788913\n            ],\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              5.625,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.8513,\n              22.86295\n            ],\n            [\n              14.143871,\n              22.491289\n            ],\n            [\n              13.581425,\n              23.040506\n            ],\n            [\n              11.999506,\n              23.471668\n            ],\n            [\n              11.560669,\n              24.097909\n            ],\n            [\n              10.771364,\n              24.562532\n            ],\n            [\n              10.303847,\n              24.379313\n            ],\n            [\n              9.948261,\n              24.936954\n            ],\n            [\n              9.910693,\n              25.365455\n            ],\n            [\n              9.319411,\n              26.094325\n            ],\n            [\n              9.716286,\n              26.512206\n            ],\n            [\n              9.629056,\n              27.140953\n            ],\n            [\n              9.756128,\n              27.688259\n            ],\n            [\n              9.683885,\n              28.144174\n            ],\n            [\n              9.859998,\n              28.95999\n            ],\n            [\n              9.805634,\n              29.424638\n            ],\n            [\n              9.48214,\n              30.307556\n            ],\n            [\n              9.970017,\n              30.539325\n            ],\n            [\n              10.056575,\n              30.961831\n            ],\n            [\n              9.950225,\n              31.37607\n            ],\n            [\n              10.636901,\n              31.761421\n            ],\n            [\n              10.94479,\n              32.081815\n            ],\n            [\n              11.432253,\n              32.368903\n            ],\n            [\n              11.488787,\n              33.136996\n            ],\n            [\n              12.66331,\n              32.79278\n            ],\n            [\n              13.08326,\n              32.87882\n            ],\n            [\n              13.91868,\n              32.71196\n            ],\n            [\n              15.24563,\n              32.26508\n            ],\n            [\n              15.71394,\n              31.37626\n            ],\n            [\n              16.61162,\n              31.18218\n            ],\n            [\n              18.02109,\n              30.76357\n            ],\n            [\n              19.08641,\n              30.26639\n            ],\n            [\n              19.57404,\n              30.52582\n            ],\n            [\n              20.05335,\n              30.98576\n            ],\n            [\n              19.82033,\n              31.75179\n            ],\n            [\n              20.13397,\n              32.2382\n            ],\n            [\n              20.85452,\n              32.7068\n            ],\n            [\n              21.54298,\n              32.8432\n            ],\n            [\n              22.89576,\n              32.63858\n            ],\n            [\n              23.2368,\n              32.19149\n            ],\n            [\n              23.60913,\n              32.18726\n            ],\n            [\n              23.9275,\n              32.01667\n            ],\n            [\n              24.92114,\n              31.89936\n            ],\n            [\n              25.16482,\n              31.56915\n            ],\n            [\n              24.80287,\n              31.08929\n            ],\n            [\n              24.95762,\n              30.6616\n            ],\n            [\n              24.70007,\n              30.04419\n            ],\n            [\n              25,\n              29.238655\n            ],\n            [\n              25,\n              25.6825\n            ],\n            [\n              25,\n              22\n            ],\n            [\n              25,\n              20.00304\n            ],\n            [\n              23.85,\n              20\n            ],\n            [\n              23.83766,\n              19.58047\n            ],\n            [\n              19.84926,\n              21.49509\n            ],\n            [\n              15.86085,\n              23.40972\n            ],\n            [\n              14.8513,\n              22.86295\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LKA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LKA\",\"properties\":{\"name\":\"Sri Lanka\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[81.787959,7.523055],[81.637322,6.481775],[81.21802,6.197141],[80.348357,5.96837],[79.872469,6.763463],[79.695167,8.200843],[80.147801,9.824078],[80.838818,9.268427],[81.304319,8.564206],[81.787959,7.523055]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LKA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              5.61598582\n            ],\n            [\n              78.75,\n              11.17840187\n            ],\n            [\n              84.375,\n              11.17840187\n            ],\n            [\n              84.375,\n              5.61598582\n            ],\n            [\n              78.75,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              81.787959,\n              7.523055\n            ],\n            [\n              81.637322,\n              6.481775\n            ],\n            [\n              81.21802,\n              6.197141\n            ],\n            [\n              80.348357,\n              5.96837\n            ],\n            [\n              79.872469,\n              6.763463\n            ],\n            [\n              79.695167,\n              8.200843\n            ],\n            [\n              80.147801,\n              9.824078\n            ],\n            [\n              80.838818,\n              9.268427\n            ],\n            [\n              81.304319,\n              8.564206\n            ],\n            [\n              81.787959,\n              7.523055\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LSO.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LSO\",\"properties\":{\"name\":\"Lesotho\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[28.978263,-28.955597],[29.325166,-29.257387],[29.018415,-29.743766],[28.8484,-30.070051],[28.291069,-30.226217],[28.107205,-30.545732],[27.749397,-30.645106],[26.999262,-29.875954],[27.532511,-29.242711],[28.074338,-28.851469],[28.5417,-28.647502],[28.978263,-28.955597]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LSO_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -31.95216224\n            ],\n            [\n              22.5,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -31.95216224\n            ],\n            [\n              22.5,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -31.95216224\n            ],\n            [\n              28.125,\n              -27.05912578\n            ],\n            [\n              33.75,\n              -27.05912578\n            ],\n            [\n              33.75,\n              -31.95216224\n            ],\n            [\n              28.125,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.978263,\n              -28.955597\n            ],\n            [\n              29.325166,\n              -29.257387\n            ],\n            [\n              29.018415,\n              -29.743766\n            ],\n            [\n              28.8484,\n              -30.070051\n            ],\n            [\n              28.291069,\n              -30.226217\n            ],\n            [\n              28.107205,\n              -30.545732\n            ],\n            [\n              27.749397,\n              -30.645106\n            ],\n            [\n              26.999262,\n              -29.875954\n            ],\n            [\n              27.532511,\n              -29.242711\n            ],\n            [\n              28.074338,\n              -28.851469\n            ],\n            [\n              28.5417,\n              -28.647502\n            ],\n            [\n              28.978263,\n              -28.955597\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LTU.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LTU\",\"properties\":{\"name\":\"Lithuania\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[22.731099,54.327537],[22.651052,54.582741],[22.757764,54.856574],[22.315724,55.015299],[21.268449,55.190482],[21.0558,56.031076],[22.201157,56.337802],[23.878264,56.273671],[24.860684,56.372528],[25.000934,56.164531],[25.533047,56.100297],[26.494331,55.615107],[26.588279,55.167176],[25.768433,54.846963],[25.536354,54.282423],[24.450684,53.905702],[23.484128,53.912498],[23.243987,54.220567],[22.731099,54.327537]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LTU_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              16.875,\n              55.77657302\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              16.875,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              55.77657302\n            ],\n            [\n              16.875,\n              58.81374172\n            ],\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              16.875,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              22.5,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              22.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.731099,\n              54.327537\n            ],\n            [\n              22.651052,\n              54.582741\n            ],\n            [\n              22.757764,\n              54.856574\n            ],\n            [\n              22.315724,\n              55.015299\n            ],\n            [\n              21.268449,\n              55.190482\n            ],\n            [\n              21.0558,\n              56.031076\n            ],\n            [\n              22.201157,\n              56.337802\n            ],\n            [\n              23.878264,\n              56.273671\n            ],\n            [\n              24.860684,\n              56.372528\n            ],\n            [\n              25.000934,\n              56.164531\n            ],\n            [\n              25.533047,\n              56.100297\n            ],\n            [\n              26.494331,\n              55.615107\n            ],\n            [\n              26.588279,\n              55.167176\n            ],\n            [\n              25.768433,\n              54.846963\n            ],\n            [\n              25.536354,\n              54.282423\n            ],\n            [\n              24.450684,\n              53.905702\n            ],\n            [\n              23.484128,\n              53.912498\n            ],\n            [\n              23.243987,\n              54.220567\n            ],\n            [\n              22.731099,\n              54.327537\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LUX.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LUX\",\"properties\":{\"name\":\"Luxembourg\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[6.043073,50.128052],[6.242751,49.902226],[6.18632,49.463803],[5.897759,49.442667],[5.674052,49.529484],[5.782417,50.090328],[6.043073,50.128052]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LUX_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              48.92249926\n            ],\n            [\n              5.625,\n              52.48278022\n            ],\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              5.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              6.043073,\n              50.128052\n            ],\n            [\n              6.242751,\n              49.902226\n            ],\n            [\n              6.18632,\n              49.463803\n            ],\n            [\n              5.897759,\n              49.442667\n            ],\n            [\n              5.674052,\n              49.529484\n            ],\n            [\n              5.782417,\n              50.090328\n            ],\n            [\n              6.043073,\n              50.128052\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/LVA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"LVA\",\"properties\":{\"name\":\"Latvia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[21.0558,56.031076],[21.090424,56.783873],[21.581866,57.411871],[22.524341,57.753374],[23.318453,57.006236],[24.12073,57.025693],[24.312863,57.793424],[25.164594,57.970157],[25.60281,57.847529],[26.463532,57.476389],[27.288185,57.474528],[27.770016,57.244258],[27.855282,56.759326],[28.176709,56.16913],[27.10246,55.783314],[26.494331,55.615107],[25.533047,56.100297],[25.000934,56.164531],[24.860684,56.372528],[23.878264,56.273671],[22.201157,56.337802],[21.0558,56.031076]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/LVA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              55.77657302\n            ],\n            [\n              16.875,\n              58.81374172\n            ],\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              16.875,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              22.5,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              22.5,\n              58.81374172\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              22.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              28.125,\n              58.81374172\n            ],\n            [\n              33.75,\n              58.81374172\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              28.125,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              21.0558,\n              56.031076\n            ],\n            [\n              21.090424,\n              56.783873\n            ],\n            [\n              21.581866,\n              57.411871\n            ],\n            [\n              22.524341,\n              57.753374\n            ],\n            [\n              23.318453,\n              57.006236\n            ],\n            [\n              24.12073,\n              57.025693\n            ],\n            [\n              24.312863,\n              57.793424\n            ],\n            [\n              25.164594,\n              57.970157\n            ],\n            [\n              25.60281,\n              57.847529\n            ],\n            [\n              26.463532,\n              57.476389\n            ],\n            [\n              27.288185,\n              57.474528\n            ],\n            [\n              27.770016,\n              57.244258\n            ],\n            [\n              27.855282,\n              56.759326\n            ],\n            [\n              28.176709,\n              56.16913\n            ],\n            [\n              27.10246,\n              55.783314\n            ],\n            [\n              26.494331,\n              55.615107\n            ],\n            [\n              25.533047,\n              56.100297\n            ],\n            [\n              25.000934,\n              56.164531\n            ],\n            [\n              24.860684,\n              56.372528\n            ],\n            [\n              23.878264,\n              56.273671\n            ],\n            [\n              22.201157,\n              56.337802\n            ],\n            [\n              21.0558,\n              56.031076\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MAR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MAR\",\"properties\":{\"name\":\"Morocco\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-5.193863,35.755182],[-4.591006,35.330712],[-3.640057,35.399855],[-2.604306,35.179093],[-2.169914,35.168396],[-1.792986,34.527919],[-1.733455,33.919713],[-1.388049,32.864015],[-1.124551,32.651522],[-1.307899,32.262889],[-2.616605,32.094346],[-3.06898,31.724498],[-3.647498,31.637294],[-3.690441,30.896952],[-4.859646,30.501188],[-5.242129,30.000443],[-6.060632,29.7317],[-7.059228,29.579228],[-8.674116,28.841289],[-8.66559,27.656426],[-8.817809,27.656426],[-8.817828,27.656426],[-8.794884,27.120696],[-9.413037,27.088476],[-9.735343,26.860945],[-10.189424,26.860945],[-10.551263,26.990808],[-11.392555,26.883424],[-11.71822,26.104092],[-12.030759,26.030866],[-12.500963,24.770116],[-13.89111,23.691009],[-14.221168,22.310163],[-14.630833,21.86094],[-14.750955,21.5006],[-17.002962,21.420734],[-17.020428,21.42231],[-16.973248,21.885745],[-16.589137,22.158234],[-16.261922,22.67934],[-16.326414,23.017768],[-15.982611,23.723358],[-15.426004,24.359134],[-15.089332,24.520261],[-14.824645,25.103533],[-14.800926,25.636265],[-14.43994,26.254418],[-13.773805,26.618892],[-13.139942,27.640148],[-13.121613,27.654148],[-12.618837,28.038186],[-11.688919,28.148644],[-10.900957,28.832142],[-10.399592,29.098586],[-9.564811,29.933574],[-9.814718,31.177736],[-9.434793,32.038096],[-9.300693,32.564679],[-8.657476,33.240245],[-7.654178,33.697065],[-6.912544,34.110476],[-6.244342,35.145865],[-5.929994,35.759988],[-5.193863,35.755182]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MAR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              -5.625,\n              21.94304553\n            ],\n            [\n              -11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -11.25,\n              31.95216224\n            ],\n            [\n              -5.625,\n              31.95216224\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              -11.25,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              31.95216224\n            ],\n            [\n              -11.25,\n              36.59788913\n            ],\n            [\n              -5.625,\n              36.59788913\n            ],\n            [\n              -5.625,\n              31.95216224\n            ],\n            [\n              -11.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -16.875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -16.875,\n              27.05912578\n            ],\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -16.875,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              27.05912578\n            ],\n            [\n              -16.875,\n              31.95216224\n            ],\n            [\n              -11.25,\n              31.95216224\n            ],\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -16.875,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              16.63619188\n            ],\n            [\n              -22.5,\n              21.94304553\n            ],\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -22.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              21.94304553\n            ],\n            [\n              -22.5,\n              27.05912578\n            ],\n            [\n              -16.875,\n              27.05912578\n            ],\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -22.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              -5.625,\n              31.95216224\n            ],\n            [\n              0,\n              31.95216224\n            ],\n            [\n              0,\n              27.05912578\n            ],\n            [\n              -5.625,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              31.95216224\n            ],\n            [\n              -5.625,\n              36.59788913\n            ],\n            [\n              0,\n              36.59788913\n            ],\n            [\n              0,\n              31.95216224\n            ],\n            [\n              -5.625,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.193863,\n              35.755182\n            ],\n            [\n              -4.591006,\n              35.330712\n            ],\n            [\n              -3.640057,\n              35.399855\n            ],\n            [\n              -2.604306,\n              35.179093\n            ],\n            [\n              -2.169914,\n              35.168396\n            ],\n            [\n              -1.792986,\n              34.527919\n            ],\n            [\n              -1.733455,\n              33.919713\n            ],\n            [\n              -1.388049,\n              32.864015\n            ],\n            [\n              -1.124551,\n              32.651522\n            ],\n            [\n              -1.307899,\n              32.262889\n            ],\n            [\n              -2.616605,\n              32.094346\n            ],\n            [\n              -3.06898,\n              31.724498\n            ],\n            [\n              -3.647498,\n              31.637294\n            ],\n            [\n              -3.690441,\n              30.896952\n            ],\n            [\n              -4.859646,\n              30.501188\n            ],\n            [\n              -5.242129,\n              30.000443\n            ],\n            [\n              -6.060632,\n              29.7317\n            ],\n            [\n              -7.059228,\n              29.579228\n            ],\n            [\n              -8.674116,\n              28.841289\n            ],\n            [\n              -8.66559,\n              27.656426\n            ],\n            [\n              -8.817809,\n              27.656426\n            ],\n            [\n              -8.817828,\n              27.656426\n            ],\n            [\n              -8.794884,\n              27.120696\n            ],\n            [\n              -9.413037,\n              27.088476\n            ],\n            [\n              -9.735343,\n              26.860945\n            ],\n            [\n              -10.189424,\n              26.860945\n            ],\n            [\n              -10.551263,\n              26.990808\n            ],\n            [\n              -11.392555,\n              26.883424\n            ],\n            [\n              -11.71822,\n              26.104092\n            ],\n            [\n              -12.030759,\n              26.030866\n            ],\n            [\n              -12.500963,\n              24.770116\n            ],\n            [\n              -13.89111,\n              23.691009\n            ],\n            [\n              -14.221168,\n              22.310163\n            ],\n            [\n              -14.630833,\n              21.86094\n            ],\n            [\n              -14.750955,\n              21.5006\n            ],\n            [\n              -17.002962,\n              21.420734\n            ],\n            [\n              -17.020428,\n              21.42231\n            ],\n            [\n              -16.973248,\n              21.885745\n            ],\n            [\n              -16.589137,\n              22.158234\n            ],\n            [\n              -16.261922,\n              22.67934\n            ],\n            [\n              -16.326414,\n              23.017768\n            ],\n            [\n              -15.982611,\n              23.723358\n            ],\n            [\n              -15.426004,\n              24.359134\n            ],\n            [\n              -15.089332,\n              24.520261\n            ],\n            [\n              -14.824645,\n              25.103533\n            ],\n            [\n              -14.800926,\n              25.636265\n            ],\n            [\n              -14.43994,\n              26.254418\n            ],\n            [\n              -13.773805,\n              26.618892\n            ],\n            [\n              -13.139942,\n              27.640148\n            ],\n            [\n              -13.121613,\n              27.654148\n            ],\n            [\n              -12.618837,\n              28.038186\n            ],\n            [\n              -11.688919,\n              28.148644\n            ],\n            [\n              -10.900957,\n              28.832142\n            ],\n            [\n              -10.399592,\n              29.098586\n            ],\n            [\n              -9.564811,\n              29.933574\n            ],\n            [\n              -9.814718,\n              31.177736\n            ],\n            [\n              -9.434793,\n              32.038096\n            ],\n            [\n              -9.300693,\n              32.564679\n            ],\n            [\n              -8.657476,\n              33.240245\n            ],\n            [\n              -7.654178,\n              33.697065\n            ],\n            [\n              -6.912544,\n              34.110476\n            ],\n            [\n              -6.244342,\n              35.145865\n            ],\n            [\n              -5.929994,\n              35.759988\n            ],\n            [\n              -5.193863,\n              35.755182\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MDA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MDA\",\"properties\":{\"name\":\"Moldova\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[26.619337,48.220726],[26.857824,48.368211],[27.522537,48.467119],[28.259547,48.155562],[28.670891,48.118149],[29.122698,47.849095],[29.050868,47.510227],[29.415135,47.346645],[29.559674,46.928583],[29.908852,46.674361],[29.83821,46.525326],[30.024659,46.423937],[29.759972,46.349988],[29.170654,46.379262],[29.072107,46.517678],[28.862972,46.437889],[28.933717,46.25883],[28.659987,45.939987],[28.485269,45.596907],[28.233554,45.488283],[28.054443,45.944586],[28.160018,46.371563],[28.12803,46.810476],[27.551166,47.405117],[27.233873,47.826771],[26.924176,48.123264],[26.619337,48.220726]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MDA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              28.125,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              26.619337,\n              48.220726\n            ],\n            [\n              26.857824,\n              48.368211\n            ],\n            [\n              27.522537,\n              48.467119\n            ],\n            [\n              28.259547,\n              48.155562\n            ],\n            [\n              28.670891,\n              48.118149\n            ],\n            [\n              29.122698,\n              47.849095\n            ],\n            [\n              29.050868,\n              47.510227\n            ],\n            [\n              29.415135,\n              47.346645\n            ],\n            [\n              29.559674,\n              46.928583\n            ],\n            [\n              29.908852,\n              46.674361\n            ],\n            [\n              29.83821,\n              46.525326\n            ],\n            [\n              30.024659,\n              46.423937\n            ],\n            [\n              29.759972,\n              46.349988\n            ],\n            [\n              29.170654,\n              46.379262\n            ],\n            [\n              29.072107,\n              46.517678\n            ],\n            [\n              28.862972,\n              46.437889\n            ],\n            [\n              28.933717,\n              46.25883\n            ],\n            [\n              28.659987,\n              45.939987\n            ],\n            [\n              28.485269,\n              45.596907\n            ],\n            [\n              28.233554,\n              45.488283\n            ],\n            [\n              28.054443,\n              45.944586\n            ],\n            [\n              28.160018,\n              46.371563\n            ],\n            [\n              28.12803,\n              46.810476\n            ],\n            [\n              27.551166,\n              47.405117\n            ],\n            [\n              27.233873,\n              47.826771\n            ],\n            [\n              26.924176,\n              48.123264\n            ],\n            [\n              26.619337,\n              48.220726\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MDG.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MDG\",\"properties\":{\"name\":\"Madagascar\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[49.543519,-12.469833],[49.808981,-12.895285],[50.056511,-13.555761],[50.217431,-14.758789],[50.476537,-15.226512],[50.377111,-15.706069],[50.200275,-16.000263],[49.860606,-15.414253],[49.672607,-15.710204],[49.863344,-16.451037],[49.774564,-16.875042],[49.498612,-17.106036],[49.435619,-17.953064],[49.041792,-19.118781],[48.548541,-20.496888],[47.930749,-22.391501],[47.547723,-23.781959],[47.095761,-24.94163],[46.282478,-25.178463],[45.409508,-25.601434],[44.833574,-25.346101],[44.03972,-24.988345],[43.763768,-24.460677],[43.697778,-23.574116],[43.345654,-22.776904],[43.254187,-22.057413],[43.433298,-21.336475],[43.893683,-21.163307],[43.89637,-20.830459],[44.374325,-20.072366],[44.464397,-19.435454],[44.232422,-18.961995],[44.042976,-18.331387],[43.963084,-17.409945],[44.312469,-16.850496],[44.446517,-16.216219],[44.944937,-16.179374],[45.502732,-15.974373],[45.872994,-15.793454],[46.312243,-15.780018],[46.882183,-15.210182],[47.70513,-14.594303],[48.005215,-14.091233],[47.869047,-13.663869],[48.293828,-13.784068],[48.84506,-13.089175],[48.863509,-12.487868],[49.194651,-12.040557],[49.543519,-12.469833]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MDG_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              -16.63619188\n            ],\n            [\n              39.375,\n              -11.17840187\n            ],\n            [\n              45,\n              -11.17840187\n            ],\n            [\n              45,\n              -16.63619188\n            ],\n            [\n              39.375,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              -21.94304553\n            ],\n            [\n              39.375,\n              -16.63619188\n            ],\n            [\n              45,\n              -16.63619188\n            ],\n            [\n              45,\n              -21.94304553\n            ],\n            [\n              39.375,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              -27.05912578\n            ],\n            [\n              39.375,\n              -21.94304553\n            ],\n            [\n              45,\n              -21.94304553\n            ],\n            [\n              45,\n              -27.05912578\n            ],\n            [\n              39.375,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              -16.63619188\n            ],\n            [\n              45,\n              -11.17840187\n            ],\n            [\n              50.625,\n              -11.17840187\n            ],\n            [\n              50.625,\n              -16.63619188\n            ],\n            [\n              45,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              -21.94304553\n            ],\n            [\n              45,\n              -16.63619188\n            ],\n            [\n              50.625,\n              -16.63619188\n            ],\n            [\n              50.625,\n              -21.94304553\n            ],\n            [\n              45,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              -27.05912578\n            ],\n            [\n              45,\n              -21.94304553\n            ],\n            [\n              50.625,\n              -21.94304553\n            ],\n            [\n              50.625,\n              -27.05912578\n            ],\n            [\n              45,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              49.543519,\n              -12.469833\n            ],\n            [\n              49.808981,\n              -12.895285\n            ],\n            [\n              50.056511,\n              -13.555761\n            ],\n            [\n              50.217431,\n              -14.758789\n            ],\n            [\n              50.476537,\n              -15.226512\n            ],\n            [\n              50.377111,\n              -15.706069\n            ],\n            [\n              50.200275,\n              -16.000263\n            ],\n            [\n              49.860606,\n              -15.414253\n            ],\n            [\n              49.672607,\n              -15.710204\n            ],\n            [\n              49.863344,\n              -16.451037\n            ],\n            [\n              49.774564,\n              -16.875042\n            ],\n            [\n              49.498612,\n              -17.106036\n            ],\n            [\n              49.435619,\n              -17.953064\n            ],\n            [\n              49.041792,\n              -19.118781\n            ],\n            [\n              48.548541,\n              -20.496888\n            ],\n            [\n              47.930749,\n              -22.391501\n            ],\n            [\n              47.547723,\n              -23.781959\n            ],\n            [\n              47.095761,\n              -24.94163\n            ],\n            [\n              46.282478,\n              -25.178463\n            ],\n            [\n              45.409508,\n              -25.601434\n            ],\n            [\n              44.833574,\n              -25.346101\n            ],\n            [\n              44.03972,\n              -24.988345\n            ],\n            [\n              43.763768,\n              -24.460677\n            ],\n            [\n              43.697778,\n              -23.574116\n            ],\n            [\n              43.345654,\n              -22.776904\n            ],\n            [\n              43.254187,\n              -22.057413\n            ],\n            [\n              43.433298,\n              -21.336475\n            ],\n            [\n              43.893683,\n              -21.163307\n            ],\n            [\n              43.89637,\n              -20.830459\n            ],\n            [\n              44.374325,\n              -20.072366\n            ],\n            [\n              44.464397,\n              -19.435454\n            ],\n            [\n              44.232422,\n              -18.961995\n            ],\n            [\n              44.042976,\n              -18.331387\n            ],\n            [\n              43.963084,\n              -17.409945\n            ],\n            [\n              44.312469,\n              -16.850496\n            ],\n            [\n              44.446517,\n              -16.216219\n            ],\n            [\n              44.944937,\n              -16.179374\n            ],\n            [\n              45.502732,\n              -15.974373\n            ],\n            [\n              45.872994,\n              -15.793454\n            ],\n            [\n              46.312243,\n              -15.780018\n            ],\n            [\n              46.882183,\n              -15.210182\n            ],\n            [\n              47.70513,\n              -14.594303\n            ],\n            [\n              48.005215,\n              -14.091233\n            ],\n            [\n              47.869047,\n              -13.663869\n            ],\n            [\n              48.293828,\n              -13.784068\n            ],\n            [\n              48.84506,\n              -13.089175\n            ],\n            [\n              48.863509,\n              -12.487868\n            ],\n            [\n              49.194651,\n              -12.040557\n            ],\n            [\n              49.543519,\n              -12.469833\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MEX.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MEX\",\"properties\":{\"name\":\"Mexico\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.140008,25.869997],[-97.528072,24.992144],[-97.702946,24.272343],[-97.776042,22.93258],[-97.872367,22.444212],[-97.699044,21.898689],[-97.38896,21.411019],[-97.189333,20.635433],[-96.525576,19.890931],[-96.292127,19.320371],[-95.900885,18.828024],[-94.839063,18.562717],[-94.42573,18.144371],[-93.548651,18.423837],[-92.786114,18.524839],[-92.037348,18.704569],[-91.407903,18.876083],[-90.77187,19.28412],[-90.53359,19.867418],[-90.451476,20.707522],[-90.278618,20.999855],[-89.601321,21.261726],[-88.543866,21.493675],[-87.658417,21.458846],[-87.05189,21.543543],[-86.811982,21.331515],[-86.845908,20.849865],[-87.383291,20.255405],[-87.621054,19.646553],[-87.43675,19.472403],[-87.58656,19.04013],[-87.837191,18.259816],[-88.090664,18.516648],[-88.300031,18.499982],[-88.490123,18.486831],[-88.848344,17.883198],[-89.029857,18.001511],[-89.150909,17.955468],[-89.14308,17.808319],[-90.067934,17.819326],[-91.00152,17.817595],[-91.002269,17.254658],[-91.453921,17.252177],[-91.08167,16.918477],[-90.711822,16.687483],[-90.600847,16.470778],[-90.438867,16.41011],[-90.464473,16.069562],[-91.74796,16.066565],[-92.229249,15.251447],[-92.087216,15.064585],[-92.20323,14.830103],[-92.22775,14.538829],[-93.359464,15.61543],[-93.875169,15.940164],[-94.691656,16.200975],[-95.250227,16.128318],[-96.053382,15.752088],[-96.557434,15.653515],[-97.263592,15.917065],[-98.01303,16.107312],[-98.947676,16.566043],[-99.697397,16.706164],[-100.829499,17.171071],[-101.666089,17.649026],[-101.918528,17.91609],[-102.478132,17.975751],[-103.50099,18.292295],[-103.917527,18.748572],[-104.99201,19.316134],[-105.493038,19.946767],[-105.731396,20.434102],[-105.397773,20.531719],[-105.500661,20.816895],[-105.270752,21.076285],[-105.265817,21.422104],[-105.603161,21.871146],[-105.693414,22.26908],[-106.028716,22.773752],[-106.90998,23.767774],[-107.915449,24.548915],[-108.401905,25.172314],[-109.260199,25.580609],[-109.444089,25.824884],[-109.291644,26.442934],[-109.801458,26.676176],[-110.391732,27.162115],[-110.641019,27.859876],[-111.178919,27.941241],[-111.759607,28.467953],[-112.228235,28.954409],[-112.271824,29.266844],[-112.809594,30.021114],[-113.163811,30.786881],[-113.148669,31.170966],[-113.871881,31.567608],[-114.205737,31.524045],[-114.776451,31.799532],[-114.9367,31.393485],[-114.771232,30.913617],[-114.673899,30.162681],[-114.330974,29.750432],[-113.588875,29.061611],[-113.424053,28.826174],[-113.271969,28.754783],[-113.140039,28.411289],[-112.962298,28.42519],[-112.761587,27.780217],[-112.457911,27.525814],[-112.244952,27.171727],[-111.616489,26.662817],[-111.284675,25.73259],[-110.987819,25.294606],[-110.710007,24.826004],[-110.655049,24.298595],[-110.172856,24.265548],[-109.771847,23.811183],[-109.409104,23.364672],[-109.433392,23.185588],[-109.854219,22.818272],[-110.031392,22.823078],[-110.295071,23.430973],[-110.949501,24.000964],[-111.670568,24.484423],[-112.182036,24.738413],[-112.148989,25.470125],[-112.300711,26.012004],[-112.777297,26.32196],[-113.464671,26.768186],[-113.59673,26.63946],[-113.848937,26.900064],[-114.465747,27.14209],[-115.055142,27.722727],[-114.982253,27.7982],[-114.570366,27.741485],[-114.199329,28.115003],[-114.162018,28.566112],[-114.931842,29.279479],[-115.518654,29.556362],[-115.887365,30.180794],[-116.25835,30.836464],[-116.721526,31.635744],[-117.12776,32.53534],[-115.99135,32.61239],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.34194],[-108.24194,31.34222],[-108.24,31.754854],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.45697,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.38071],[-100.45584,28.69612],[-100.11,28.11],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.140008,25.869997]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MEX_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              11.17840187\n            ],\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -101.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -95.625,\n              21.94304553\n            ],\n            [\n              -101.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -95.625,\n              31.95216224\n            ],\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -101.25,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              16.63619188\n            ],\n            [\n              -106.875,\n              21.94304553\n            ],\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -101.25,\n              16.63619188\n            ],\n            [\n              -106.875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              21.94304553\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -112.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              21.94304553\n            ],\n            [\n              -118.125,\n              27.05912578\n            ],\n            [\n              -112.5,\n              27.05912578\n            ],\n            [\n              -112.5,\n              21.94304553\n            ],\n            [\n              -118.125,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              27.05912578\n            ],\n            [\n              -118.125,\n              31.95216224\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -112.5,\n              27.05912578\n            ],\n            [\n              -118.125,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              31.95216224\n            ],\n            [\n              -118.125,\n              36.59788913\n            ],\n            [\n              -112.5,\n              36.59788913\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -118.125,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -90,\n              21.94304553\n            ],\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -90,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -97.140008,\n              25.869997\n            ],\n            [\n              -97.528072,\n              24.992144\n            ],\n            [\n              -97.702946,\n              24.272343\n            ],\n            [\n              -97.776042,\n              22.93258\n            ],\n            [\n              -97.872367,\n              22.444212\n            ],\n            [\n              -97.699044,\n              21.898689\n            ],\n            [\n              -97.38896,\n              21.411019\n            ],\n            [\n              -97.189333,\n              20.635433\n            ],\n            [\n              -96.525576,\n              19.890931\n            ],\n            [\n              -96.292127,\n              19.320371\n            ],\n            [\n              -95.900885,\n              18.828024\n            ],\n            [\n              -94.839063,\n              18.562717\n            ],\n            [\n              -94.42573,\n              18.144371\n            ],\n            [\n              -93.548651,\n              18.423837\n            ],\n            [\n              -92.786114,\n              18.524839\n            ],\n            [\n              -92.037348,\n              18.704569\n            ],\n            [\n              -91.407903,\n              18.876083\n            ],\n            [\n              -90.77187,\n              19.28412\n            ],\n            [\n              -90.53359,\n              19.867418\n            ],\n            [\n              -90.451476,\n              20.707522\n            ],\n            [\n              -90.278618,\n              20.999855\n            ],\n            [\n              -89.601321,\n              21.261726\n            ],\n            [\n              -88.543866,\n              21.493675\n            ],\n            [\n              -87.658417,\n              21.458846\n            ],\n            [\n              -87.05189,\n              21.543543\n            ],\n            [\n              -86.811982,\n              21.331515\n            ],\n            [\n              -86.845908,\n              20.849865\n            ],\n            [\n              -87.383291,\n              20.255405\n            ],\n            [\n              -87.621054,\n              19.646553\n            ],\n            [\n              -87.43675,\n              19.472403\n            ],\n            [\n              -87.58656,\n              19.04013\n            ],\n            [\n              -87.837191,\n              18.259816\n            ],\n            [\n              -88.090664,\n              18.516648\n            ],\n            [\n              -88.300031,\n              18.499982\n            ],\n            [\n              -88.490123,\n              18.486831\n            ],\n            [\n              -88.848344,\n              17.883198\n            ],\n            [\n              -89.029857,\n              18.001511\n            ],\n            [\n              -89.150909,\n              17.955468\n            ],\n            [\n              -89.14308,\n              17.808319\n            ],\n            [\n              -90.067934,\n              17.819326\n            ],\n            [\n              -91.00152,\n              17.817595\n            ],\n            [\n              -91.002269,\n              17.254658\n            ],\n            [\n              -91.453921,\n              17.252177\n            ],\n            [\n              -91.08167,\n              16.918477\n            ],\n            [\n              -90.711822,\n              16.687483\n            ],\n            [\n              -90.600847,\n              16.470778\n            ],\n            [\n              -90.438867,\n              16.41011\n            ],\n            [\n              -90.464473,\n              16.069562\n            ],\n            [\n              -91.74796,\n              16.066565\n            ],\n            [\n              -92.229249,\n              15.251447\n            ],\n            [\n              -92.087216,\n              15.064585\n            ],\n            [\n              -92.20323,\n              14.830103\n            ],\n            [\n              -92.22775,\n              14.538829\n            ],\n            [\n              -93.359464,\n              15.61543\n            ],\n            [\n              -93.875169,\n              15.940164\n            ],\n            [\n              -94.691656,\n              16.200975\n            ],\n            [\n              -95.250227,\n              16.128318\n            ],\n            [\n              -96.053382,\n              15.752088\n            ],\n            [\n              -96.557434,\n              15.653515\n            ],\n            [\n              -97.263592,\n              15.917065\n            ],\n            [\n              -98.01303,\n              16.107312\n            ],\n            [\n              -98.947676,\n              16.566043\n            ],\n            [\n              -99.697397,\n              16.706164\n            ],\n            [\n              -100.829499,\n              17.171071\n            ],\n            [\n              -101.666089,\n              17.649026\n            ],\n            [\n              -101.918528,\n              17.91609\n            ],\n            [\n              -102.478132,\n              17.975751\n            ],\n            [\n              -103.50099,\n              18.292295\n            ],\n            [\n              -103.917527,\n              18.748572\n            ],\n            [\n              -104.99201,\n              19.316134\n            ],\n            [\n              -105.493038,\n              19.946767\n            ],\n            [\n              -105.731396,\n              20.434102\n            ],\n            [\n              -105.397773,\n              20.531719\n            ],\n            [\n              -105.500661,\n              20.816895\n            ],\n            [\n              -105.270752,\n              21.076285\n            ],\n            [\n              -105.265817,\n              21.422104\n            ],\n            [\n              -105.603161,\n              21.871146\n            ],\n            [\n              -105.693414,\n              22.26908\n            ],\n            [\n              -106.028716,\n              22.773752\n            ],\n            [\n              -106.90998,\n              23.767774\n            ],\n            [\n              -107.915449,\n              24.548915\n            ],\n            [\n              -108.401905,\n              25.172314\n            ],\n            [\n              -109.260199,\n              25.580609\n            ],\n            [\n              -109.444089,\n              25.824884\n            ],\n            [\n              -109.291644,\n              26.442934\n            ],\n            [\n              -109.801458,\n              26.676176\n            ],\n            [\n              -110.391732,\n              27.162115\n            ],\n            [\n              -110.641019,\n              27.859876\n            ],\n            [\n              -111.178919,\n              27.941241\n            ],\n            [\n              -111.759607,\n              28.467953\n            ],\n            [\n              -112.228235,\n              28.954409\n            ],\n            [\n              -112.271824,\n              29.266844\n            ],\n            [\n              -112.809594,\n              30.021114\n            ],\n            [\n              -113.163811,\n              30.786881\n            ],\n            [\n              -113.148669,\n              31.170966\n            ],\n            [\n              -113.871881,\n              31.567608\n            ],\n            [\n              -114.205737,\n              31.524045\n            ],\n            [\n              -114.776451,\n              31.799532\n            ],\n            [\n              -114.9367,\n              31.393485\n            ],\n            [\n              -114.771232,\n              30.913617\n            ],\n            [\n              -114.673899,\n              30.162681\n            ],\n            [\n              -114.330974,\n              29.750432\n            ],\n            [\n              -113.588875,\n              29.061611\n            ],\n            [\n              -113.424053,\n              28.826174\n            ],\n            [\n              -113.271969,\n              28.754783\n            ],\n            [\n              -113.140039,\n              28.411289\n            ],\n            [\n              -112.962298,\n              28.42519\n            ],\n            [\n              -112.761587,\n              27.780217\n            ],\n            [\n              -112.457911,\n              27.525814\n            ],\n            [\n              -112.244952,\n              27.171727\n            ],\n            [\n              -111.616489,\n              26.662817\n            ],\n            [\n              -111.284675,\n              25.73259\n            ],\n            [\n              -110.987819,\n              25.294606\n            ],\n            [\n              -110.710007,\n              24.826004\n            ],\n            [\n              -110.655049,\n              24.298595\n            ],\n            [\n              -110.172856,\n              24.265548\n            ],\n            [\n              -109.771847,\n              23.811183\n            ],\n            [\n              -109.409104,\n              23.364672\n            ],\n            [\n              -109.433392,\n              23.185588\n            ],\n            [\n              -109.854219,\n              22.818272\n            ],\n            [\n              -110.031392,\n              22.823078\n            ],\n            [\n              -110.295071,\n              23.430973\n            ],\n            [\n              -110.949501,\n              24.000964\n            ],\n            [\n              -111.670568,\n              24.484423\n            ],\n            [\n              -112.182036,\n              24.738413\n            ],\n            [\n              -112.148989,\n              25.470125\n            ],\n            [\n              -112.300711,\n              26.012004\n            ],\n            [\n              -112.777297,\n              26.32196\n            ],\n            [\n              -113.464671,\n              26.768186\n            ],\n            [\n              -113.59673,\n              26.63946\n            ],\n            [\n              -113.848937,\n              26.900064\n            ],\n            [\n              -114.465747,\n              27.14209\n            ],\n            [\n              -115.055142,\n              27.722727\n            ],\n            [\n              -114.982253,\n              27.7982\n            ],\n            [\n              -114.570366,\n              27.741485\n            ],\n            [\n              -114.199329,\n              28.115003\n            ],\n            [\n              -114.162018,\n              28.566112\n            ],\n            [\n              -114.931842,\n              29.279479\n            ],\n            [\n              -115.518654,\n              29.556362\n            ],\n            [\n              -115.887365,\n              30.180794\n            ],\n            [\n              -116.25835,\n              30.836464\n            ],\n            [\n              -116.721526,\n              31.635744\n            ],\n            [\n              -117.12776,\n              32.53534\n            ],\n            [\n              -115.99135,\n              32.61239\n            ],\n            [\n              -114.72139,\n              32.72083\n            ],\n            [\n              -114.815,\n              32.52528\n            ],\n            [\n              -113.30498,\n              32.03914\n            ],\n            [\n              -111.02361,\n              31.33472\n            ],\n            [\n              -109.035,\n              31.34194\n            ],\n            [\n              -108.24194,\n              31.34222\n            ],\n            [\n              -108.24,\n              31.754854\n            ],\n            [\n              -106.50759,\n              31.75452\n            ],\n            [\n              -106.1429,\n              31.39995\n            ],\n            [\n              -105.63159,\n              31.08383\n            ],\n            [\n              -105.03737,\n              30.64402\n            ],\n            [\n              -104.70575,\n              30.12173\n            ],\n            [\n              -104.45697,\n              29.57196\n            ],\n            [\n              -103.94,\n              29.27\n            ],\n            [\n              -103.11,\n              28.97\n            ],\n            [\n              -102.48,\n              29.76\n            ],\n            [\n              -101.6624,\n              29.7793\n            ],\n            [\n              -100.9576,\n              29.38071\n            ],\n            [\n              -100.45584,\n              28.69612\n            ],\n            [\n              -100.11,\n              28.11\n            ],\n            [\n              -99.52,\n              27.54\n            ],\n            [\n              -99.3,\n              26.84\n            ],\n            [\n              -99.02,\n              26.37\n            ],\n            [\n              -98.24,\n              26.06\n            ],\n            [\n              -97.53,\n              25.84\n            ],\n            [\n              -97.140008,\n              25.869997\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MKD.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MKD\",\"properties\":{\"name\":\"Macedonia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[20.59023,41.85541],[20.71731,41.84711],[20.76216,42.05186],[21.3527,42.2068],[21.576636,42.245224],[21.91708,42.30364],[22.380526,42.32026],[22.881374,41.999297],[22.952377,41.337994],[22.76177,41.3048],[22.597308,41.130487],[22.055378,41.149866],[21.674161,40.931275],[21.02004,40.842727],[20.60518,41.08622],[20.46315,41.51509],[20.59023,41.85541]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MKD_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              16.875,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.59023,\n              41.85541\n            ],\n            [\n              20.71731,\n              41.84711\n            ],\n            [\n              20.76216,\n              42.05186\n            ],\n            [\n              21.3527,\n              42.2068\n            ],\n            [\n              21.576636,\n              42.245224\n            ],\n            [\n              21.91708,\n              42.30364\n            ],\n            [\n              22.380526,\n              42.32026\n            ],\n            [\n              22.881374,\n              41.999297\n            ],\n            [\n              22.952377,\n              41.337994\n            ],\n            [\n              22.76177,\n              41.3048\n            ],\n            [\n              22.597308,\n              41.130487\n            ],\n            [\n              22.055378,\n              41.149866\n            ],\n            [\n              21.674161,\n              40.931275\n            ],\n            [\n              21.02004,\n              40.842727\n            ],\n            [\n              20.60518,\n              41.08622\n            ],\n            [\n              20.46315,\n              41.51509\n            ],\n            [\n              20.59023,\n              41.85541\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MLI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MLI\",\"properties\":{\"name\":\"Mali\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-12.17075,14.616834],[-11.834208,14.799097],[-11.666078,15.388208],[-11.349095,15.411256],[-10.650791,15.132746],[-10.086846,15.330486],[-9.700255,15.264107],[-9.550238,15.486497],[-5.537744,15.50169],[-5.315277,16.201854],[-5.488523,16.325102],[-5.971129,20.640833],[-6.453787,24.956591],[-4.923337,24.974574],[-1.550055,22.792666],[1.823228,20.610809],[2.060991,20.142233],[2.683588,19.85623],[3.146661,19.693579],[3.158133,19.057364],[4.267419,19.155265],[4.27021,16.852227],[3.723422,16.184284],[3.638259,15.56812],[2.749993,15.409525],[1.385528,15.323561],[1.015783,14.968182],[0.374892,14.928908],[-0.266257,14.924309],[-0.515854,15.116158],[-1.066363,14.973815],[-2.001035,14.559008],[-2.191825,14.246418],[-2.967694,13.79815],[-3.103707,13.541267],[-3.522803,13.337662],[-4.006391,13.472485],[-4.280405,13.228444],[-4.427166,12.542646],[-5.220942,11.713859],[-5.197843,11.375146],[-5.470565,10.95127],[-5.404342,10.370737],[-5.816926,10.222555],[-6.050452,10.096361],[-6.205223,10.524061],[-6.493965,10.411303],[-6.666461,10.430811],[-6.850507,10.138994],[-7.622759,10.147236],[-7.89959,10.297382],[-8.029944,10.206535],[-8.335377,10.494812],[-8.282357,10.792597],[-8.407311,10.909257],[-8.620321,10.810891],[-8.581305,11.136246],[-8.376305,11.393646],[-8.786099,11.812561],[-8.905265,12.088358],[-9.127474,12.30806],[-9.327616,12.334286],[-9.567912,12.194243],[-9.890993,12.060479],[-10.165214,11.844084],[-10.593224,11.923975],[-10.87083,12.177887],[-11.036556,12.211245],[-11.297574,12.077971],[-11.456169,12.076834],[-11.513943,12.442988],[-11.467899,12.754519],[-11.553398,13.141214],[-11.927716,13.422075],[-12.124887,13.994727],[-12.17075,14.616834]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MLI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              -11.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              -5.625,\n              21.94304553\n            ],\n            [\n              -11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -11.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -16.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              21.94304553\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              0,\n              27.05912578\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              -5.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              5.61598582\n            ],\n            [\n              -5.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              16.63619188\n            ],\n            [\n              5.625,\n              16.63619188\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              16.63619188\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              5.625,\n              21.94304553\n            ],\n            [\n              5.625,\n              16.63619188\n            ],\n            [\n              0,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -12.17075,\n              14.616834\n            ],\n            [\n              -11.834208,\n              14.799097\n            ],\n            [\n              -11.666078,\n              15.388208\n            ],\n            [\n              -11.349095,\n              15.411256\n            ],\n            [\n              -10.650791,\n              15.132746\n            ],\n            [\n              -10.086846,\n              15.330486\n            ],\n            [\n              -9.700255,\n              15.264107\n            ],\n            [\n              -9.550238,\n              15.486497\n            ],\n            [\n              -5.537744,\n              15.50169\n            ],\n            [\n              -5.315277,\n              16.201854\n            ],\n            [\n              -5.488523,\n              16.325102\n            ],\n            [\n              -5.971129,\n              20.640833\n            ],\n            [\n              -6.453787,\n              24.956591\n            ],\n            [\n              -4.923337,\n              24.974574\n            ],\n            [\n              -1.550055,\n              22.792666\n            ],\n            [\n              1.823228,\n              20.610809\n            ],\n            [\n              2.060991,\n              20.142233\n            ],\n            [\n              2.683588,\n              19.85623\n            ],\n            [\n              3.146661,\n              19.693579\n            ],\n            [\n              3.158133,\n              19.057364\n            ],\n            [\n              4.267419,\n              19.155265\n            ],\n            [\n              4.27021,\n              16.852227\n            ],\n            [\n              3.723422,\n              16.184284\n            ],\n            [\n              3.638259,\n              15.56812\n            ],\n            [\n              2.749993,\n              15.409525\n            ],\n            [\n              1.385528,\n              15.323561\n            ],\n            [\n              1.015783,\n              14.968182\n            ],\n            [\n              0.374892,\n              14.928908\n            ],\n            [\n              -0.266257,\n              14.924309\n            ],\n            [\n              -0.515854,\n              15.116158\n            ],\n            [\n              -1.066363,\n              14.973815\n            ],\n            [\n              -2.001035,\n              14.559008\n            ],\n            [\n              -2.191825,\n              14.246418\n            ],\n            [\n              -2.967694,\n              13.79815\n            ],\n            [\n              -3.103707,\n              13.541267\n            ],\n            [\n              -3.522803,\n              13.337662\n            ],\n            [\n              -4.006391,\n              13.472485\n            ],\n            [\n              -4.280405,\n              13.228444\n            ],\n            [\n              -4.427166,\n              12.542646\n            ],\n            [\n              -5.220942,\n              11.713859\n            ],\n            [\n              -5.197843,\n              11.375146\n            ],\n            [\n              -5.470565,\n              10.95127\n            ],\n            [\n              -5.404342,\n              10.370737\n            ],\n            [\n              -5.816926,\n              10.222555\n            ],\n            [\n              -6.050452,\n              10.096361\n            ],\n            [\n              -6.205223,\n              10.524061\n            ],\n            [\n              -6.493965,\n              10.411303\n            ],\n            [\n              -6.666461,\n              10.430811\n            ],\n            [\n              -6.850507,\n              10.138994\n            ],\n            [\n              -7.622759,\n              10.147236\n            ],\n            [\n              -7.89959,\n              10.297382\n            ],\n            [\n              -8.029944,\n              10.206535\n            ],\n            [\n              -8.335377,\n              10.494812\n            ],\n            [\n              -8.282357,\n              10.792597\n            ],\n            [\n              -8.407311,\n              10.909257\n            ],\n            [\n              -8.620321,\n              10.810891\n            ],\n            [\n              -8.581305,\n              11.136246\n            ],\n            [\n              -8.376305,\n              11.393646\n            ],\n            [\n              -8.786099,\n              11.812561\n            ],\n            [\n              -8.905265,\n              12.088358\n            ],\n            [\n              -9.127474,\n              12.30806\n            ],\n            [\n              -9.327616,\n              12.334286\n            ],\n            [\n              -9.567912,\n              12.194243\n            ],\n            [\n              -9.890993,\n              12.060479\n            ],\n            [\n              -10.165214,\n              11.844084\n            ],\n            [\n              -10.593224,\n              11.923975\n            ],\n            [\n              -10.87083,\n              12.177887\n            ],\n            [\n              -11.036556,\n              12.211245\n            ],\n            [\n              -11.297574,\n              12.077971\n            ],\n            [\n              -11.456169,\n              12.076834\n            ],\n            [\n              -11.513943,\n              12.442988\n            ],\n            [\n              -11.467899,\n              12.754519\n            ],\n            [\n              -11.553398,\n              13.141214\n            ],\n            [\n              -11.927716,\n              13.422075\n            ],\n            [\n              -12.124887,\n              13.994727\n            ],\n            [\n              -12.17075,\n              14.616834\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MLT.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MLT\",\"properties\":{\"name\":\"Malta\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[14.566171,35.852721],[14.532684,35.820191],[14.436463,35.821664],[14.352334,35.872281],[14.3513,35.978399],[14.448348,35.957444],[14.537025,35.886285],[14.566171,35.852721]]],[[[14.313473,36.027569],[14.253632,36.012143],[14.194204,36.042245],[14.180354,36.060383],[14.263243,36.075809],[14.303758,36.062295],[14.320914,36.03625],[14.313473,36.027569]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MLT_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              11.25,\n              36.59788913\n            ],\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              16.875,\n              31.95216224\n            ],\n            [\n              11.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                14.566171,\n                35.852721\n              ],\n              [\n                14.532684,\n                35.820191\n              ],\n              [\n                14.436463,\n                35.821664\n              ],\n              [\n                14.352334,\n                35.872281\n              ],\n              [\n                14.3513,\n                35.978399\n              ],\n              [\n                14.448348,\n                35.957444\n              ],\n              [\n                14.537025,\n                35.886285\n              ],\n              [\n                14.566171,\n                35.852721\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                14.313473,\n                36.027569\n              ],\n              [\n                14.253632,\n                36.012143\n              ],\n              [\n                14.194204,\n                36.042245\n              ],\n              [\n                14.180354,\n                36.060383\n              ],\n              [\n                14.263243,\n                36.075809\n              ],\n              [\n                14.303758,\n                36.062295\n              ],\n              [\n                14.320914,\n                36.03625\n              ],\n              [\n                14.313473,\n                36.027569\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MMR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MMR\",\"properties\":{\"name\":\"Myanmar\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[99.543309,20.186598],[98.959676,19.752981],[98.253724,19.708203],[97.797783,18.62708],[97.375896,18.445438],[97.859123,17.567946],[98.493761,16.837836],[98.903348,16.177824],[98.537376,15.308497],[98.192074,15.123703],[98.430819,14.622028],[99.097755,13.827503],[99.212012,13.269294],[99.196354,12.804748],[99.587286,11.892763],[99.038121,10.960546],[98.553551,9.93296],[98.457174,10.675266],[98.764546,11.441292],[98.428339,12.032987],[98.509574,13.122378],[98.103604,13.64046],[97.777732,14.837286],[97.597072,16.100568],[97.16454,16.928734],[96.505769,16.427241],[95.369352,15.71439],[94.808405,15.803454],[94.188804,16.037936],[94.533486,17.27724],[94.324817,18.213514],[93.540988,19.366493],[93.663255,19.726962],[93.078278,19.855145],[92.368554,20.670883],[92.303234,21.475485],[92.652257,21.324048],[92.672721,22.041239],[93.166128,22.27846],[93.060294,22.703111],[93.286327,23.043658],[93.325188,24.078556],[94.106742,23.850741],[94.552658,24.675238],[94.603249,25.162495],[95.155153,26.001307],[95.124768,26.573572],[96.419366,27.264589],[97.133999,27.083774],[97.051989,27.699059],[97.402561,27.882536],[97.327114,28.261583],[97.911988,28.335945],[98.246231,27.747221],[98.68269,27.508812],[98.712094,26.743536],[98.671838,25.918703],[97.724609,25.083637],[97.60472,23.897405],[98.660262,24.063286],[98.898749,23.142722],[99.531992,22.949039],[99.240899,22.118314],[99.983489,21.742937],[100.416538,21.558839],[101.150033,21.849984],[101.180005,21.436573],[100.329101,20.786122],[100.115988,20.41785],[99.543309,20.186598]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MMR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              11.17840187\n            ],\n            [\n              90,\n              21.94304553\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              90,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              21.94304553\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              90,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              101.25,\n              27.05912578\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              95.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              27.05912578\n            ],\n            [\n              95.625,\n              31.95216224\n            ],\n            [\n              101.25,\n              31.95216224\n            ],\n            [\n              101.25,\n              27.05912578\n            ],\n            [\n              95.625,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              5.61598582\n            ],\n            [\n              95.625,\n              11.17840187\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              95.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              99.543309,\n              20.186598\n            ],\n            [\n              98.959676,\n              19.752981\n            ],\n            [\n              98.253724,\n              19.708203\n            ],\n            [\n              97.797783,\n              18.62708\n            ],\n            [\n              97.375896,\n              18.445438\n            ],\n            [\n              97.859123,\n              17.567946\n            ],\n            [\n              98.493761,\n              16.837836\n            ],\n            [\n              98.903348,\n              16.177824\n            ],\n            [\n              98.537376,\n              15.308497\n            ],\n            [\n              98.192074,\n              15.123703\n            ],\n            [\n              98.430819,\n              14.622028\n            ],\n            [\n              99.097755,\n              13.827503\n            ],\n            [\n              99.212012,\n              13.269294\n            ],\n            [\n              99.196354,\n              12.804748\n            ],\n            [\n              99.587286,\n              11.892763\n            ],\n            [\n              99.038121,\n              10.960546\n            ],\n            [\n              98.553551,\n              9.93296\n            ],\n            [\n              98.457174,\n              10.675266\n            ],\n            [\n              98.764546,\n              11.441292\n            ],\n            [\n              98.428339,\n              12.032987\n            ],\n            [\n              98.509574,\n              13.122378\n            ],\n            [\n              98.103604,\n              13.64046\n            ],\n            [\n              97.777732,\n              14.837286\n            ],\n            [\n              97.597072,\n              16.100568\n            ],\n            [\n              97.16454,\n              16.928734\n            ],\n            [\n              96.505769,\n              16.427241\n            ],\n            [\n              95.369352,\n              15.71439\n            ],\n            [\n              94.808405,\n              15.803454\n            ],\n            [\n              94.188804,\n              16.037936\n            ],\n            [\n              94.533486,\n              17.27724\n            ],\n            [\n              94.324817,\n              18.213514\n            ],\n            [\n              93.540988,\n              19.366493\n            ],\n            [\n              93.663255,\n              19.726962\n            ],\n            [\n              93.078278,\n              19.855145\n            ],\n            [\n              92.368554,\n              20.670883\n            ],\n            [\n              92.303234,\n              21.475485\n            ],\n            [\n              92.652257,\n              21.324048\n            ],\n            [\n              92.672721,\n              22.041239\n            ],\n            [\n              93.166128,\n              22.27846\n            ],\n            [\n              93.060294,\n              22.703111\n            ],\n            [\n              93.286327,\n              23.043658\n            ],\n            [\n              93.325188,\n              24.078556\n            ],\n            [\n              94.106742,\n              23.850741\n            ],\n            [\n              94.552658,\n              24.675238\n            ],\n            [\n              94.603249,\n              25.162495\n            ],\n            [\n              95.155153,\n              26.001307\n            ],\n            [\n              95.124768,\n              26.573572\n            ],\n            [\n              96.419366,\n              27.264589\n            ],\n            [\n              97.133999,\n              27.083774\n            ],\n            [\n              97.051989,\n              27.699059\n            ],\n            [\n              97.402561,\n              27.882536\n            ],\n            [\n              97.327114,\n              28.261583\n            ],\n            [\n              97.911988,\n              28.335945\n            ],\n            [\n              98.246231,\n              27.747221\n            ],\n            [\n              98.68269,\n              27.508812\n            ],\n            [\n              98.712094,\n              26.743536\n            ],\n            [\n              98.671838,\n              25.918703\n            ],\n            [\n              97.724609,\n              25.083637\n            ],\n            [\n              97.60472,\n              23.897405\n            ],\n            [\n              98.660262,\n              24.063286\n            ],\n            [\n              98.898749,\n              23.142722\n            ],\n            [\n              99.531992,\n              22.949039\n            ],\n            [\n              99.240899,\n              22.118314\n            ],\n            [\n              99.983489,\n              21.742937\n            ],\n            [\n              100.416538,\n              21.558839\n            ],\n            [\n              101.150033,\n              21.849984\n            ],\n            [\n              101.180005,\n              21.436573\n            ],\n            [\n              100.329101,\n              20.786122\n            ],\n            [\n              100.115988,\n              20.41785\n            ],\n            [\n              99.543309,\n              20.186598\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MNE.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MNE\",\"properties\":{\"name\":\"Montenegro\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[19.801613,42.500093],[19.738051,42.688247],[19.30449,42.19574],[19.37177,41.87755],[19.16246,41.95502],[18.88214,42.28151],[18.45,42.48],[18.56,42.65],[18.70648,43.20011],[19.03165,43.43253],[19.21852,43.52384],[19.48389,43.35229],[19.63,43.21378],[19.95857,43.10604],[20.3398,42.89852],[20.25758,42.81275],[20.0707,42.58863],[19.801613,42.500093]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MNE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              19.801613,\n              42.500093\n            ],\n            [\n              19.738051,\n              42.688247\n            ],\n            [\n              19.30449,\n              42.19574\n            ],\n            [\n              19.37177,\n              41.87755\n            ],\n            [\n              19.16246,\n              41.95502\n            ],\n            [\n              18.88214,\n              42.28151\n            ],\n            [\n              18.45,\n              42.48\n            ],\n            [\n              18.56,\n              42.65\n            ],\n            [\n              18.70648,\n              43.20011\n            ],\n            [\n              19.03165,\n              43.43253\n            ],\n            [\n              19.21852,\n              43.52384\n            ],\n            [\n              19.48389,\n              43.35229\n            ],\n            [\n              19.63,\n              43.21378\n            ],\n            [\n              19.95857,\n              43.10604\n            ],\n            [\n              20.3398,\n              42.89852\n            ],\n            [\n              20.25758,\n              42.81275\n            ],\n            [\n              20.0707,\n              42.58863\n            ],\n            [\n              19.801613,\n              42.500093\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MNG.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MNG\",\"properties\":{\"name\":\"Mongolia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[87.751264,49.297198],[88.805567,49.470521],[90.713667,50.331812],[92.234712,50.802171],[93.104219,50.49529],[94.147566,50.480537],[94.815949,50.013433],[95.814028,49.977467],[97.259728,49.726061],[98.231762,50.422401],[97.82574,51.010995],[98.861491,52.047366],[99.981732,51.634006],[100.88948,51.516856],[102.065223,51.259921],[102.255909,50.510561],[103.676545,50.089966],[104.621552,50.275329],[105.886591,50.406019],[106.888804,50.274296],[107.868176,49.793705],[108.475167,49.282548],[109.402449,49.292961],[110.662011,49.130128],[111.581231,49.377968],[112.89774,49.543565],[114.362456,50.248303],[114.96211,50.140247],[115.485695,49.805177],[116.678801,49.888531],[116.191802,49.134598],[115.485282,48.135383],[115.742837,47.726545],[116.308953,47.85341],[117.295507,47.697709],[118.064143,48.06673],[118.866574,47.74706],[119.772824,47.048059],[119.66327,46.69268],[118.874326,46.805412],[117.421701,46.672733],[116.717868,46.388202],[115.985096,45.727235],[114.460332,45.339817],[113.463907,44.808893],[112.436062,45.011646],[111.873306,45.102079],[111.348377,44.457442],[111.667737,44.073176],[111.829588,43.743118],[111.129682,43.406834],[110.412103,42.871234],[109.243596,42.519446],[107.744773,42.481516],[106.129316,42.134328],[104.964994,41.59741],[104.522282,41.908347],[103.312278,41.907468],[101.83304,42.514873],[100.845866,42.663804],[99.515817,42.524691],[97.451757,42.74889],[96.349396,42.725635],[95.762455,43.319449],[95.306875,44.241331],[94.688929,44.352332],[93.480734,44.975472],[92.133891,45.115076],[90.94554,45.286073],[90.585768,45.719716],[90.970809,46.888146],[90.280826,47.693549],[88.854298,48.069082],[88.013832,48.599463],[87.751264,49.297198]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MNG_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              40.97989807\n            ],\n            [\n              101.25,\n              48.92249926\n            ],\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              112.5,\n              40.97989807\n            ],\n            [\n              101.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              48.92249926\n            ],\n            [\n              101.25,\n              52.48278022\n            ],\n            [\n              106.875,\n              52.48278022\n            ],\n            [\n              106.875,\n              48.92249926\n            ],\n            [\n              101.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              48.92249926\n            ],\n            [\n              106.875,\n              52.48278022\n            ],\n            [\n              112.5,\n              52.48278022\n            ],\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              106.875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              40.97989807\n            ],\n            [\n              112.5,\n              45.08903556\n            ],\n            [\n              118.125,\n              45.08903556\n            ],\n            [\n              118.125,\n              40.97989807\n            ],\n            [\n              112.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              45.08903556\n            ],\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              118.125,\n              48.92249926\n            ],\n            [\n              118.125,\n              45.08903556\n            ],\n            [\n              112.5,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              112.5,\n              52.48278022\n            ],\n            [\n              118.125,\n              52.48278022\n            ],\n            [\n              118.125,\n              48.92249926\n            ],\n            [\n              112.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              45.08903556\n            ],\n            [\n              118.125,\n              48.92249926\n            ],\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              123.75,\n              45.08903556\n            ],\n            [\n              118.125,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              45.08903556\n            ],\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              90,\n              45.08903556\n            ],\n            [\n              84.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              48.92249926\n            ],\n            [\n              84.375,\n              52.48278022\n            ],\n            [\n              90,\n              52.48278022\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              84.375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              40.97989807\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              101.25,\n              48.92249926\n            ],\n            [\n              101.25,\n              40.97989807\n            ],\n            [\n              90,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              48.92249926\n            ],\n            [\n              90,\n              52.48278022\n            ],\n            [\n              95.625,\n              52.48278022\n            ],\n            [\n              95.625,\n              48.92249926\n            ],\n            [\n              90,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              48.92249926\n            ],\n            [\n              95.625,\n              52.48278022\n            ],\n            [\n              101.25,\n              52.48278022\n            ],\n            [\n              101.25,\n              48.92249926\n            ],\n            [\n              95.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              87.751264,\n              49.297198\n            ],\n            [\n              88.805567,\n              49.470521\n            ],\n            [\n              90.713667,\n              50.331812\n            ],\n            [\n              92.234712,\n              50.802171\n            ],\n            [\n              93.104219,\n              50.49529\n            ],\n            [\n              94.147566,\n              50.480537\n            ],\n            [\n              94.815949,\n              50.013433\n            ],\n            [\n              95.814028,\n              49.977467\n            ],\n            [\n              97.259728,\n              49.726061\n            ],\n            [\n              98.231762,\n              50.422401\n            ],\n            [\n              97.82574,\n              51.010995\n            ],\n            [\n              98.861491,\n              52.047366\n            ],\n            [\n              99.981732,\n              51.634006\n            ],\n            [\n              100.88948,\n              51.516856\n            ],\n            [\n              102.065223,\n              51.259921\n            ],\n            [\n              102.255909,\n              50.510561\n            ],\n            [\n              103.676545,\n              50.089966\n            ],\n            [\n              104.621552,\n              50.275329\n            ],\n            [\n              105.886591,\n              50.406019\n            ],\n            [\n              106.888804,\n              50.274296\n            ],\n            [\n              107.868176,\n              49.793705\n            ],\n            [\n              108.475167,\n              49.282548\n            ],\n            [\n              109.402449,\n              49.292961\n            ],\n            [\n              110.662011,\n              49.130128\n            ],\n            [\n              111.581231,\n              49.377968\n            ],\n            [\n              112.89774,\n              49.543565\n            ],\n            [\n              114.362456,\n              50.248303\n            ],\n            [\n              114.96211,\n              50.140247\n            ],\n            [\n              115.485695,\n              49.805177\n            ],\n            [\n              116.678801,\n              49.888531\n            ],\n            [\n              116.191802,\n              49.134598\n            ],\n            [\n              115.485282,\n              48.135383\n            ],\n            [\n              115.742837,\n              47.726545\n            ],\n            [\n              116.308953,\n              47.85341\n            ],\n            [\n              117.295507,\n              47.697709\n            ],\n            [\n              118.064143,\n              48.06673\n            ],\n            [\n              118.866574,\n              47.74706\n            ],\n            [\n              119.772824,\n              47.048059\n            ],\n            [\n              119.66327,\n              46.69268\n            ],\n            [\n              118.874326,\n              46.805412\n            ],\n            [\n              117.421701,\n              46.672733\n            ],\n            [\n              116.717868,\n              46.388202\n            ],\n            [\n              115.985096,\n              45.727235\n            ],\n            [\n              114.460332,\n              45.339817\n            ],\n            [\n              113.463907,\n              44.808893\n            ],\n            [\n              112.436062,\n              45.011646\n            ],\n            [\n              111.873306,\n              45.102079\n            ],\n            [\n              111.348377,\n              44.457442\n            ],\n            [\n              111.667737,\n              44.073176\n            ],\n            [\n              111.829588,\n              43.743118\n            ],\n            [\n              111.129682,\n              43.406834\n            ],\n            [\n              110.412103,\n              42.871234\n            ],\n            [\n              109.243596,\n              42.519446\n            ],\n            [\n              107.744773,\n              42.481516\n            ],\n            [\n              106.129316,\n              42.134328\n            ],\n            [\n              104.964994,\n              41.59741\n            ],\n            [\n              104.522282,\n              41.908347\n            ],\n            [\n              103.312278,\n              41.907468\n            ],\n            [\n              101.83304,\n              42.514873\n            ],\n            [\n              100.845866,\n              42.663804\n            ],\n            [\n              99.515817,\n              42.524691\n            ],\n            [\n              97.451757,\n              42.74889\n            ],\n            [\n              96.349396,\n              42.725635\n            ],\n            [\n              95.762455,\n              43.319449\n            ],\n            [\n              95.306875,\n              44.241331\n            ],\n            [\n              94.688929,\n              44.352332\n            ],\n            [\n              93.480734,\n              44.975472\n            ],\n            [\n              92.133891,\n              45.115076\n            ],\n            [\n              90.94554,\n              45.286073\n            ],\n            [\n              90.585768,\n              45.719716\n            ],\n            [\n              90.970809,\n              46.888146\n            ],\n            [\n              90.280826,\n              47.693549\n            ],\n            [\n              88.854298,\n              48.069082\n            ],\n            [\n              88.013832,\n              48.599463\n            ],\n            [\n              87.751264,\n              49.297198\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MOZ.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MOZ\",\"properties\":{\"name\":\"Mozambique\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[34.559989,-11.52002],[35.312398,-11.439146],[36.514082,-11.720938],[36.775151,-11.594537],[37.471284,-11.568751],[37.827645,-11.268769],[38.427557,-11.285202],[39.52103,-10.896854],[40.316589,-10.317096],[40.478387,-10.765441],[40.437253,-11.761711],[40.560811,-12.639177],[40.59962,-14.201975],[40.775475,-14.691764],[40.477251,-15.406294],[40.089264,-16.100774],[39.452559,-16.720891],[38.538351,-17.101023],[37.411133,-17.586368],[36.281279,-18.659688],[35.896497,-18.84226],[35.1984,-19.552811],[34.786383,-19.784012],[34.701893,-20.497043],[35.176127,-21.254361],[35.373428,-21.840837],[35.385848,-22.14],[35.562546,-22.09],[35.533935,-23.070788],[35.371774,-23.535359],[35.60747,-23.706563],[35.458746,-24.12261],[35.040735,-24.478351],[34.215824,-24.816314],[33.01321,-25.357573],[32.574632,-25.727318],[32.660363,-26.148584],[32.915955,-26.215867],[32.83012,-26.742192],[32.071665,-26.73382],[31.985779,-26.29178],[31.837778,-25.843332],[31.752408,-25.484284],[31.930589,-24.369417],[31.670398,-23.658969],[31.191409,-22.25151],[32.244988,-21.116489],[32.508693,-20.395292],[32.659743,-20.30429],[32.772708,-19.715592],[32.611994,-19.419383],[32.654886,-18.67209],[32.849861,-17.979057],[32.847639,-16.713398],[32.328239,-16.392074],[31.852041,-16.319417],[31.636498,-16.07199],[31.173064,-15.860944],[30.338955,-15.880839],[30.274256,-15.507787],[30.179481,-14.796099],[33.214025,-13.97186],[33.7897,-14.451831],[34.064825,-14.35995],[34.459633,-14.61301],[34.517666,-15.013709],[34.307291,-15.478641],[34.381292,-16.18356],[35.03381,-16.8013],[35.339063,-16.10744],[35.771905,-15.896859],[35.686845,-14.611046],[35.267956,-13.887834],[34.907151,-13.565425],[34.559989,-13.579998],[34.280006,-12.280025],[34.559989,-11.52002]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MOZ_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              28.125,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              39.375,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              45,\n              -11.17840187\n            ],\n            [\n              45,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -27.05912578\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              39.375,\n              -21.94304553\n            ],\n            [\n              39.375,\n              -27.05912578\n            ],\n            [\n              33.75,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              -11.17840187\n            ],\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              45,\n              -5.61598582\n            ],\n            [\n              45,\n              -11.17840187\n            ],\n            [\n              39.375,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              34.559989,\n              -11.52002\n            ],\n            [\n              35.312398,\n              -11.439146\n            ],\n            [\n              36.514082,\n              -11.720938\n            ],\n            [\n              36.775151,\n              -11.594537\n            ],\n            [\n              37.471284,\n              -11.568751\n            ],\n            [\n              37.827645,\n              -11.268769\n            ],\n            [\n              38.427557,\n              -11.285202\n            ],\n            [\n              39.52103,\n              -10.896854\n            ],\n            [\n              40.316589,\n              -10.317096\n            ],\n            [\n              40.478387,\n              -10.765441\n            ],\n            [\n              40.437253,\n              -11.761711\n            ],\n            [\n              40.560811,\n              -12.639177\n            ],\n            [\n              40.59962,\n              -14.201975\n            ],\n            [\n              40.775475,\n              -14.691764\n            ],\n            [\n              40.477251,\n              -15.406294\n            ],\n            [\n              40.089264,\n              -16.100774\n            ],\n            [\n              39.452559,\n              -16.720891\n            ],\n            [\n              38.538351,\n              -17.101023\n            ],\n            [\n              37.411133,\n              -17.586368\n            ],\n            [\n              36.281279,\n              -18.659688\n            ],\n            [\n              35.896497,\n              -18.84226\n            ],\n            [\n              35.1984,\n              -19.552811\n            ],\n            [\n              34.786383,\n              -19.784012\n            ],\n            [\n              34.701893,\n              -20.497043\n            ],\n            [\n              35.176127,\n              -21.254361\n            ],\n            [\n              35.373428,\n              -21.840837\n            ],\n            [\n              35.385848,\n              -22.14\n            ],\n            [\n              35.562546,\n              -22.09\n            ],\n            [\n              35.533935,\n              -23.070788\n            ],\n            [\n              35.371774,\n              -23.535359\n            ],\n            [\n              35.60747,\n              -23.706563\n            ],\n            [\n              35.458746,\n              -24.12261\n            ],\n            [\n              35.040735,\n              -24.478351\n            ],\n            [\n              34.215824,\n              -24.816314\n            ],\n            [\n              33.01321,\n              -25.357573\n            ],\n            [\n              32.574632,\n              -25.727318\n            ],\n            [\n              32.660363,\n              -26.148584\n            ],\n            [\n              32.915955,\n              -26.215867\n            ],\n            [\n              32.83012,\n              -26.742192\n            ],\n            [\n              32.071665,\n              -26.73382\n            ],\n            [\n              31.985779,\n              -26.29178\n            ],\n            [\n              31.837778,\n              -25.843332\n            ],\n            [\n              31.752408,\n              -25.484284\n            ],\n            [\n              31.930589,\n              -24.369417\n            ],\n            [\n              31.670398,\n              -23.658969\n            ],\n            [\n              31.191409,\n              -22.25151\n            ],\n            [\n              32.244988,\n              -21.116489\n            ],\n            [\n              32.508693,\n              -20.395292\n            ],\n            [\n              32.659743,\n              -20.30429\n            ],\n            [\n              32.772708,\n              -19.715592\n            ],\n            [\n              32.611994,\n              -19.419383\n            ],\n            [\n              32.654886,\n              -18.67209\n            ],\n            [\n              32.849861,\n              -17.979057\n            ],\n            [\n              32.847639,\n              -16.713398\n            ],\n            [\n              32.328239,\n              -16.392074\n            ],\n            [\n              31.852041,\n              -16.319417\n            ],\n            [\n              31.636498,\n              -16.07199\n            ],\n            [\n              31.173064,\n              -15.860944\n            ],\n            [\n              30.338955,\n              -15.880839\n            ],\n            [\n              30.274256,\n              -15.507787\n            ],\n            [\n              30.179481,\n              -14.796099\n            ],\n            [\n              33.214025,\n              -13.97186\n            ],\n            [\n              33.7897,\n              -14.451831\n            ],\n            [\n              34.064825,\n              -14.35995\n            ],\n            [\n              34.459633,\n              -14.61301\n            ],\n            [\n              34.517666,\n              -15.013709\n            ],\n            [\n              34.307291,\n              -15.478641\n            ],\n            [\n              34.381292,\n              -16.18356\n            ],\n            [\n              35.03381,\n              -16.8013\n            ],\n            [\n              35.339063,\n              -16.10744\n            ],\n            [\n              35.771905,\n              -15.896859\n            ],\n            [\n              35.686845,\n              -14.611046\n            ],\n            [\n              35.267956,\n              -13.887834\n            ],\n            [\n              34.907151,\n              -13.565425\n            ],\n            [\n              34.559989,\n              -13.579998\n            ],\n            [\n              34.280006,\n              -12.280025\n            ],\n            [\n              34.559989,\n              -11.52002\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MRT.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MRT\",\"properties\":{\"name\":\"Mauritania\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-12.17075,14.616834],[-12.830658,15.303692],[-13.435738,16.039383],[-14.099521,16.304302],[-14.577348,16.598264],[-15.135737,16.587282],[-15.623666,16.369337],[-16.12069,16.455663],[-16.463098,16.135036],[-16.549708,16.673892],[-16.270552,17.166963],[-16.146347,18.108482],[-16.256883,19.096716],[-16.377651,19.593817],[-16.277838,20.092521],[-16.536324,20.567866],[-17.063423,20.999752],[-16.845194,21.333323],[-12.929102,21.327071],[-13.118754,22.77122],[-12.874222,23.284832],[-11.937224,23.374594],[-11.969419,25.933353],[-8.687294,25.881056],[-8.6844,27.395744],[-4.923337,24.974574],[-6.453787,24.956591],[-5.971129,20.640833],[-5.488523,16.325102],[-5.315277,16.201854],[-5.537744,15.50169],[-9.550238,15.486497],[-9.700255,15.264107],[-10.086846,15.330486],[-10.650791,15.132746],[-11.349095,15.411256],[-11.666078,15.388208],[-11.834208,14.799097],[-12.17075,14.616834]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MRT_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              -11.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              -5.625,\n              21.94304553\n            ],\n            [\n              -11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -11.25,\n              31.95216224\n            ],\n            [\n              -5.625,\n              31.95216224\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              -11.25,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -16.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -16.875,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -16.875,\n              27.05912578\n            ],\n            [\n              -11.25,\n              27.05912578\n            ],\n            [\n              -11.25,\n              21.94304553\n            ],\n            [\n              -16.875,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              16.63619188\n            ],\n            [\n              -22.5,\n              21.94304553\n            ],\n            [\n              -16.875,\n              21.94304553\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -22.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              21.94304553\n            ],\n            [\n              -5.625,\n              27.05912578\n            ],\n            [\n              0,\n              27.05912578\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              -5.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -12.17075,\n              14.616834\n            ],\n            [\n              -12.830658,\n              15.303692\n            ],\n            [\n              -13.435738,\n              16.039383\n            ],\n            [\n              -14.099521,\n              16.304302\n            ],\n            [\n              -14.577348,\n              16.598264\n            ],\n            [\n              -15.135737,\n              16.587282\n            ],\n            [\n              -15.623666,\n              16.369337\n            ],\n            [\n              -16.12069,\n              16.455663\n            ],\n            [\n              -16.463098,\n              16.135036\n            ],\n            [\n              -16.549708,\n              16.673892\n            ],\n            [\n              -16.270552,\n              17.166963\n            ],\n            [\n              -16.146347,\n              18.108482\n            ],\n            [\n              -16.256883,\n              19.096716\n            ],\n            [\n              -16.377651,\n              19.593817\n            ],\n            [\n              -16.277838,\n              20.092521\n            ],\n            [\n              -16.536324,\n              20.567866\n            ],\n            [\n              -17.063423,\n              20.999752\n            ],\n            [\n              -16.845194,\n              21.333323\n            ],\n            [\n              -12.929102,\n              21.327071\n            ],\n            [\n              -13.118754,\n              22.77122\n            ],\n            [\n              -12.874222,\n              23.284832\n            ],\n            [\n              -11.937224,\n              23.374594\n            ],\n            [\n              -11.969419,\n              25.933353\n            ],\n            [\n              -8.687294,\n              25.881056\n            ],\n            [\n              -8.6844,\n              27.395744\n            ],\n            [\n              -4.923337,\n              24.974574\n            ],\n            [\n              -6.453787,\n              24.956591\n            ],\n            [\n              -5.971129,\n              20.640833\n            ],\n            [\n              -5.488523,\n              16.325102\n            ],\n            [\n              -5.315277,\n              16.201854\n            ],\n            [\n              -5.537744,\n              15.50169\n            ],\n            [\n              -9.550238,\n              15.486497\n            ],\n            [\n              -9.700255,\n              15.264107\n            ],\n            [\n              -10.086846,\n              15.330486\n            ],\n            [\n              -10.650791,\n              15.132746\n            ],\n            [\n              -11.349095,\n              15.411256\n            ],\n            [\n              -11.666078,\n              15.388208\n            ],\n            [\n              -11.834208,\n              14.799097\n            ],\n            [\n              -12.17075,\n              14.616834\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MWI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MWI\",\"properties\":{\"name\":\"Malawi\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[34.559989,-11.52002],[34.280006,-12.280025],[34.559989,-13.579998],[34.907151,-13.565425],[35.267956,-13.887834],[35.686845,-14.611046],[35.771905,-15.896859],[35.339063,-16.10744],[35.03381,-16.8013],[34.381292,-16.18356],[34.307291,-15.478641],[34.517666,-15.013709],[34.459633,-14.61301],[34.064825,-14.35995],[33.7897,-14.451831],[33.214025,-13.97186],[32.688165,-13.712858],[32.991764,-12.783871],[33.306422,-12.435778],[33.114289,-11.607198],[33.31531,-10.79655],[33.485688,-10.525559],[33.231388,-9.676722],[32.759375,-9.230599],[33.739729,-9.417151],[33.940838,-9.693674],[34.280006,-10.16],[34.559989,-11.52002]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MWI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              39.375,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              39.375,\n              -11.17840187\n            ],\n            [\n              39.375,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              39.375,\n              -16.63619188\n            ],\n            [\n              39.375,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              34.559989,\n              -11.52002\n            ],\n            [\n              34.280006,\n              -12.280025\n            ],\n            [\n              34.559989,\n              -13.579998\n            ],\n            [\n              34.907151,\n              -13.565425\n            ],\n            [\n              35.267956,\n              -13.887834\n            ],\n            [\n              35.686845,\n              -14.611046\n            ],\n            [\n              35.771905,\n              -15.896859\n            ],\n            [\n              35.339063,\n              -16.10744\n            ],\n            [\n              35.03381,\n              -16.8013\n            ],\n            [\n              34.381292,\n              -16.18356\n            ],\n            [\n              34.307291,\n              -15.478641\n            ],\n            [\n              34.517666,\n              -15.013709\n            ],\n            [\n              34.459633,\n              -14.61301\n            ],\n            [\n              34.064825,\n              -14.35995\n            ],\n            [\n              33.7897,\n              -14.451831\n            ],\n            [\n              33.214025,\n              -13.97186\n            ],\n            [\n              32.688165,\n              -13.712858\n            ],\n            [\n              32.991764,\n              -12.783871\n            ],\n            [\n              33.306422,\n              -12.435778\n            ],\n            [\n              33.114289,\n              -11.607198\n            ],\n            [\n              33.31531,\n              -10.79655\n            ],\n            [\n              33.485688,\n              -10.525559\n            ],\n            [\n              33.231388,\n              -9.676722\n            ],\n            [\n              32.759375,\n              -9.230599\n            ],\n            [\n              33.739729,\n              -9.417151\n            ],\n            [\n              33.940838,\n              -9.693674\n            ],\n            [\n              34.280006,\n              -10.16\n            ],\n            [\n              34.559989,\n              -11.52002\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/MYS.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"MYS\",\"properties\":{\"name\":\"Malaysia\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[101.075516,6.204867],[101.154219,5.691384],[101.814282,5.810808],[102.141187,6.221636],[102.371147,6.128205],[102.961705,5.524495],[103.381215,4.855001],[103.438575,4.181606],[103.332122,3.726698],[103.429429,3.382869],[103.502448,2.791019],[103.854674,2.515454],[104.247932,1.631141],[104.228811,1.293048],[103.519707,1.226334],[102.573615,1.967115],[101.390638,2.760814],[101.27354,3.270292],[100.695435,3.93914],[100.557408,4.76728],[100.196706,5.312493],[100.30626,6.040562],[100.085757,6.464489],[100.259596,6.642825],[101.075516,6.204867]]],[[[118.618321,4.478202],[117.882035,4.137551],[117.015214,4.306094],[115.865517,4.306559],[115.519078,3.169238],[115.134037,2.821482],[114.621355,1.430688],[113.80585,1.217549],[112.859809,1.49779],[112.380252,1.410121],[111.797548,0.904441],[111.159138,0.976478],[110.514061,0.773131],[109.830227,1.338136],[109.66326,2.006467],[110.396135,1.663775],[111.168853,1.850637],[111.370081,2.697303],[111.796928,2.885897],[112.995615,3.102395],[113.712935,3.893509],[114.204017,4.525874],[114.659596,4.007637],[114.869557,4.348314],[115.347461,4.316636],[115.4057,4.955228],[115.45071,5.44773],[116.220741,6.143191],[116.725103,6.924771],[117.129626,6.928053],[117.643393,6.422166],[117.689075,5.98749],[118.347691,5.708696],[119.181904,5.407836],[119.110694,5.016128],[118.439727,4.966519],[118.618321,4.478202]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/MYS_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              0\n            ],\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              106.875,\n              0\n            ],\n            [\n              101.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              101.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              0\n            ],\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              112.5,\n              5.61598582\n            ],\n            [\n              112.5,\n              0\n            ],\n            [\n              106.875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              0\n            ],\n            [\n              112.5,\n              11.17840187\n            ],\n            [\n              123.75,\n              11.17840187\n            ],\n            [\n              123.75,\n              0\n            ],\n            [\n              112.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              0\n            ],\n            [\n              95.625,\n              5.61598582\n            ],\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              101.25,\n              0\n            ],\n            [\n              95.625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              5.61598582\n            ],\n            [\n              95.625,\n              11.17840187\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              95.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                101.075516,\n                6.204867\n              ],\n              [\n                101.154219,\n                5.691384\n              ],\n              [\n                101.814282,\n                5.810808\n              ],\n              [\n                102.141187,\n                6.221636\n              ],\n              [\n                102.371147,\n                6.128205\n              ],\n              [\n                102.961705,\n                5.524495\n              ],\n              [\n                103.381215,\n                4.855001\n              ],\n              [\n                103.438575,\n                4.181606\n              ],\n              [\n                103.332122,\n                3.726698\n              ],\n              [\n                103.429429,\n                3.382869\n              ],\n              [\n                103.502448,\n                2.791019\n              ],\n              [\n                103.854674,\n                2.515454\n              ],\n              [\n                104.247932,\n                1.631141\n              ],\n              [\n                104.228811,\n                1.293048\n              ],\n              [\n                103.519707,\n                1.226334\n              ],\n              [\n                102.573615,\n                1.967115\n              ],\n              [\n                101.390638,\n                2.760814\n              ],\n              [\n                101.27354,\n                3.270292\n              ],\n              [\n                100.695435,\n                3.93914\n              ],\n              [\n                100.557408,\n                4.76728\n              ],\n              [\n                100.196706,\n                5.312493\n              ],\n              [\n                100.30626,\n                6.040562\n              ],\n              [\n                100.085757,\n                6.464489\n              ],\n              [\n                100.259596,\n                6.642825\n              ],\n              [\n                101.075516,\n                6.204867\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                118.618321,\n                4.478202\n              ],\n              [\n                117.882035,\n                4.137551\n              ],\n              [\n                117.015214,\n                4.306094\n              ],\n              [\n                115.865517,\n                4.306559\n              ],\n              [\n                115.519078,\n                3.169238\n              ],\n              [\n                115.134037,\n                2.821482\n              ],\n              [\n                114.621355,\n                1.430688\n              ],\n              [\n                113.80585,\n                1.217549\n              ],\n              [\n                112.859809,\n                1.49779\n              ],\n              [\n                112.380252,\n                1.410121\n              ],\n              [\n                111.797548,\n                0.904441\n              ],\n              [\n                111.159138,\n                0.976478\n              ],\n              [\n                110.514061,\n                0.773131\n              ],\n              [\n                109.830227,\n                1.338136\n              ],\n              [\n                109.66326,\n                2.006467\n              ],\n              [\n                110.396135,\n                1.663775\n              ],\n              [\n                111.168853,\n                1.850637\n              ],\n              [\n                111.370081,\n                2.697303\n              ],\n              [\n                111.796928,\n                2.885897\n              ],\n              [\n                112.995615,\n                3.102395\n              ],\n              [\n                113.712935,\n                3.893509\n              ],\n              [\n                114.204017,\n                4.525874\n              ],\n              [\n                114.659596,\n                4.007637\n              ],\n              [\n                114.869557,\n                4.348314\n              ],\n              [\n                115.347461,\n                4.316636\n              ],\n              [\n                115.4057,\n                4.955228\n              ],\n              [\n                115.45071,\n                5.44773\n              ],\n              [\n                116.220741,\n                6.143191\n              ],\n              [\n                116.725103,\n                6.924771\n              ],\n              [\n                117.129626,\n                6.928053\n              ],\n              [\n                117.643393,\n                6.422166\n              ],\n              [\n                117.689075,\n                5.98749\n              ],\n              [\n                118.347691,\n                5.708696\n              ],\n              [\n                119.181904,\n                5.407836\n              ],\n              [\n                119.110694,\n                5.016128\n              ],\n              [\n                118.439727,\n                4.966519\n              ],\n              [\n                118.618321,\n                4.478202\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NAM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NAM\",\"properties\":{\"name\":\"Namibia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[16.344977,-28.576705],[15.601818,-27.821247],[15.210472,-27.090956],[14.989711,-26.117372],[14.743214,-25.39292],[14.408144,-23.853014],[14.385717,-22.656653],[14.257714,-22.111208],[13.868642,-21.699037],[13.352498,-20.872834],[12.826845,-19.673166],[12.608564,-19.045349],[11.794919,-18.069129],[11.734199,-17.301889],[12.215461,-17.111668],[12.814081,-16.941343],[13.462362,-16.971212],[14.058501,-17.423381],[14.209707,-17.353101],[18.263309,-17.309951],[18.956187,-17.789095],[21.377176,-17.930636],[23.215048,-17.523116],[24.033862,-17.295843],[24.682349,-17.353411],[25.07695,-17.578823],[25.084443,-17.661816],[24.520705,-17.887125],[24.217365,-17.889347],[23.579006,-18.281261],[23.196858,-17.869038],[21.65504,-18.219146],[20.910641,-18.252219],[20.881134,-21.814327],[19.895458,-21.849157],[19.895768,-24.76779],[19.894734,-28.461105],[19.002127,-28.972443],[18.464899,-29.045462],[17.836152,-28.856378],[17.387497,-28.783514],[17.218929,-28.355943],[16.824017,-28.082162],[16.344977,-28.576705]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NAM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -21.94304553\n            ],\n            [\n              11.25,\n              -16.63619188\n            ],\n            [\n              16.875,\n              -16.63619188\n            ],\n            [\n              16.875,\n              -21.94304553\n            ],\n            [\n              11.25,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -31.95216224\n            ],\n            [\n              11.25,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -31.95216224\n            ],\n            [\n              11.25,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -21.94304553\n            ],\n            [\n              16.875,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              16.875,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.344977,\n              -28.576705\n            ],\n            [\n              15.601818,\n              -27.821247\n            ],\n            [\n              15.210472,\n              -27.090956\n            ],\n            [\n              14.989711,\n              -26.117372\n            ],\n            [\n              14.743214,\n              -25.39292\n            ],\n            [\n              14.408144,\n              -23.853014\n            ],\n            [\n              14.385717,\n              -22.656653\n            ],\n            [\n              14.257714,\n              -22.111208\n            ],\n            [\n              13.868642,\n              -21.699037\n            ],\n            [\n              13.352498,\n              -20.872834\n            ],\n            [\n              12.826845,\n              -19.673166\n            ],\n            [\n              12.608564,\n              -19.045349\n            ],\n            [\n              11.794919,\n              -18.069129\n            ],\n            [\n              11.734199,\n              -17.301889\n            ],\n            [\n              12.215461,\n              -17.111668\n            ],\n            [\n              12.814081,\n              -16.941343\n            ],\n            [\n              13.462362,\n              -16.971212\n            ],\n            [\n              14.058501,\n              -17.423381\n            ],\n            [\n              14.209707,\n              -17.353101\n            ],\n            [\n              18.263309,\n              -17.309951\n            ],\n            [\n              18.956187,\n              -17.789095\n            ],\n            [\n              21.377176,\n              -17.930636\n            ],\n            [\n              23.215048,\n              -17.523116\n            ],\n            [\n              24.033862,\n              -17.295843\n            ],\n            [\n              24.682349,\n              -17.353411\n            ],\n            [\n              25.07695,\n              -17.578823\n            ],\n            [\n              25.084443,\n              -17.661816\n            ],\n            [\n              24.520705,\n              -17.887125\n            ],\n            [\n              24.217365,\n              -17.889347\n            ],\n            [\n              23.579006,\n              -18.281261\n            ],\n            [\n              23.196858,\n              -17.869038\n            ],\n            [\n              21.65504,\n              -18.219146\n            ],\n            [\n              20.910641,\n              -18.252219\n            ],\n            [\n              20.881134,\n              -21.814327\n            ],\n            [\n              19.895458,\n              -21.849157\n            ],\n            [\n              19.895768,\n              -24.76779\n            ],\n            [\n              19.894734,\n              -28.461105\n            ],\n            [\n              19.002127,\n              -28.972443\n            ],\n            [\n              18.464899,\n              -29.045462\n            ],\n            [\n              17.836152,\n              -28.856378\n            ],\n            [\n              17.387497,\n              -28.783514\n            ],\n            [\n              17.218929,\n              -28.355943\n            ],\n            [\n              16.824017,\n              -28.082162\n            ],\n            [\n              16.344977,\n              -28.576705\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NCL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NCL\",\"properties\":{\"name\":\"New Caledonia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[165.77999,-21.080005],[166.599991,-21.700019],[167.120011,-22.159991],[166.740035,-22.399976],[166.189732,-22.129708],[165.474375,-21.679607],[164.829815,-21.14982],[164.167995,-20.444747],[164.029606,-20.105646],[164.459967,-20.120012],[165.020036,-20.459991],[165.460009,-20.800022],[165.77999,-21.080005]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NCL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              -21.94304553\n            ],\n            [\n              163.125,\n              -16.63619188\n            ],\n            [\n              168.75,\n              -16.63619188\n            ],\n            [\n              168.75,\n              -21.94304553\n            ],\n            [\n              163.125,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              -27.05912578\n            ],\n            [\n              163.125,\n              -21.94304553\n            ],\n            [\n              168.75,\n              -21.94304553\n            ],\n            [\n              168.75,\n              -27.05912578\n            ],\n            [\n              163.125,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              165.77999,\n              -21.080005\n            ],\n            [\n              166.599991,\n              -21.700019\n            ],\n            [\n              167.120011,\n              -22.159991\n            ],\n            [\n              166.740035,\n              -22.399976\n            ],\n            [\n              166.189732,\n              -22.129708\n            ],\n            [\n              165.474375,\n              -21.679607\n            ],\n            [\n              164.829815,\n              -21.14982\n            ],\n            [\n              164.167995,\n              -20.444747\n            ],\n            [\n              164.029606,\n              -20.105646\n            ],\n            [\n              164.459967,\n              -20.120012\n            ],\n            [\n              165.020036,\n              -20.459991\n            ],\n            [\n              165.460009,\n              -20.800022\n            ],\n            [\n              165.77999,\n              -21.080005\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NER.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NER\",\"properties\":{\"name\":\"Niger\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[2.154474,11.94015],[2.177108,12.625018],[1.024103,12.851826],[0.993046,13.33575],[0.429928,13.988733],[0.295646,14.444235],[0.374892,14.928908],[1.015783,14.968182],[1.385528,15.323561],[2.749993,15.409525],[3.638259,15.56812],[3.723422,16.184284],[4.27021,16.852227],[4.267419,19.155265],[5.677566,19.601207],[8.572893,21.565661],[11.999506,23.471668],[13.581425,23.040506],[14.143871,22.491289],[14.8513,22.86295],[15.096888,21.308519],[15.471077,21.048457],[15.487148,20.730415],[15.903247,20.387619],[15.685741,19.95718],[15.300441,17.92795],[15.247731,16.627306],[13.972202,15.684366],[13.540394,14.367134],[13.956699,13.996691],[13.954477,13.353449],[14.595781,13.330427],[14.495787,12.859396],[14.213531,12.802035],[14.181336,12.483657],[13.995353,12.461565],[13.318702,13.556356],[13.083987,13.596147],[12.302071,13.037189],[11.527803,13.32898],[10.989593,13.387323],[10.701032,13.246918],[10.114814,13.277252],[9.524928,12.851102],[9.014933,12.826659],[7.804671,13.343527],[7.330747,13.098038],[6.820442,13.115091],[6.445426,13.492768],[5.443058,13.865924],[4.368344,13.747482],[4.107946,13.531216],[3.967283,12.956109],[3.680634,12.552903],[3.61118,11.660167],[2.848643,12.235636],[2.490164,12.233052],[2.154474,11.94015]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NER_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              21.94304553\n            ],\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              11.25,\n              16.63619188\n            ],\n            [\n              16.875,\n              16.63619188\n            ],\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              11.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              16.63619188\n            ],\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              16.875,\n              21.94304553\n            ],\n            [\n              16.875,\n              16.63619188\n            ],\n            [\n              11.25,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              11.25,\n              27.05912578\n            ],\n            [\n              16.875,\n              27.05912578\n            ],\n            [\n              16.875,\n              21.94304553\n            ],\n            [\n              11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              21.94304553\n            ],\n            [\n              5.625,\n              27.05912578\n            ],\n            [\n              11.25,\n              27.05912578\n            ],\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              5.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              2.154474,\n              11.94015\n            ],\n            [\n              2.177108,\n              12.625018\n            ],\n            [\n              1.024103,\n              12.851826\n            ],\n            [\n              0.993046,\n              13.33575\n            ],\n            [\n              0.429928,\n              13.988733\n            ],\n            [\n              0.295646,\n              14.444235\n            ],\n            [\n              0.374892,\n              14.928908\n            ],\n            [\n              1.015783,\n              14.968182\n            ],\n            [\n              1.385528,\n              15.323561\n            ],\n            [\n              2.749993,\n              15.409525\n            ],\n            [\n              3.638259,\n              15.56812\n            ],\n            [\n              3.723422,\n              16.184284\n            ],\n            [\n              4.27021,\n              16.852227\n            ],\n            [\n              4.267419,\n              19.155265\n            ],\n            [\n              5.677566,\n              19.601207\n            ],\n            [\n              8.572893,\n              21.565661\n            ],\n            [\n              11.999506,\n              23.471668\n            ],\n            [\n              13.581425,\n              23.040506\n            ],\n            [\n              14.143871,\n              22.491289\n            ],\n            [\n              14.8513,\n              22.86295\n            ],\n            [\n              15.096888,\n              21.308519\n            ],\n            [\n              15.471077,\n              21.048457\n            ],\n            [\n              15.487148,\n              20.730415\n            ],\n            [\n              15.903247,\n              20.387619\n            ],\n            [\n              15.685741,\n              19.95718\n            ],\n            [\n              15.300441,\n              17.92795\n            ],\n            [\n              15.247731,\n              16.627306\n            ],\n            [\n              13.972202,\n              15.684366\n            ],\n            [\n              13.540394,\n              14.367134\n            ],\n            [\n              13.956699,\n              13.996691\n            ],\n            [\n              13.954477,\n              13.353449\n            ],\n            [\n              14.595781,\n              13.330427\n            ],\n            [\n              14.495787,\n              12.859396\n            ],\n            [\n              14.213531,\n              12.802035\n            ],\n            [\n              14.181336,\n              12.483657\n            ],\n            [\n              13.995353,\n              12.461565\n            ],\n            [\n              13.318702,\n              13.556356\n            ],\n            [\n              13.083987,\n              13.596147\n            ],\n            [\n              12.302071,\n              13.037189\n            ],\n            [\n              11.527803,\n              13.32898\n            ],\n            [\n              10.989593,\n              13.387323\n            ],\n            [\n              10.701032,\n              13.246918\n            ],\n            [\n              10.114814,\n              13.277252\n            ],\n            [\n              9.524928,\n              12.851102\n            ],\n            [\n              9.014933,\n              12.826659\n            ],\n            [\n              7.804671,\n              13.343527\n            ],\n            [\n              7.330747,\n              13.098038\n            ],\n            [\n              6.820442,\n              13.115091\n            ],\n            [\n              6.445426,\n              13.492768\n            ],\n            [\n              5.443058,\n              13.865924\n            ],\n            [\n              4.368344,\n              13.747482\n            ],\n            [\n              4.107946,\n              13.531216\n            ],\n            [\n              3.967283,\n              12.956109\n            ],\n            [\n              3.680634,\n              12.552903\n            ],\n            [\n              3.61118,\n              11.660167\n            ],\n            [\n              2.848643,\n              12.235636\n            ],\n            [\n              2.490164,\n              12.233052\n            ],\n            [\n              2.154474,\n              11.94015\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NGA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NGA\",\"properties\":{\"name\":\"Nigeria\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[8.500288,4.771983],[7.462108,4.412108],[7.082596,4.464689],[6.698072,4.240594],[5.898173,4.262453],[5.362805,4.887971],[5.033574,5.611802],[4.325607,6.270651],[3.57418,6.2583],[2.691702,6.258817],[2.749063,7.870734],[2.723793,8.506845],[2.912308,9.137608],[3.220352,9.444153],[3.705438,10.06321],[3.60007,10.332186],[3.797112,10.734746],[3.572216,11.327939],[3.61118,11.660167],[3.680634,12.552903],[3.967283,12.956109],[4.107946,13.531216],[4.368344,13.747482],[5.443058,13.865924],[6.445426,13.492768],[6.820442,13.115091],[7.330747,13.098038],[7.804671,13.343527],[9.014933,12.826659],[9.524928,12.851102],[10.114814,13.277252],[10.701032,13.246918],[10.989593,13.387323],[11.527803,13.32898],[12.302071,13.037189],[13.083987,13.596147],[13.318702,13.556356],[13.995353,12.461565],[14.181336,12.483657],[14.577178,12.085361],[14.468192,11.904752],[14.415379,11.572369],[13.57295,10.798566],[13.308676,10.160362],[13.1676,9.640626],[12.955468,9.417772],[12.753672,8.717763],[12.218872,8.305824],[12.063946,7.799808],[11.839309,7.397042],[11.745774,6.981383],[11.058788,6.644427],[10.497375,7.055358],[10.118277,7.03877],[9.522706,6.453482],[9.233163,6.444491],[8.757533,5.479666],[8.500288,4.771983]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NGA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              0\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              11.25,\n              0\n            ],\n            [\n              0,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              16.63619188\n            ],\n            [\n              5.625,\n              16.63619188\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              11.25,\n              16.63619188\n            ],\n            [\n              16.875,\n              16.63619188\n            ],\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              11.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              11.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              5.625,\n              16.63619188\n            ],\n            [\n              11.25,\n              16.63619188\n            ],\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              5.625,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              8.500288,\n              4.771983\n            ],\n            [\n              7.462108,\n              4.412108\n            ],\n            [\n              7.082596,\n              4.464689\n            ],\n            [\n              6.698072,\n              4.240594\n            ],\n            [\n              5.898173,\n              4.262453\n            ],\n            [\n              5.362805,\n              4.887971\n            ],\n            [\n              5.033574,\n              5.611802\n            ],\n            [\n              4.325607,\n              6.270651\n            ],\n            [\n              3.57418,\n              6.2583\n            ],\n            [\n              2.691702,\n              6.258817\n            ],\n            [\n              2.749063,\n              7.870734\n            ],\n            [\n              2.723793,\n              8.506845\n            ],\n            [\n              2.912308,\n              9.137608\n            ],\n            [\n              3.220352,\n              9.444153\n            ],\n            [\n              3.705438,\n              10.06321\n            ],\n            [\n              3.60007,\n              10.332186\n            ],\n            [\n              3.797112,\n              10.734746\n            ],\n            [\n              3.572216,\n              11.327939\n            ],\n            [\n              3.61118,\n              11.660167\n            ],\n            [\n              3.680634,\n              12.552903\n            ],\n            [\n              3.967283,\n              12.956109\n            ],\n            [\n              4.107946,\n              13.531216\n            ],\n            [\n              4.368344,\n              13.747482\n            ],\n            [\n              5.443058,\n              13.865924\n            ],\n            [\n              6.445426,\n              13.492768\n            ],\n            [\n              6.820442,\n              13.115091\n            ],\n            [\n              7.330747,\n              13.098038\n            ],\n            [\n              7.804671,\n              13.343527\n            ],\n            [\n              9.014933,\n              12.826659\n            ],\n            [\n              9.524928,\n              12.851102\n            ],\n            [\n              10.114814,\n              13.277252\n            ],\n            [\n              10.701032,\n              13.246918\n            ],\n            [\n              10.989593,\n              13.387323\n            ],\n            [\n              11.527803,\n              13.32898\n            ],\n            [\n              12.302071,\n              13.037189\n            ],\n            [\n              13.083987,\n              13.596147\n            ],\n            [\n              13.318702,\n              13.556356\n            ],\n            [\n              13.995353,\n              12.461565\n            ],\n            [\n              14.181336,\n              12.483657\n            ],\n            [\n              14.577178,\n              12.085361\n            ],\n            [\n              14.468192,\n              11.904752\n            ],\n            [\n              14.415379,\n              11.572369\n            ],\n            [\n              13.57295,\n              10.798566\n            ],\n            [\n              13.308676,\n              10.160362\n            ],\n            [\n              13.1676,\n              9.640626\n            ],\n            [\n              12.955468,\n              9.417772\n            ],\n            [\n              12.753672,\n              8.717763\n            ],\n            [\n              12.218872,\n              8.305824\n            ],\n            [\n              12.063946,\n              7.799808\n            ],\n            [\n              11.839309,\n              7.397042\n            ],\n            [\n              11.745774,\n              6.981383\n            ],\n            [\n              11.058788,\n              6.644427\n            ],\n            [\n              10.497375,\n              7.055358\n            ],\n            [\n              10.118277,\n              7.03877\n            ],\n            [\n              9.522706,\n              6.453482\n            ],\n            [\n              9.233163,\n              6.444491\n            ],\n            [\n              8.757533,\n              5.479666\n            ],\n            [\n              8.500288,\n              4.771983\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NIC.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NIC\",\"properties\":{\"name\":\"Nicaragua\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-85.71254,11.088445],[-86.058488,11.403439],[-86.52585,11.806877],[-86.745992,12.143962],[-87.167516,12.458258],[-87.668493,12.90991],[-87.557467,13.064552],[-87.392386,12.914018],[-87.316654,12.984686],[-87.005769,13.025794],[-86.880557,13.254204],[-86.733822,13.263093],[-86.755087,13.754845],[-86.520708,13.778487],[-86.312142,13.771356],[-86.096264,14.038187],[-85.801295,13.836055],[-85.698665,13.960078],[-85.514413,14.079012],[-85.165365,14.35437],[-85.148751,14.560197],[-85.052787,14.551541],[-84.924501,14.790493],[-84.820037,14.819587],[-84.649582,14.666805],[-84.449336,14.621614],[-84.228342,14.748764],[-83.975721,14.749436],[-83.628585,14.880074],[-83.489989,15.016267],[-83.147219,14.995829],[-83.233234,14.899866],[-83.284162,14.676624],[-83.182126,14.310703],[-83.4125,13.970078],[-83.519832,13.567699],[-83.552207,13.127054],[-83.498515,12.869292],[-83.473323,12.419087],[-83.626104,12.32085],[-83.719613,11.893124],[-83.650858,11.629032],[-83.85547,11.373311],[-83.808936,11.103044],[-83.655612,10.938764],[-83.895054,10.726839],[-84.190179,10.79345],[-84.355931,10.999226],[-84.673069,11.082657],[-84.903003,10.952303],[-85.561852,11.217119],[-85.71254,11.088445]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NIC_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -78.75,\n              16.63619188\n            ],\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -84.375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              5.61598582\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -78.75,\n              5.61598582\n            ],\n            [\n              -84.375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -90,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              5.61598582\n            ],\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -84.375,\n              5.61598582\n            ],\n            [\n              -90,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -85.71254,\n              11.088445\n            ],\n            [\n              -86.058488,\n              11.403439\n            ],\n            [\n              -86.52585,\n              11.806877\n            ],\n            [\n              -86.745992,\n              12.143962\n            ],\n            [\n              -87.167516,\n              12.458258\n            ],\n            [\n              -87.668493,\n              12.90991\n            ],\n            [\n              -87.557467,\n              13.064552\n            ],\n            [\n              -87.392386,\n              12.914018\n            ],\n            [\n              -87.316654,\n              12.984686\n            ],\n            [\n              -87.005769,\n              13.025794\n            ],\n            [\n              -86.880557,\n              13.254204\n            ],\n            [\n              -86.733822,\n              13.263093\n            ],\n            [\n              -86.755087,\n              13.754845\n            ],\n            [\n              -86.520708,\n              13.778487\n            ],\n            [\n              -86.312142,\n              13.771356\n            ],\n            [\n              -86.096264,\n              14.038187\n            ],\n            [\n              -85.801295,\n              13.836055\n            ],\n            [\n              -85.698665,\n              13.960078\n            ],\n            [\n              -85.514413,\n              14.079012\n            ],\n            [\n              -85.165365,\n              14.35437\n            ],\n            [\n              -85.148751,\n              14.560197\n            ],\n            [\n              -85.052787,\n              14.551541\n            ],\n            [\n              -84.924501,\n              14.790493\n            ],\n            [\n              -84.820037,\n              14.819587\n            ],\n            [\n              -84.649582,\n              14.666805\n            ],\n            [\n              -84.449336,\n              14.621614\n            ],\n            [\n              -84.228342,\n              14.748764\n            ],\n            [\n              -83.975721,\n              14.749436\n            ],\n            [\n              -83.628585,\n              14.880074\n            ],\n            [\n              -83.489989,\n              15.016267\n            ],\n            [\n              -83.147219,\n              14.995829\n            ],\n            [\n              -83.233234,\n              14.899866\n            ],\n            [\n              -83.284162,\n              14.676624\n            ],\n            [\n              -83.182126,\n              14.310703\n            ],\n            [\n              -83.4125,\n              13.970078\n            ],\n            [\n              -83.519832,\n              13.567699\n            ],\n            [\n              -83.552207,\n              13.127054\n            ],\n            [\n              -83.498515,\n              12.869292\n            ],\n            [\n              -83.473323,\n              12.419087\n            ],\n            [\n              -83.626104,\n              12.32085\n            ],\n            [\n              -83.719613,\n              11.893124\n            ],\n            [\n              -83.650858,\n              11.629032\n            ],\n            [\n              -83.85547,\n              11.373311\n            ],\n            [\n              -83.808936,\n              11.103044\n            ],\n            [\n              -83.655612,\n              10.938764\n            ],\n            [\n              -83.895054,\n              10.726839\n            ],\n            [\n              -84.190179,\n              10.79345\n            ],\n            [\n              -84.355931,\n              10.999226\n            ],\n            [\n              -84.673069,\n              11.082657\n            ],\n            [\n              -84.903003,\n              10.952303\n            ],\n            [\n              -85.561852,\n              11.217119\n            ],\n            [\n              -85.71254,\n              11.088445\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NLD.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NLD\",\"properties\":{\"name\":\"Netherlands\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[6.074183,53.510403],[6.90514,53.482162],[7.092053,53.144043],[6.84287,52.22844],[6.589397,51.852029],[5.988658,51.851616],[6.156658,50.803721],[5.606976,51.037298],[4.973991,51.475024],[4.047071,51.267259],[3.314971,51.345755],[3.830289,51.620545],[4.705997,53.091798],[6.074183,53.510403]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NLD_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              48.92249926\n            ],\n            [\n              0,\n              55.77657302\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              0,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              6.074183,\n              53.510403\n            ],\n            [\n              6.90514,\n              53.482162\n            ],\n            [\n              7.092053,\n              53.144043\n            ],\n            [\n              6.84287,\n              52.22844\n            ],\n            [\n              6.589397,\n              51.852029\n            ],\n            [\n              5.988658,\n              51.851616\n            ],\n            [\n              6.156658,\n              50.803721\n            ],\n            [\n              5.606976,\n              51.037298\n            ],\n            [\n              4.973991,\n              51.475024\n            ],\n            [\n              4.047071,\n              51.267259\n            ],\n            [\n              3.314971,\n              51.345755\n            ],\n            [\n              3.830289,\n              51.620545\n            ],\n            [\n              4.705997,\n              53.091798\n            ],\n            [\n              6.074183,\n              53.510403\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NOR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NOR\",\"properties\":{\"name\":\"Norway\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[28.165547,71.185474],[31.293418,70.453788],[30.005435,70.186259],[31.101079,69.55808],[29.399581,69.156916],[28.59193,69.064777],[29.015573,69.766491],[27.732292,70.164193],[26.179622,69.825299],[25.689213,69.092114],[24.735679,68.649557],[23.66205,68.891247],[22.356238,68.841741],[21.244936,69.370443],[20.645593,69.106247],[20.025269,69.065139],[19.87856,68.407194],[17.993868,68.567391],[17.729182,68.010552],[16.768879,68.013937],[16.108712,67.302456],[15.108411,66.193867],[13.55569,64.787028],[13.919905,64.445421],[13.571916,64.049114],[12.579935,64.066219],[11.930569,63.128318],[11.992064,61.800362],[12.631147,61.293572],[12.300366,60.117933],[11.468272,59.432393],[11.027369,58.856149],[10.356557,59.469807],[8.382,58.313288],[7.048748,58.078884],[5.665835,58.588155],[5.308234,59.663232],[4.992078,61.970998],[5.9129,62.614473],[8.553411,63.454008],[10.527709,64.486038],[12.358347,65.879726],[14.761146,67.810642],[16.435927,68.563205],[19.184028,69.817444],[21.378416,70.255169],[23.023742,70.202072],[24.546543,71.030497],[26.37005,70.986262],[28.165547,71.185474]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625,80.40734],[27.407506,80.056406],[25.924651,79.517834],[23.024466,79.400012],[20.075188,79.566823],[19.897266,79.842362],[18.462264,79.85988],[17.368015,80.318896],[20.455992,80.598156],[21.907945,80.357679],[22.919253,80.657144],[25.447625,80.40734]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NOR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              55.77657302\n            ],\n            [\n              0,\n              61.60639637\n            ],\n            [\n              11.25,\n              61.60639637\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              0,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              61.60639637\n            ],\n            [\n              0,\n              64.1681069\n            ],\n            [\n              5.625,\n              64.1681069\n            ],\n            [\n              5.625,\n              61.60639637\n            ],\n            [\n              0,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              58.81374172\n            ],\n            [\n              11.25,\n              61.60639637\n            ],\n            [\n              16.875,\n              61.60639637\n            ],\n            [\n              16.875,\n              58.81374172\n            ],\n            [\n              11.25,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              61.60639637\n            ],\n            [\n              11.25,\n              64.1681069\n            ],\n            [\n              16.875,\n              64.1681069\n            ],\n            [\n              16.875,\n              61.60639637\n            ],\n            [\n              11.25,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              64.1681069\n            ],\n            [\n              11.25,\n              66.51326044\n            ],\n            [\n              16.875,\n              66.51326044\n            ],\n            [\n              16.875,\n              64.1681069\n            ],\n            [\n              11.25,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              66.51326044\n            ],\n            [\n              11.25,\n              70.61261424\n            ],\n            [\n              22.5,\n              70.61261424\n            ],\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              11.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              75.49715732\n            ],\n            [\n              11.25,\n              76.84081641\n            ],\n            [\n              16.875,\n              76.84081641\n            ],\n            [\n              16.875,\n              75.49715732\n            ],\n            [\n              11.25,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              76.84081641\n            ],\n            [\n              11.25,\n              79.17133464\n            ],\n            [\n              22.5,\n              79.17133464\n            ],\n            [\n              22.5,\n              76.84081641\n            ],\n            [\n              11.25,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              79.17133464\n            ],\n            [\n              11.25,\n              80.1787135\n            ],\n            [\n              16.875,\n              80.1787135\n            ],\n            [\n              16.875,\n              79.17133464\n            ],\n            [\n              11.25,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              75.49715732\n            ],\n            [\n              16.875,\n              76.84081641\n            ],\n            [\n              22.5,\n              76.84081641\n            ],\n            [\n              22.5,\n              75.49715732\n            ],\n            [\n              16.875,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              79.17133464\n            ],\n            [\n              16.875,\n              80.1787135\n            ],\n            [\n              22.5,\n              80.1787135\n            ],\n            [\n              22.5,\n              79.17133464\n            ],\n            [\n              16.875,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              80.1787135\n            ],\n            [\n              16.875,\n              81.09321385\n            ],\n            [\n              22.5,\n              81.09321385\n            ],\n            [\n              22.5,\n              80.1787135\n            ],\n            [\n              16.875,\n              80.1787135\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              22.5,\n              68.65655498\n            ],\n            [\n              28.125,\n              68.65655498\n            ],\n            [\n              28.125,\n              66.51326044\n            ],\n            [\n              22.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              68.65655498\n            ],\n            [\n              22.5,\n              70.61261424\n            ],\n            [\n              28.125,\n              70.61261424\n            ],\n            [\n              28.125,\n              68.65655498\n            ],\n            [\n              22.5,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              70.61261424\n            ],\n            [\n              22.5,\n              72.39570571\n            ],\n            [\n              28.125,\n              72.39570571\n            ],\n            [\n              28.125,\n              70.61261424\n            ],\n            [\n              22.5,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              76.84081641\n            ],\n            [\n              22.5,\n              78.06198919\n            ],\n            [\n              28.125,\n              78.06198919\n            ],\n            [\n              28.125,\n              76.84081641\n            ],\n            [\n              22.5,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              78.06198919\n            ],\n            [\n              22.5,\n              79.17133464\n            ],\n            [\n              28.125,\n              79.17133464\n            ],\n            [\n              28.125,\n              78.06198919\n            ],\n            [\n              22.5,\n              78.06198919\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              79.17133464\n            ],\n            [\n              22.5,\n              80.1787135\n            ],\n            [\n              28.125,\n              80.1787135\n            ],\n            [\n              28.125,\n              79.17133464\n            ],\n            [\n              22.5,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              80.1787135\n            ],\n            [\n              22.5,\n              81.09321385\n            ],\n            [\n              28.125,\n              81.09321385\n            ],\n            [\n              28.125,\n              80.1787135\n            ],\n            [\n              22.5,\n              80.1787135\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              68.65655498\n            ],\n            [\n              28.125,\n              70.61261424\n            ],\n            [\n              33.75,\n              70.61261424\n            ],\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              28.125,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              70.61261424\n            ],\n            [\n              28.125,\n              72.39570571\n            ],\n            [\n              33.75,\n              72.39570571\n            ],\n            [\n              33.75,\n              70.61261424\n            ],\n            [\n              28.125,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              61.60639637\n            ],\n            [\n              5.625,\n              64.1681069\n            ],\n            [\n              11.25,\n              64.1681069\n            ],\n            [\n              11.25,\n              61.60639637\n            ],\n            [\n              5.625,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              64.1681069\n            ],\n            [\n              5.625,\n              66.51326044\n            ],\n            [\n              11.25,\n              66.51326044\n            ],\n            [\n              11.25,\n              64.1681069\n            ],\n            [\n              5.625,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              78.06198919\n            ],\n            [\n              5.625,\n              79.17133464\n            ],\n            [\n              11.25,\n              79.17133464\n            ],\n            [\n              11.25,\n              78.06198919\n            ],\n            [\n              5.625,\n              78.06198919\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              79.17133464\n            ],\n            [\n              5.625,\n              80.1787135\n            ],\n            [\n              11.25,\n              80.1787135\n            ],\n            [\n              11.25,\n              79.17133464\n            ],\n            [\n              5.625,\n              79.17133464\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                28.165547,\n                71.185474\n              ],\n              [\n                31.293418,\n                70.453788\n              ],\n              [\n                30.005435,\n                70.186259\n              ],\n              [\n                31.101079,\n                69.55808\n              ],\n              [\n                29.399581,\n                69.156916\n              ],\n              [\n                28.59193,\n                69.064777\n              ],\n              [\n                29.015573,\n                69.766491\n              ],\n              [\n                27.732292,\n                70.164193\n              ],\n              [\n                26.179622,\n                69.825299\n              ],\n              [\n                25.689213,\n                69.092114\n              ],\n              [\n                24.735679,\n                68.649557\n              ],\n              [\n                23.66205,\n                68.891247\n              ],\n              [\n                22.356238,\n                68.841741\n              ],\n              [\n                21.244936,\n                69.370443\n              ],\n              [\n                20.645593,\n                69.106247\n              ],\n              [\n                20.025269,\n                69.065139\n              ],\n              [\n                19.87856,\n                68.407194\n              ],\n              [\n                17.993868,\n                68.567391\n              ],\n              [\n                17.729182,\n                68.010552\n              ],\n              [\n                16.768879,\n                68.013937\n              ],\n              [\n                16.108712,\n                67.302456\n              ],\n              [\n                15.108411,\n                66.193867\n              ],\n              [\n                13.55569,\n                64.787028\n              ],\n              [\n                13.919905,\n                64.445421\n              ],\n              [\n                13.571916,\n                64.049114\n              ],\n              [\n                12.579935,\n                64.066219\n              ],\n              [\n                11.930569,\n                63.128318\n              ],\n              [\n                11.992064,\n                61.800362\n              ],\n              [\n                12.631147,\n                61.293572\n              ],\n              [\n                12.300366,\n                60.117933\n              ],\n              [\n                11.468272,\n                59.432393\n              ],\n              [\n                11.027369,\n                58.856149\n              ],\n              [\n                10.356557,\n                59.469807\n              ],\n              [\n                8.382,\n                58.313288\n              ],\n              [\n                7.048748,\n                58.078884\n              ],\n              [\n                5.665835,\n                58.588155\n              ],\n              [\n                5.308234,\n                59.663232\n              ],\n              [\n                4.992078,\n                61.970998\n              ],\n              [\n                5.9129,\n                62.614473\n              ],\n              [\n                8.553411,\n                63.454008\n              ],\n              [\n                10.527709,\n                64.486038\n              ],\n              [\n                12.358347,\n                65.879726\n              ],\n              [\n                14.761146,\n                67.810642\n              ],\n              [\n                16.435927,\n                68.563205\n              ],\n              [\n                19.184028,\n                69.817444\n              ],\n              [\n                21.378416,\n                70.255169\n              ],\n              [\n                23.023742,\n                70.202072\n              ],\n              [\n                24.546543,\n                71.030497\n              ],\n              [\n                26.37005,\n                70.986262\n              ],\n              [\n                28.165547,\n                71.185474\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                24.72412,\n                77.85385\n              ],\n              [\n                22.49032,\n                77.44493\n              ],\n              [\n                20.72601,\n                77.67704\n              ],\n              [\n                21.41611,\n                77.93504\n              ],\n              [\n                20.8119,\n                78.25463\n              ],\n              [\n                22.88426,\n                78.45494\n              ],\n              [\n                23.28134,\n                78.07954\n              ],\n              [\n                24.72412,\n                77.85385\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                18.25183,\n                79.70175\n              ],\n              [\n                21.54383,\n                78.95611\n              ],\n              [\n                19.02737,\n                78.5626\n              ],\n              [\n                18.47172,\n                77.82669\n              ],\n              [\n                17.59441,\n                77.63796\n              ],\n              [\n                17.1182,\n                76.80941\n              ],\n              [\n                15.91315,\n                76.77045\n              ],\n              [\n                13.76259,\n                77.38035\n              ],\n              [\n                14.66956,\n                77.73565\n              ],\n              [\n                13.1706,\n                78.02493\n              ],\n              [\n                11.22231,\n                78.8693\n              ],\n              [\n                10.44453,\n                79.65239\n              ],\n              [\n                13.17077,\n                80.01046\n              ],\n              [\n                13.71852,\n                79.66039\n              ],\n              [\n                15.14282,\n                79.67431\n              ],\n              [\n                15.52255,\n                80.01608\n              ],\n              [\n                16.99085,\n                80.05086\n              ],\n              [\n                18.25183,\n                79.70175\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                25.447625,\n                80.40734\n              ],\n              [\n                27.407506,\n                80.056406\n              ],\n              [\n                25.924651,\n                79.517834\n              ],\n              [\n                23.024466,\n                79.400012\n              ],\n              [\n                20.075188,\n                79.566823\n              ],\n              [\n                19.897266,\n                79.842362\n              ],\n              [\n                18.462264,\n                79.85988\n              ],\n              [\n                17.368015,\n                80.318896\n              ],\n              [\n                20.455992,\n                80.598156\n              ],\n              [\n                21.907945,\n                80.357679\n              ],\n              [\n                22.919253,\n                80.657144\n              ],\n              [\n                25.447625,\n                80.40734\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NPL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NPL\",\"properties\":{\"name\":\"Nepal\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[88.120441,27.876542],[88.043133,27.445819],[88.174804,26.810405],[88.060238,26.414615],[87.227472,26.397898],[86.024393,26.630985],[85.251779,26.726198],[84.675018,27.234901],[83.304249,27.364506],[81.999987,27.925479],[81.057203,28.416095],[80.088425,28.79447],[80.476721,29.729865],[81.111256,30.183481],[81.525804,30.422717],[82.327513,30.115268],[83.337115,29.463732],[83.898993,29.320226],[84.23458,28.839894],[85.011638,28.642774],[85.82332,28.203576],[86.954517,27.974262],[88.120441,27.876542]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NPL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              27.05912578\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              84.375,\n              31.95216224\n            ],\n            [\n              84.375,\n              27.05912578\n            ],\n            [\n              78.75,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              21.94304553\n            ],\n            [\n              84.375,\n              27.05912578\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              90,\n              21.94304553\n            ],\n            [\n              84.375,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              27.05912578\n            ],\n            [\n              84.375,\n              31.95216224\n            ],\n            [\n              90,\n              31.95216224\n            ],\n            [\n              90,\n              27.05912578\n            ],\n            [\n              84.375,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              88.120441,\n              27.876542\n            ],\n            [\n              88.043133,\n              27.445819\n            ],\n            [\n              88.174804,\n              26.810405\n            ],\n            [\n              88.060238,\n              26.414615\n            ],\n            [\n              87.227472,\n              26.397898\n            ],\n            [\n              86.024393,\n              26.630985\n            ],\n            [\n              85.251779,\n              26.726198\n            ],\n            [\n              84.675018,\n              27.234901\n            ],\n            [\n              83.304249,\n              27.364506\n            ],\n            [\n              81.999987,\n              27.925479\n            ],\n            [\n              81.057203,\n              28.416095\n            ],\n            [\n              80.088425,\n              28.79447\n            ],\n            [\n              80.476721,\n              29.729865\n            ],\n            [\n              81.111256,\n              30.183481\n            ],\n            [\n              81.525804,\n              30.422717\n            ],\n            [\n              82.327513,\n              30.115268\n            ],\n            [\n              83.337115,\n              29.463732\n            ],\n            [\n              83.898993,\n              29.320226\n            ],\n            [\n              84.23458,\n              28.839894\n            ],\n            [\n              85.011638,\n              28.642774\n            ],\n            [\n              85.82332,\n              28.203576\n            ],\n            [\n              86.954517,\n              27.974262\n            ],\n            [\n              88.120441,\n              27.876542\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/NZL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"NZL\",\"properties\":{\"name\":\"New Zealand\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[173.020375,-40.919052],[173.247234,-41.331999],[173.958405,-40.926701],[174.247587,-41.349155],[174.248517,-41.770008],[173.876447,-42.233184],[173.22274,-42.970038],[172.711246,-43.372288],[173.080113,-43.853344],[172.308584,-43.865694],[171.452925,-44.242519],[171.185138,-44.897104],[170.616697,-45.908929],[169.831422,-46.355775],[169.332331,-46.641235],[168.411354,-46.619945],[167.763745,-46.290197],[166.676886,-46.219917],[166.509144,-45.852705],[167.046424,-45.110941],[168.303763,-44.123973],[168.949409,-43.935819],[169.667815,-43.555326],[170.52492,-43.031688],[171.12509,-42.512754],[171.569714,-41.767424],[171.948709,-41.514417],[172.097227,-40.956104],[172.79858,-40.493962],[173.020375,-40.919052]]],[[[174.612009,-36.156397],[175.336616,-37.209098],[175.357596,-36.526194],[175.808887,-36.798942],[175.95849,-37.555382],[176.763195,-37.881253],[177.438813,-37.961248],[178.010354,-37.579825],[178.517094,-37.695373],[178.274731,-38.582813],[177.97046,-39.166343],[177.206993,-39.145776],[176.939981,-39.449736],[177.032946,-39.879943],[176.885824,-40.065978],[176.508017,-40.604808],[176.01244,-41.289624],[175.239567,-41.688308],[175.067898,-41.425895],[174.650973,-41.281821],[175.22763,-40.459236],[174.900157,-39.908933],[173.824047,-39.508854],[173.852262,-39.146602],[174.574802,-38.797683],[174.743474,-38.027808],[174.697017,-37.381129],[174.292028,-36.711092],[174.319004,-36.534824],[173.840997,-36.121981],[173.054171,-35.237125],[172.636005,-34.529107],[173.007042,-34.450662],[173.551298,-35.006183],[174.32939,-35.265496],[174.612009,-36.156397]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/NZL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              -45.08903556\n            ],\n            [\n              163.125,\n              -40.97989807\n            ],\n            [\n              168.75,\n              -40.97989807\n            ],\n            [\n              168.75,\n              -45.08903556\n            ],\n            [\n              163.125,\n              -45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              -48.92249926\n            ],\n            [\n              163.125,\n              -45.08903556\n            ],\n            [\n              168.75,\n              -45.08903556\n            ],\n            [\n              168.75,\n              -48.92249926\n            ],\n            [\n              163.125,\n              -48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              -40.97989807\n            ],\n            [\n              168.75,\n              -31.95216224\n            ],\n            [\n              180,\n              -31.95216224\n            ],\n            [\n              180,\n              -40.97989807\n            ],\n            [\n              168.75,\n              -40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              -45.08903556\n            ],\n            [\n              168.75,\n              -40.97989807\n            ],\n            [\n              174.375,\n              -40.97989807\n            ],\n            [\n              174.375,\n              -45.08903556\n            ],\n            [\n              168.75,\n              -45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              -48.92249926\n            ],\n            [\n              168.75,\n              -45.08903556\n            ],\n            [\n              174.375,\n              -45.08903556\n            ],\n            [\n              174.375,\n              -48.92249926\n            ],\n            [\n              168.75,\n              -48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              174.375,\n              -45.08903556\n            ],\n            [\n              174.375,\n              -40.97989807\n            ],\n            [\n              180,\n              -40.97989807\n            ],\n            [\n              180,\n              -45.08903556\n            ],\n            [\n              174.375,\n              -45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                173.020375,\n                -40.919052\n              ],\n              [\n                173.247234,\n                -41.331999\n              ],\n              [\n                173.958405,\n                -40.926701\n              ],\n              [\n                174.247587,\n                -41.349155\n              ],\n              [\n                174.248517,\n                -41.770008\n              ],\n              [\n                173.876447,\n                -42.233184\n              ],\n              [\n                173.22274,\n                -42.970038\n              ],\n              [\n                172.711246,\n                -43.372288\n              ],\n              [\n                173.080113,\n                -43.853344\n              ],\n              [\n                172.308584,\n                -43.865694\n              ],\n              [\n                171.452925,\n                -44.242519\n              ],\n              [\n                171.185138,\n                -44.897104\n              ],\n              [\n                170.616697,\n                -45.908929\n              ],\n              [\n                169.831422,\n                -46.355775\n              ],\n              [\n                169.332331,\n                -46.641235\n              ],\n              [\n                168.411354,\n                -46.619945\n              ],\n              [\n                167.763745,\n                -46.290197\n              ],\n              [\n                166.676886,\n                -46.219917\n              ],\n              [\n                166.509144,\n                -45.852705\n              ],\n              [\n                167.046424,\n                -45.110941\n              ],\n              [\n                168.303763,\n                -44.123973\n              ],\n              [\n                168.949409,\n                -43.935819\n              ],\n              [\n                169.667815,\n                -43.555326\n              ],\n              [\n                170.52492,\n                -43.031688\n              ],\n              [\n                171.12509,\n                -42.512754\n              ],\n              [\n                171.569714,\n                -41.767424\n              ],\n              [\n                171.948709,\n                -41.514417\n              ],\n              [\n                172.097227,\n                -40.956104\n              ],\n              [\n                172.79858,\n                -40.493962\n              ],\n              [\n                173.020375,\n                -40.919052\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                174.612009,\n                -36.156397\n              ],\n              [\n                175.336616,\n                -37.209098\n              ],\n              [\n                175.357596,\n                -36.526194\n              ],\n              [\n                175.808887,\n                -36.798942\n              ],\n              [\n                175.95849,\n                -37.555382\n              ],\n              [\n                176.763195,\n                -37.881253\n              ],\n              [\n                177.438813,\n                -37.961248\n              ],\n              [\n                178.010354,\n                -37.579825\n              ],\n              [\n                178.517094,\n                -37.695373\n              ],\n              [\n                178.274731,\n                -38.582813\n              ],\n              [\n                177.97046,\n                -39.166343\n              ],\n              [\n                177.206993,\n                -39.145776\n              ],\n              [\n                176.939981,\n                -39.449736\n              ],\n              [\n                177.032946,\n                -39.879943\n              ],\n              [\n                176.885824,\n                -40.065978\n              ],\n              [\n                176.508017,\n                -40.604808\n              ],\n              [\n                176.01244,\n                -41.289624\n              ],\n              [\n                175.239567,\n                -41.688308\n              ],\n              [\n                175.067898,\n                -41.425895\n              ],\n              [\n                174.650973,\n                -41.281821\n              ],\n              [\n                175.22763,\n                -40.459236\n              ],\n              [\n                174.900157,\n                -39.908933\n              ],\n              [\n                173.824047,\n                -39.508854\n              ],\n              [\n                173.852262,\n                -39.146602\n              ],\n              [\n                174.574802,\n                -38.797683\n              ],\n              [\n                174.743474,\n                -38.027808\n              ],\n              [\n                174.697017,\n                -37.381129\n              ],\n              [\n                174.292028,\n                -36.711092\n              ],\n              [\n                174.319004,\n                -36.534824\n              ],\n              [\n                173.840997,\n                -36.121981\n              ],\n              [\n                173.054171,\n                -35.237125\n              ],\n              [\n                172.636005,\n                -34.529107\n              ],\n              [\n                173.007042,\n                -34.450662\n              ],\n              [\n                173.551298,\n                -35.006183\n              ],\n              [\n                174.32939,\n                -35.265496\n              ],\n              [\n                174.612009,\n                -36.156397\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/OMN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"OMN\",\"properties\":{\"name\":\"Oman\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[58.861141,21.114035],[58.487986,20.428986],[58.034318,20.481437],[57.826373,20.243002],[57.665762,19.736005],[57.7887,19.06757],[57.694391,18.94471],[57.234264,18.947991],[56.609651,18.574267],[56.512189,18.087113],[56.283521,17.876067],[55.661492,17.884128],[55.269939,17.632309],[55.2749,17.228354],[54.791002,16.950697],[54.239253,17.044981],[53.570508,16.707663],[53.108573,16.651051],[52.782184,17.349742],[52.00001,19.000003],[54.999982,19.999994],[55.666659,22.000001],[55.208341,22.70833],[55.234489,23.110993],[55.525841,23.524869],[55.528632,23.933604],[55.981214,24.130543],[55.804119,24.269604],[55.886233,24.920831],[56.396847,24.924732],[56.84514,24.241673],[57.403453,23.878594],[58.136948,23.747931],[58.729211,23.565668],[59.180502,22.992395],[59.450098,22.660271],[59.80806,22.533612],[59.806148,22.310525],[59.442191,21.714541],[59.282408,21.433886],[58.861141,21.114035]]],[[[56.391421,25.895991],[56.261042,25.714606],[56.070821,26.055464],[56.362017,26.395934],[56.485679,26.309118],[56.391421,25.895991]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/OMN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              16.63619188\n            ],\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              56.25,\n              16.63619188\n            ],\n            [\n              50.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              50.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              16.63619188\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              61.875,\n              21.94304553\n            ],\n            [\n              61.875,\n              16.63619188\n            ],\n            [\n              56.25,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              61.875,\n              27.05912578\n            ],\n            [\n              61.875,\n              21.94304553\n            ],\n            [\n              56.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                58.861141,\n                21.114035\n              ],\n              [\n                58.487986,\n                20.428986\n              ],\n              [\n                58.034318,\n                20.481437\n              ],\n              [\n                57.826373,\n                20.243002\n              ],\n              [\n                57.665762,\n                19.736005\n              ],\n              [\n                57.7887,\n                19.06757\n              ],\n              [\n                57.694391,\n                18.94471\n              ],\n              [\n                57.234264,\n                18.947991\n              ],\n              [\n                56.609651,\n                18.574267\n              ],\n              [\n                56.512189,\n                18.087113\n              ],\n              [\n                56.283521,\n                17.876067\n              ],\n              [\n                55.661492,\n                17.884128\n              ],\n              [\n                55.269939,\n                17.632309\n              ],\n              [\n                55.2749,\n                17.228354\n              ],\n              [\n                54.791002,\n                16.950697\n              ],\n              [\n                54.239253,\n                17.044981\n              ],\n              [\n                53.570508,\n                16.707663\n              ],\n              [\n                53.108573,\n                16.651051\n              ],\n              [\n                52.782184,\n                17.349742\n              ],\n              [\n                52.00001,\n                19.000003\n              ],\n              [\n                54.999982,\n                19.999994\n              ],\n              [\n                55.666659,\n                22.000001\n              ],\n              [\n                55.208341,\n                22.70833\n              ],\n              [\n                55.234489,\n                23.110993\n              ],\n              [\n                55.525841,\n                23.524869\n              ],\n              [\n                55.528632,\n                23.933604\n              ],\n              [\n                55.981214,\n                24.130543\n              ],\n              [\n                55.804119,\n                24.269604\n              ],\n              [\n                55.886233,\n                24.920831\n              ],\n              [\n                56.396847,\n                24.924732\n              ],\n              [\n                56.84514,\n                24.241673\n              ],\n              [\n                57.403453,\n                23.878594\n              ],\n              [\n                58.136948,\n                23.747931\n              ],\n              [\n                58.729211,\n                23.565668\n              ],\n              [\n                59.180502,\n                22.992395\n              ],\n              [\n                59.450098,\n                22.660271\n              ],\n              [\n                59.80806,\n                22.533612\n              ],\n              [\n                59.806148,\n                22.310525\n              ],\n              [\n                59.442191,\n                21.714541\n              ],\n              [\n                59.282408,\n                21.433886\n              ],\n              [\n                58.861141,\n                21.114035\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                56.391421,\n                25.895991\n              ],\n              [\n                56.261042,\n                25.714606\n              ],\n              [\n                56.070821,\n                26.055464\n              ],\n              [\n                56.362017,\n                26.395934\n              ],\n              [\n                56.485679,\n                26.309118\n              ],\n              [\n                56.391421,\n                25.895991\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PAK.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PAK\",\"properties\":{\"name\":\"Pakistan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[75.158028,37.133031],[75.896897,36.666806],[76.192848,35.898403],[77.837451,35.49401],[76.871722,34.653544],[75.757061,34.504923],[74.240203,34.748887],[73.749948,34.317699],[74.104294,33.441473],[74.451559,32.7649],[75.258642,32.271105],[74.405929,31.692639],[74.42138,30.979815],[73.450638,29.976413],[72.823752,28.961592],[71.777666,27.91318],[70.616496,27.989196],[69.514393,26.940966],[70.168927,26.491872],[70.282873,25.722229],[70.844699,25.215102],[71.04324,24.356524],[68.842599,24.359134],[68.176645,23.691965],[67.443667,23.944844],[67.145442,24.663611],[66.372828,25.425141],[64.530408,25.237039],[62.905701,25.218409],[61.497363,25.078237],[61.874187,26.239975],[63.316632,26.756532],[63.233898,27.217047],[62.755426,27.378923],[62.72783,28.259645],[61.771868,28.699334],[61.369309,29.303276],[60.874248,29.829239],[62.549857,29.318572],[63.550261,29.468331],[64.148002,29.340819],[64.350419,29.560031],[65.046862,29.472181],[66.346473,29.887943],[66.381458,30.738899],[66.938891,31.304911],[67.683394,31.303154],[67.792689,31.58293],[68.556932,31.71331],[68.926677,31.620189],[69.317764,31.901412],[69.262522,32.501944],[69.687147,33.105499],[70.323594,33.358533],[69.930543,34.02012],[70.881803,33.988856],[71.156773,34.348911],[71.115019,34.733126],[71.613076,35.153203],[71.498768,35.650563],[71.262348,36.074388],[71.846292,36.509942],[72.920025,36.720007],[74.067552,36.836176],[74.575893,37.020841],[75.158028,37.133031]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PAK_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              56.25,\n              31.95216224\n            ],\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              67.5,\n              21.94304553\n            ],\n            [\n              56.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              21.94304553\n            ],\n            [\n              67.5,\n              27.05912578\n            ],\n            [\n              73.125,\n              27.05912578\n            ],\n            [\n              73.125,\n              21.94304553\n            ],\n            [\n              67.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              27.05912578\n            ],\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              73.125,\n              31.95216224\n            ],\n            [\n              73.125,\n              27.05912578\n            ],\n            [\n              67.5,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              67.5,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              27.05912578\n            ],\n            [\n              73.125,\n              31.95216224\n            ],\n            [\n              78.75,\n              31.95216224\n            ],\n            [\n              78.75,\n              27.05912578\n            ],\n            [\n              73.125,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              75.158028,\n              37.133031\n            ],\n            [\n              75.896897,\n              36.666806\n            ],\n            [\n              76.192848,\n              35.898403\n            ],\n            [\n              77.837451,\n              35.49401\n            ],\n            [\n              76.871722,\n              34.653544\n            ],\n            [\n              75.757061,\n              34.504923\n            ],\n            [\n              74.240203,\n              34.748887\n            ],\n            [\n              73.749948,\n              34.317699\n            ],\n            [\n              74.104294,\n              33.441473\n            ],\n            [\n              74.451559,\n              32.7649\n            ],\n            [\n              75.258642,\n              32.271105\n            ],\n            [\n              74.405929,\n              31.692639\n            ],\n            [\n              74.42138,\n              30.979815\n            ],\n            [\n              73.450638,\n              29.976413\n            ],\n            [\n              72.823752,\n              28.961592\n            ],\n            [\n              71.777666,\n              27.91318\n            ],\n            [\n              70.616496,\n              27.989196\n            ],\n            [\n              69.514393,\n              26.940966\n            ],\n            [\n              70.168927,\n              26.491872\n            ],\n            [\n              70.282873,\n              25.722229\n            ],\n            [\n              70.844699,\n              25.215102\n            ],\n            [\n              71.04324,\n              24.356524\n            ],\n            [\n              68.842599,\n              24.359134\n            ],\n            [\n              68.176645,\n              23.691965\n            ],\n            [\n              67.443667,\n              23.944844\n            ],\n            [\n              67.145442,\n              24.663611\n            ],\n            [\n              66.372828,\n              25.425141\n            ],\n            [\n              64.530408,\n              25.237039\n            ],\n            [\n              62.905701,\n              25.218409\n            ],\n            [\n              61.497363,\n              25.078237\n            ],\n            [\n              61.874187,\n              26.239975\n            ],\n            [\n              63.316632,\n              26.756532\n            ],\n            [\n              63.233898,\n              27.217047\n            ],\n            [\n              62.755426,\n              27.378923\n            ],\n            [\n              62.72783,\n              28.259645\n            ],\n            [\n              61.771868,\n              28.699334\n            ],\n            [\n              61.369309,\n              29.303276\n            ],\n            [\n              60.874248,\n              29.829239\n            ],\n            [\n              62.549857,\n              29.318572\n            ],\n            [\n              63.550261,\n              29.468331\n            ],\n            [\n              64.148002,\n              29.340819\n            ],\n            [\n              64.350419,\n              29.560031\n            ],\n            [\n              65.046862,\n              29.472181\n            ],\n            [\n              66.346473,\n              29.887943\n            ],\n            [\n              66.381458,\n              30.738899\n            ],\n            [\n              66.938891,\n              31.304911\n            ],\n            [\n              67.683394,\n              31.303154\n            ],\n            [\n              67.792689,\n              31.58293\n            ],\n            [\n              68.556932,\n              31.71331\n            ],\n            [\n              68.926677,\n              31.620189\n            ],\n            [\n              69.317764,\n              31.901412\n            ],\n            [\n              69.262522,\n              32.501944\n            ],\n            [\n              69.687147,\n              33.105499\n            ],\n            [\n              70.323594,\n              33.358533\n            ],\n            [\n              69.930543,\n              34.02012\n            ],\n            [\n              70.881803,\n              33.988856\n            ],\n            [\n              71.156773,\n              34.348911\n            ],\n            [\n              71.115019,\n              34.733126\n            ],\n            [\n              71.613076,\n              35.153203\n            ],\n            [\n              71.498768,\n              35.650563\n            ],\n            [\n              71.262348,\n              36.074388\n            ],\n            [\n              71.846292,\n              36.509942\n            ],\n            [\n              72.920025,\n              36.720007\n            ],\n            [\n              74.067552,\n              36.836176\n            ],\n            [\n              74.575893,\n              37.020841\n            ],\n            [\n              75.158028,\n              37.133031\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PAN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PAN\",\"properties\":{\"name\":\"Panama\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.881571,7.223771],[-78.214936,7.512255],[-78.429161,8.052041],[-78.182096,8.319182],[-78.435465,8.387705],[-78.622121,8.718124],[-79.120307,8.996092],[-79.557877,8.932375],[-79.760578,8.584515],[-80.164481,8.333316],[-80.382659,8.298409],[-80.480689,8.090308],[-80.00369,7.547524],[-80.276671,7.419754],[-80.421158,7.271572],[-80.886401,7.220541],[-81.059543,7.817921],[-81.189716,7.647906],[-81.519515,7.70661],[-81.721311,8.108963],[-82.131441,8.175393],[-82.390934,8.292362],[-82.820081,8.290864],[-82.850958,8.073823],[-82.965783,8.225028],[-82.913176,8.423517],[-82.829771,8.626295],[-82.868657,8.807266],[-82.719183,8.925709],[-82.927155,9.07433],[-82.932891,9.476812],[-82.546196,9.566135],[-82.187123,9.207449],[-82.207586,8.995575],[-81.808567,8.950617],[-81.714154,9.031955],[-81.439287,8.786234],[-80.947302,8.858504],[-80.521901,9.111072],[-79.9146,9.312765],[-79.573303,9.61161],[-79.021192,9.552931],[-79.05845,9.454565],[-78.500888,9.420459],[-78.055928,9.24773],[-77.729514,8.946844],[-77.353361,8.670505],[-77.474723,8.524286],[-77.242566,7.935278],[-77.431108,7.638061],[-77.753414,7.70984],[-77.881571,7.223771]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PAN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              5.61598582\n            ],\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -73.125,\n              11.17840187\n            ],\n            [\n              -73.125,\n              5.61598582\n            ],\n            [\n              -78.75,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              5.61598582\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -78.75,\n              5.61598582\n            ],\n            [\n              -84.375,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -77.881571,\n              7.223771\n            ],\n            [\n              -78.214936,\n              7.512255\n            ],\n            [\n              -78.429161,\n              8.052041\n            ],\n            [\n              -78.182096,\n              8.319182\n            ],\n            [\n              -78.435465,\n              8.387705\n            ],\n            [\n              -78.622121,\n              8.718124\n            ],\n            [\n              -79.120307,\n              8.996092\n            ],\n            [\n              -79.557877,\n              8.932375\n            ],\n            [\n              -79.760578,\n              8.584515\n            ],\n            [\n              -80.164481,\n              8.333316\n            ],\n            [\n              -80.382659,\n              8.298409\n            ],\n            [\n              -80.480689,\n              8.090308\n            ],\n            [\n              -80.00369,\n              7.547524\n            ],\n            [\n              -80.276671,\n              7.419754\n            ],\n            [\n              -80.421158,\n              7.271572\n            ],\n            [\n              -80.886401,\n              7.220541\n            ],\n            [\n              -81.059543,\n              7.817921\n            ],\n            [\n              -81.189716,\n              7.647906\n            ],\n            [\n              -81.519515,\n              7.70661\n            ],\n            [\n              -81.721311,\n              8.108963\n            ],\n            [\n              -82.131441,\n              8.175393\n            ],\n            [\n              -82.390934,\n              8.292362\n            ],\n            [\n              -82.820081,\n              8.290864\n            ],\n            [\n              -82.850958,\n              8.073823\n            ],\n            [\n              -82.965783,\n              8.225028\n            ],\n            [\n              -82.913176,\n              8.423517\n            ],\n            [\n              -82.829771,\n              8.626295\n            ],\n            [\n              -82.868657,\n              8.807266\n            ],\n            [\n              -82.719183,\n              8.925709\n            ],\n            [\n              -82.927155,\n              9.07433\n            ],\n            [\n              -82.932891,\n              9.476812\n            ],\n            [\n              -82.546196,\n              9.566135\n            ],\n            [\n              -82.187123,\n              9.207449\n            ],\n            [\n              -82.207586,\n              8.995575\n            ],\n            [\n              -81.808567,\n              8.950617\n            ],\n            [\n              -81.714154,\n              9.031955\n            ],\n            [\n              -81.439287,\n              8.786234\n            ],\n            [\n              -80.947302,\n              8.858504\n            ],\n            [\n              -80.521901,\n              9.111072\n            ],\n            [\n              -79.9146,\n              9.312765\n            ],\n            [\n              -79.573303,\n              9.61161\n            ],\n            [\n              -79.021192,\n              9.552931\n            ],\n            [\n              -79.05845,\n              9.454565\n            ],\n            [\n              -78.500888,\n              9.420459\n            ],\n            [\n              -78.055928,\n              9.24773\n            ],\n            [\n              -77.729514,\n              8.946844\n            ],\n            [\n              -77.353361,\n              8.670505\n            ],\n            [\n              -77.474723,\n              8.524286\n            ],\n            [\n              -77.242566,\n              7.935278\n            ],\n            [\n              -77.431108,\n              7.638061\n            ],\n            [\n              -77.753414,\n              7.70984\n            ],\n            [\n              -77.881571,\n              7.223771\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PER.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PER\",\"properties\":{\"name\":\"Peru\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.590424,-17.580012],[-69.858444,-18.092694],[-70.372572,-18.347975],[-71.37525,-17.773799],[-71.462041,-17.363488],[-73.44453,-16.359363],[-75.237883,-15.265683],[-76.009205,-14.649286],[-76.423469,-13.823187],[-76.259242,-13.535039],[-77.106192,-12.222716],[-78.092153,-10.377712],[-79.036953,-8.386568],[-79.44592,-7.930833],[-79.760578,-7.194341],[-80.537482,-6.541668],[-81.249996,-6.136834],[-80.926347,-5.690557],[-81.410943,-4.736765],[-81.09967,-4.036394],[-80.302561,-3.404856],[-80.184015,-3.821162],[-80.469295,-4.059287],[-80.442242,-4.425724],[-80.028908,-4.346091],[-79.624979,-4.454198],[-79.205289,-4.959129],[-78.639897,-4.547784],[-78.450684,-3.873097],[-77.837905,-3.003021],[-76.635394,-2.608678],[-75.544996,-1.56161],[-75.233723,-0.911417],[-75.373223,-0.152032],[-75.106625,-0.057205],[-74.441601,-0.53082],[-74.122395,-1.002833],[-73.659504,-1.260491],[-73.070392,-2.308954],[-72.325787,-2.434218],[-71.774761,-2.16979],[-71.413646,-2.342802],[-70.813476,-2.256865],[-70.047709,-2.725156],[-70.692682,-3.742872],[-70.394044,-3.766591],[-69.893635,-4.298187],[-70.794769,-4.251265],[-70.928843,-4.401591],[-71.748406,-4.593983],[-72.891928,-5.274561],[-72.964507,-5.741251],[-73.219711,-6.089189],[-73.120027,-6.629931],[-73.724487,-6.918595],[-73.723401,-7.340999],[-73.987235,-7.52383],[-73.571059,-8.424447],[-73.015383,-9.032833],[-73.226713,-9.462213],[-72.563033,-9.520194],[-72.184891,-10.053598],[-71.302412,-10.079436],[-70.481894,-9.490118],[-70.548686,-11.009147],[-70.093752,-11.123972],[-69.529678,-10.951734],[-68.66508,-12.5613],[-68.88008,-12.899729],[-68.929224,-13.602684],[-68.948887,-14.453639],[-69.339535,-14.953195],[-69.160347,-15.323974],[-69.389764,-15.660129],[-68.959635,-16.500698],[-69.590424,-17.580012]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PER_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -16.63619188\n            ],\n            [\n              -73.125,\n              -11.17840187\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -67.5,\n              -16.63619188\n            ],\n            [\n              -73.125,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              -21.94304553\n            ],\n            [\n              -73.125,\n              -16.63619188\n            ],\n            [\n              -67.5,\n              -16.63619188\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -73.125,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -11.17840187\n            ],\n            [\n              -78.75,\n              0\n            ],\n            [\n              -67.5,\n              0\n            ],\n            [\n              -67.5,\n              -11.17840187\n            ],\n            [\n              -78.75,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              -16.63619188\n            ],\n            [\n              -78.75,\n              -11.17840187\n            ],\n            [\n              -73.125,\n              -11.17840187\n            ],\n            [\n              -73.125,\n              -16.63619188\n            ],\n            [\n              -78.75,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              -11.17840187\n            ],\n            [\n              -84.375,\n              -5.61598582\n            ],\n            [\n              -78.75,\n              -5.61598582\n            ],\n            [\n              -78.75,\n              -11.17840187\n            ],\n            [\n              -84.375,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              -5.61598582\n            ],\n            [\n              -84.375,\n              0\n            ],\n            [\n              -78.75,\n              0\n            ],\n            [\n              -78.75,\n              -5.61598582\n            ],\n            [\n              -84.375,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -69.590424,\n              -17.580012\n            ],\n            [\n              -69.858444,\n              -18.092694\n            ],\n            [\n              -70.372572,\n              -18.347975\n            ],\n            [\n              -71.37525,\n              -17.773799\n            ],\n            [\n              -71.462041,\n              -17.363488\n            ],\n            [\n              -73.44453,\n              -16.359363\n            ],\n            [\n              -75.237883,\n              -15.265683\n            ],\n            [\n              -76.009205,\n              -14.649286\n            ],\n            [\n              -76.423469,\n              -13.823187\n            ],\n            [\n              -76.259242,\n              -13.535039\n            ],\n            [\n              -77.106192,\n              -12.222716\n            ],\n            [\n              -78.092153,\n              -10.377712\n            ],\n            [\n              -79.036953,\n              -8.386568\n            ],\n            [\n              -79.44592,\n              -7.930833\n            ],\n            [\n              -79.760578,\n              -7.194341\n            ],\n            [\n              -80.537482,\n              -6.541668\n            ],\n            [\n              -81.249996,\n              -6.136834\n            ],\n            [\n              -80.926347,\n              -5.690557\n            ],\n            [\n              -81.410943,\n              -4.736765\n            ],\n            [\n              -81.09967,\n              -4.036394\n            ],\n            [\n              -80.302561,\n              -3.404856\n            ],\n            [\n              -80.184015,\n              -3.821162\n            ],\n            [\n              -80.469295,\n              -4.059287\n            ],\n            [\n              -80.442242,\n              -4.425724\n            ],\n            [\n              -80.028908,\n              -4.346091\n            ],\n            [\n              -79.624979,\n              -4.454198\n            ],\n            [\n              -79.205289,\n              -4.959129\n            ],\n            [\n              -78.639897,\n              -4.547784\n            ],\n            [\n              -78.450684,\n              -3.873097\n            ],\n            [\n              -77.837905,\n              -3.003021\n            ],\n            [\n              -76.635394,\n              -2.608678\n            ],\n            [\n              -75.544996,\n              -1.56161\n            ],\n            [\n              -75.233723,\n              -0.911417\n            ],\n            [\n              -75.373223,\n              -0.152032\n            ],\n            [\n              -75.106625,\n              -0.057205\n            ],\n            [\n              -74.441601,\n              -0.53082\n            ],\n            [\n              -74.122395,\n              -1.002833\n            ],\n            [\n              -73.659504,\n              -1.260491\n            ],\n            [\n              -73.070392,\n              -2.308954\n            ],\n            [\n              -72.325787,\n              -2.434218\n            ],\n            [\n              -71.774761,\n              -2.16979\n            ],\n            [\n              -71.413646,\n              -2.342802\n            ],\n            [\n              -70.813476,\n              -2.256865\n            ],\n            [\n              -70.047709,\n              -2.725156\n            ],\n            [\n              -70.692682,\n              -3.742872\n            ],\n            [\n              -70.394044,\n              -3.766591\n            ],\n            [\n              -69.893635,\n              -4.298187\n            ],\n            [\n              -70.794769,\n              -4.251265\n            ],\n            [\n              -70.928843,\n              -4.401591\n            ],\n            [\n              -71.748406,\n              -4.593983\n            ],\n            [\n              -72.891928,\n              -5.274561\n            ],\n            [\n              -72.964507,\n              -5.741251\n            ],\n            [\n              -73.219711,\n              -6.089189\n            ],\n            [\n              -73.120027,\n              -6.629931\n            ],\n            [\n              -73.724487,\n              -6.918595\n            ],\n            [\n              -73.723401,\n              -7.340999\n            ],\n            [\n              -73.987235,\n              -7.52383\n            ],\n            [\n              -73.571059,\n              -8.424447\n            ],\n            [\n              -73.015383,\n              -9.032833\n            ],\n            [\n              -73.226713,\n              -9.462213\n            ],\n            [\n              -72.563033,\n              -9.520194\n            ],\n            [\n              -72.184891,\n              -10.053598\n            ],\n            [\n              -71.302412,\n              -10.079436\n            ],\n            [\n              -70.481894,\n              -9.490118\n            ],\n            [\n              -70.548686,\n              -11.009147\n            ],\n            [\n              -70.093752,\n              -11.123972\n            ],\n            [\n              -69.529678,\n              -10.951734\n            ],\n            [\n              -68.66508,\n              -12.5613\n            ],\n            [\n              -68.88008,\n              -12.899729\n            ],\n            [\n              -68.929224,\n              -13.602684\n            ],\n            [\n              -68.948887,\n              -14.453639\n            ],\n            [\n              -69.339535,\n              -14.953195\n            ],\n            [\n              -69.160347,\n              -15.323974\n            ],\n            [\n              -69.389764,\n              -15.660129\n            ],\n            [\n              -68.959635,\n              -16.500698\n            ],\n            [\n              -69.590424,\n              -17.580012\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PHL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PHL\",\"properties\":{\"name\":\"Philippines\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[126.376814,8.414706],[126.478513,7.750354],[126.537424,7.189381],[126.196773,6.274294],[125.831421,7.293715],[125.363852,6.786485],[125.683161,6.049657],[125.396512,5.581003],[124.219788,6.161355],[123.93872,6.885136],[124.243662,7.36061],[123.610212,7.833527],[123.296071,7.418876],[122.825506,7.457375],[122.085499,6.899424],[121.919928,7.192119],[122.312359,8.034962],[122.942398,8.316237],[123.487688,8.69301],[123.841154,8.240324],[124.60147,8.514158],[124.764612,8.960409],[125.471391,8.986997],[125.412118,9.760335],[126.222714,9.286074],[126.306637,8.782487],[126.376814,8.414706]]],[[[123.982438,10.278779],[123.623183,9.950091],[123.309921,9.318269],[122.995883,9.022189],[122.380055,9.713361],[122.586089,9.981045],[122.837081,10.261157],[122.947411,10.881868],[123.49885,10.940624],[123.337774,10.267384],[124.077936,11.232726],[123.982438,10.278779]]],[[[118.504581,9.316383],[117.174275,8.3675],[117.664477,9.066889],[118.386914,9.6845],[118.987342,10.376292],[119.511496,11.369668],[119.689677,10.554291],[119.029458,10.003653],[118.504581,9.316383]]],[[[121.883548,11.891755],[122.483821,11.582187],[123.120217,11.58366],[123.100838,11.165934],[122.637714,10.741308],[122.00261,10.441017],[121.967367,10.905691],[122.03837,11.415841],[121.883548,11.891755]]],[[[125.502552,12.162695],[125.783465,11.046122],[125.011884,11.311455],[125.032761,10.975816],[125.277449,10.358722],[124.801819,10.134679],[124.760168,10.837995],[124.459101,10.88993],[124.302522,11.495371],[124.891013,11.415583],[124.87799,11.79419],[124.266762,12.557761],[125.227116,12.535721],[125.502552,12.162695]]],[[[121.527394,13.06959],[121.26219,12.20556],[120.833896,12.704496],[120.323436,13.466413],[121.180128,13.429697],[121.527394,13.06959]]],[[[121.321308,18.504065],[121.937601,18.218552],[122.246006,18.47895],[122.336957,18.224883],[122.174279,17.810283],[122.515654,17.093505],[122.252311,16.262444],[121.662786,15.931018],[121.50507,15.124814],[121.728829,14.328376],[122.258925,14.218202],[122.701276,14.336541],[123.950295,13.782131],[123.855107,13.237771],[124.181289,12.997527],[124.077419,12.536677],[123.298035,13.027526],[122.928652,13.55292],[122.671355,13.185836],[122.03465,13.784482],[121.126385,13.636687],[120.628637,13.857656],[120.679384,14.271016],[120.991819,14.525393],[120.693336,14.756671],[120.564145,14.396279],[120.070429,14.970869],[119.920929,15.406347],[119.883773,16.363704],[120.286488,16.034629],[120.390047,17.599081],[120.715867,18.505227],[121.321308,18.504065]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PHL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              5.61598582\n            ],\n            [\n              112.5,\n              11.17840187\n            ],\n            [\n              118.125,\n              11.17840187\n            ],\n            [\n              118.125,\n              5.61598582\n            ],\n            [\n              112.5,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              11.17840187\n            ],\n            [\n              118.125,\n              16.63619188\n            ],\n            [\n              123.75,\n              16.63619188\n            ],\n            [\n              123.75,\n              11.17840187\n            ],\n            [\n              118.125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              16.63619188\n            ],\n            [\n              118.125,\n              21.94304553\n            ],\n            [\n              123.75,\n              21.94304553\n            ],\n            [\n              123.75,\n              16.63619188\n            ],\n            [\n              118.125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              5.61598582\n            ],\n            [\n              118.125,\n              11.17840187\n            ],\n            [\n              123.75,\n              11.17840187\n            ],\n            [\n              123.75,\n              5.61598582\n            ],\n            [\n              118.125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              0\n            ],\n            [\n              123.75,\n              5.61598582\n            ],\n            [\n              129.375,\n              5.61598582\n            ],\n            [\n              129.375,\n              0\n            ],\n            [\n              123.75,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              11.17840187\n            ],\n            [\n              123.75,\n              16.63619188\n            ],\n            [\n              129.375,\n              16.63619188\n            ],\n            [\n              129.375,\n              11.17840187\n            ],\n            [\n              123.75,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              5.61598582\n            ],\n            [\n              123.75,\n              11.17840187\n            ],\n            [\n              129.375,\n              11.17840187\n            ],\n            [\n              129.375,\n              5.61598582\n            ],\n            [\n              123.75,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                126.376814,\n                8.414706\n              ],\n              [\n                126.478513,\n                7.750354\n              ],\n              [\n                126.537424,\n                7.189381\n              ],\n              [\n                126.196773,\n                6.274294\n              ],\n              [\n                125.831421,\n                7.293715\n              ],\n              [\n                125.363852,\n                6.786485\n              ],\n              [\n                125.683161,\n                6.049657\n              ],\n              [\n                125.396512,\n                5.581003\n              ],\n              [\n                124.219788,\n                6.161355\n              ],\n              [\n                123.93872,\n                6.885136\n              ],\n              [\n                124.243662,\n                7.36061\n              ],\n              [\n                123.610212,\n                7.833527\n              ],\n              [\n                123.296071,\n                7.418876\n              ],\n              [\n                122.825506,\n                7.457375\n              ],\n              [\n                122.085499,\n                6.899424\n              ],\n              [\n                121.919928,\n                7.192119\n              ],\n              [\n                122.312359,\n                8.034962\n              ],\n              [\n                122.942398,\n                8.316237\n              ],\n              [\n                123.487688,\n                8.69301\n              ],\n              [\n                123.841154,\n                8.240324\n              ],\n              [\n                124.60147,\n                8.514158\n              ],\n              [\n                124.764612,\n                8.960409\n              ],\n              [\n                125.471391,\n                8.986997\n              ],\n              [\n                125.412118,\n                9.760335\n              ],\n              [\n                126.222714,\n                9.286074\n              ],\n              [\n                126.306637,\n                8.782487\n              ],\n              [\n                126.376814,\n                8.414706\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                123.982438,\n                10.278779\n              ],\n              [\n                123.623183,\n                9.950091\n              ],\n              [\n                123.309921,\n                9.318269\n              ],\n              [\n                122.995883,\n                9.022189\n              ],\n              [\n                122.380055,\n                9.713361\n              ],\n              [\n                122.586089,\n                9.981045\n              ],\n              [\n                122.837081,\n                10.261157\n              ],\n              [\n                122.947411,\n                10.881868\n              ],\n              [\n                123.49885,\n                10.940624\n              ],\n              [\n                123.337774,\n                10.267384\n              ],\n              [\n                124.077936,\n                11.232726\n              ],\n              [\n                123.982438,\n                10.278779\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                118.504581,\n                9.316383\n              ],\n              [\n                117.174275,\n                8.3675\n              ],\n              [\n                117.664477,\n                9.066889\n              ],\n              [\n                118.386914,\n                9.6845\n              ],\n              [\n                118.987342,\n                10.376292\n              ],\n              [\n                119.511496,\n                11.369668\n              ],\n              [\n                119.689677,\n                10.554291\n              ],\n              [\n                119.029458,\n                10.003653\n              ],\n              [\n                118.504581,\n                9.316383\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                121.883548,\n                11.891755\n              ],\n              [\n                122.483821,\n                11.582187\n              ],\n              [\n                123.120217,\n                11.58366\n              ],\n              [\n                123.100838,\n                11.165934\n              ],\n              [\n                122.637714,\n                10.741308\n              ],\n              [\n                122.00261,\n                10.441017\n              ],\n              [\n                121.967367,\n                10.905691\n              ],\n              [\n                122.03837,\n                11.415841\n              ],\n              [\n                121.883548,\n                11.891755\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                125.502552,\n                12.162695\n              ],\n              [\n                125.783465,\n                11.046122\n              ],\n              [\n                125.011884,\n                11.311455\n              ],\n              [\n                125.032761,\n                10.975816\n              ],\n              [\n                125.277449,\n                10.358722\n              ],\n              [\n                124.801819,\n                10.134679\n              ],\n              [\n                124.760168,\n                10.837995\n              ],\n              [\n                124.459101,\n                10.88993\n              ],\n              [\n                124.302522,\n                11.495371\n              ],\n              [\n                124.891013,\n                11.415583\n              ],\n              [\n                124.87799,\n                11.79419\n              ],\n              [\n                124.266762,\n                12.557761\n              ],\n              [\n                125.227116,\n                12.535721\n              ],\n              [\n                125.502552,\n                12.162695\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                121.527394,\n                13.06959\n              ],\n              [\n                121.26219,\n                12.20556\n              ],\n              [\n                120.833896,\n                12.704496\n              ],\n              [\n                120.323436,\n                13.466413\n              ],\n              [\n                121.180128,\n                13.429697\n              ],\n              [\n                121.527394,\n                13.06959\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                121.321308,\n                18.504065\n              ],\n              [\n                121.937601,\n                18.218552\n              ],\n              [\n                122.246006,\n                18.47895\n              ],\n              [\n                122.336957,\n                18.224883\n              ],\n              [\n                122.174279,\n                17.810283\n              ],\n              [\n                122.515654,\n                17.093505\n              ],\n              [\n                122.252311,\n                16.262444\n              ],\n              [\n                121.662786,\n                15.931018\n              ],\n              [\n                121.50507,\n                15.124814\n              ],\n              [\n                121.728829,\n                14.328376\n              ],\n              [\n                122.258925,\n                14.218202\n              ],\n              [\n                122.701276,\n                14.336541\n              ],\n              [\n                123.950295,\n                13.782131\n              ],\n              [\n                123.855107,\n                13.237771\n              ],\n              [\n                124.181289,\n                12.997527\n              ],\n              [\n                124.077419,\n                12.536677\n              ],\n              [\n                123.298035,\n                13.027526\n              ],\n              [\n                122.928652,\n                13.55292\n              ],\n              [\n                122.671355,\n                13.185836\n              ],\n              [\n                122.03465,\n                13.784482\n              ],\n              [\n                121.126385,\n                13.636687\n              ],\n              [\n                120.628637,\n                13.857656\n              ],\n              [\n                120.679384,\n                14.271016\n              ],\n              [\n                120.991819,\n                14.525393\n              ],\n              [\n                120.693336,\n                14.756671\n              ],\n              [\n                120.564145,\n                14.396279\n              ],\n              [\n                120.070429,\n                14.970869\n              ],\n              [\n                119.920929,\n                15.406347\n              ],\n              [\n                119.883773,\n                16.363704\n              ],\n              [\n                120.286488,\n                16.034629\n              ],\n              [\n                120.390047,\n                17.599081\n              ],\n              [\n                120.715867,\n                18.505227\n              ],\n              [\n                121.321308,\n                18.504065\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PNG.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PNG\",\"properties\":{\"name\":\"Papua New Guinea\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[155.880026,-6.819997],[155.599991,-6.919991],[155.166994,-6.535931],[154.729192,-5.900828],[154.514114,-5.139118],[154.652504,-5.042431],[154.759991,-5.339984],[155.062918,-5.566792],[155.547746,-6.200655],[156.019965,-6.540014],[155.880026,-6.819997]]],[[[151.982796,-5.478063],[151.459107,-5.56028],[151.30139,-5.840728],[150.754447,-6.083763],[150.241197,-6.317754],[149.709963,-6.316513],[148.890065,-6.02604],[148.318937,-5.747142],[148.401826,-5.437756],[149.298412,-5.583742],[149.845562,-5.505503],[149.99625,-5.026101],[150.139756,-5.001348],[150.236908,-5.53222],[150.807467,-5.455842],[151.089672,-5.113693],[151.647881,-4.757074],[151.537862,-4.167807],[152.136792,-4.14879],[152.338743,-4.312966],[152.318693,-4.867661],[151.982796,-5.478063]]],[[[147.191874,-7.388024],[148.084636,-8.044108],[148.734105,-9.104664],[149.306835,-9.071436],[149.266631,-9.514406],[150.038728,-9.684318],[149.738798,-9.872937],[150.801628,-10.293687],[150.690575,-10.582713],[150.028393,-10.652476],[149.78231,-10.393267],[148.923138,-10.280923],[147.913018,-10.130441],[147.135443,-9.492444],[146.567881,-8.942555],[146.048481,-8.067414],[144.744168,-7.630128],[143.897088,-7.91533],[143.286376,-8.245491],[143.413913,-8.983069],[142.628431,-9.326821],[142.068259,-9.159596],[141.033852,-9.117893],[141.017057,-5.859022],[141.00021,-2.600151],[142.735247,-3.289153],[144.583971,-3.861418],[145.27318,-4.373738],[145.829786,-4.876498],[145.981922,-5.465609],[147.648073,-6.083659],[147.891108,-6.614015],[146.970905,-6.721657],[147.191874,-7.388024]]],[[[153.140038,-4.499983],[152.827292,-4.766427],[152.638673,-4.176127],[152.406026,-3.789743],[151.953237,-3.462062],[151.384279,-3.035422],[150.66205,-2.741486],[150.939965,-2.500002],[151.479984,-2.779985],[151.820015,-2.999972],[152.239989,-3.240009],[152.640017,-3.659983],[153.019994,-3.980015],[153.140038,-4.499983]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PNG_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              -11.17840187\n            ],\n            [\n              140.625,\n              -5.61598582\n            ],\n            [\n              146.25,\n              -5.61598582\n            ],\n            [\n              146.25,\n              -11.17840187\n            ],\n            [\n              140.625,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              140.625,\n              -5.61598582\n            ],\n            [\n              140.625,\n              0\n            ],\n            [\n              146.25,\n              0\n            ],\n            [\n              146.25,\n              -5.61598582\n            ],\n            [\n              140.625,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              -11.17840187\n            ],\n            [\n              146.25,\n              0\n            ],\n            [\n              157.5,\n              0\n            ],\n            [\n              157.5,\n              -11.17840187\n            ],\n            [\n              146.25,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                155.880026,\n                -6.819997\n              ],\n              [\n                155.599991,\n                -6.919991\n              ],\n              [\n                155.166994,\n                -6.535931\n              ],\n              [\n                154.729192,\n                -5.900828\n              ],\n              [\n                154.514114,\n                -5.139118\n              ],\n              [\n                154.652504,\n                -5.042431\n              ],\n              [\n                154.759991,\n                -5.339984\n              ],\n              [\n                155.062918,\n                -5.566792\n              ],\n              [\n                155.547746,\n                -6.200655\n              ],\n              [\n                156.019965,\n                -6.540014\n              ],\n              [\n                155.880026,\n                -6.819997\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                151.982796,\n                -5.478063\n              ],\n              [\n                151.459107,\n                -5.56028\n              ],\n              [\n                151.30139,\n                -5.840728\n              ],\n              [\n                150.754447,\n                -6.083763\n              ],\n              [\n                150.241197,\n                -6.317754\n              ],\n              [\n                149.709963,\n                -6.316513\n              ],\n              [\n                148.890065,\n                -6.02604\n              ],\n              [\n                148.318937,\n                -5.747142\n              ],\n              [\n                148.401826,\n                -5.437756\n              ],\n              [\n                149.298412,\n                -5.583742\n              ],\n              [\n                149.845562,\n                -5.505503\n              ],\n              [\n                149.99625,\n                -5.026101\n              ],\n              [\n                150.139756,\n                -5.001348\n              ],\n              [\n                150.236908,\n                -5.53222\n              ],\n              [\n                150.807467,\n                -5.455842\n              ],\n              [\n                151.089672,\n                -5.113693\n              ],\n              [\n                151.647881,\n                -4.757074\n              ],\n              [\n                151.537862,\n                -4.167807\n              ],\n              [\n                152.136792,\n                -4.14879\n              ],\n              [\n                152.338743,\n                -4.312966\n              ],\n              [\n                152.318693,\n                -4.867661\n              ],\n              [\n                151.982796,\n                -5.478063\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                147.191874,\n                -7.388024\n              ],\n              [\n                148.084636,\n                -8.044108\n              ],\n              [\n                148.734105,\n                -9.104664\n              ],\n              [\n                149.306835,\n                -9.071436\n              ],\n              [\n                149.266631,\n                -9.514406\n              ],\n              [\n                150.038728,\n                -9.684318\n              ],\n              [\n                149.738798,\n                -9.872937\n              ],\n              [\n                150.801628,\n                -10.293687\n              ],\n              [\n                150.690575,\n                -10.582713\n              ],\n              [\n                150.028393,\n                -10.652476\n              ],\n              [\n                149.78231,\n                -10.393267\n              ],\n              [\n                148.923138,\n                -10.280923\n              ],\n              [\n                147.913018,\n                -10.130441\n              ],\n              [\n                147.135443,\n                -9.492444\n              ],\n              [\n                146.567881,\n                -8.942555\n              ],\n              [\n                146.048481,\n                -8.067414\n              ],\n              [\n                144.744168,\n                -7.630128\n              ],\n              [\n                143.897088,\n                -7.91533\n              ],\n              [\n                143.286376,\n                -8.245491\n              ],\n              [\n                143.413913,\n                -8.983069\n              ],\n              [\n                142.628431,\n                -9.326821\n              ],\n              [\n                142.068259,\n                -9.159596\n              ],\n              [\n                141.033852,\n                -9.117893\n              ],\n              [\n                141.017057,\n                -5.859022\n              ],\n              [\n                141.00021,\n                -2.600151\n              ],\n              [\n                142.735247,\n                -3.289153\n              ],\n              [\n                144.583971,\n                -3.861418\n              ],\n              [\n                145.27318,\n                -4.373738\n              ],\n              [\n                145.829786,\n                -4.876498\n              ],\n              [\n                145.981922,\n                -5.465609\n              ],\n              [\n                147.648073,\n                -6.083659\n              ],\n              [\n                147.891108,\n                -6.614015\n              ],\n              [\n                146.970905,\n                -6.721657\n              ],\n              [\n                147.191874,\n                -7.388024\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                153.140038,\n                -4.499983\n              ],\n              [\n                152.827292,\n                -4.766427\n              ],\n              [\n                152.638673,\n                -4.176127\n              ],\n              [\n                152.406026,\n                -3.789743\n              ],\n              [\n                151.953237,\n                -3.462062\n              ],\n              [\n                151.384279,\n                -3.035422\n              ],\n              [\n                150.66205,\n                -2.741486\n              ],\n              [\n                150.939965,\n                -2.500002\n              ],\n              [\n                151.479984,\n                -2.779985\n              ],\n              [\n                151.820015,\n                -2.999972\n              ],\n              [\n                152.239989,\n                -3.240009\n              ],\n              [\n                152.640017,\n                -3.659983\n              ],\n              [\n                153.019994,\n                -3.980015\n              ],\n              [\n                153.140038,\n                -4.499983\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/POL.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"POL\",\"properties\":{\"name\":\"Poland\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[15.016996,51.106674],[14.607098,51.745188],[14.685026,52.089947],[14.4376,52.62485],[14.074521,52.981263],[14.353315,53.248171],[14.119686,53.757029],[14.8029,54.050706],[16.363477,54.513159],[17.622832,54.851536],[18.620859,54.682606],[18.696255,54.438719],[19.66064,54.426084],[20.892245,54.312525],[22.731099,54.327537],[23.243987,54.220567],[23.484128,53.912498],[23.527536,53.470122],[23.804935,53.089731],[23.799199,52.691099],[23.199494,52.486977],[23.508002,52.023647],[23.527071,51.578454],[24.029986,50.705407],[23.922757,50.424881],[23.426508,50.308506],[22.51845,49.476774],[22.776419,49.027395],[22.558138,49.085738],[21.607808,49.470107],[20.887955,49.328772],[20.415839,49.431453],[19.825023,49.217125],[19.320713,49.571574],[18.909575,49.435846],[18.853144,49.49623],[18.392914,49.988629],[17.649445,50.049038],[17.554567,50.362146],[16.868769,50.473974],[16.719476,50.215747],[16.176253,50.422607],[16.238627,50.697733],[15.490972,50.78473],[15.016996,51.106674]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/POL_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              11.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              22.5,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              15.016996,\n              51.106674\n            ],\n            [\n              14.607098,\n              51.745188\n            ],\n            [\n              14.685026,\n              52.089947\n            ],\n            [\n              14.4376,\n              52.62485\n            ],\n            [\n              14.074521,\n              52.981263\n            ],\n            [\n              14.353315,\n              53.248171\n            ],\n            [\n              14.119686,\n              53.757029\n            ],\n            [\n              14.8029,\n              54.050706\n            ],\n            [\n              16.363477,\n              54.513159\n            ],\n            [\n              17.622832,\n              54.851536\n            ],\n            [\n              18.620859,\n              54.682606\n            ],\n            [\n              18.696255,\n              54.438719\n            ],\n            [\n              19.66064,\n              54.426084\n            ],\n            [\n              20.892245,\n              54.312525\n            ],\n            [\n              22.731099,\n              54.327537\n            ],\n            [\n              23.243987,\n              54.220567\n            ],\n            [\n              23.484128,\n              53.912498\n            ],\n            [\n              23.527536,\n              53.470122\n            ],\n            [\n              23.804935,\n              53.089731\n            ],\n            [\n              23.799199,\n              52.691099\n            ],\n            [\n              23.199494,\n              52.486977\n            ],\n            [\n              23.508002,\n              52.023647\n            ],\n            [\n              23.527071,\n              51.578454\n            ],\n            [\n              24.029986,\n              50.705407\n            ],\n            [\n              23.922757,\n              50.424881\n            ],\n            [\n              23.426508,\n              50.308506\n            ],\n            [\n              22.51845,\n              49.476774\n            ],\n            [\n              22.776419,\n              49.027395\n            ],\n            [\n              22.558138,\n              49.085738\n            ],\n            [\n              21.607808,\n              49.470107\n            ],\n            [\n              20.887955,\n              49.328772\n            ],\n            [\n              20.415839,\n              49.431453\n            ],\n            [\n              19.825023,\n              49.217125\n            ],\n            [\n              19.320713,\n              49.571574\n            ],\n            [\n              18.909575,\n              49.435846\n            ],\n            [\n              18.853144,\n              49.49623\n            ],\n            [\n              18.392914,\n              49.988629\n            ],\n            [\n              17.649445,\n              50.049038\n            ],\n            [\n              17.554567,\n              50.362146\n            ],\n            [\n              16.868769,\n              50.473974\n            ],\n            [\n              16.719476,\n              50.215747\n            ],\n            [\n              16.176253,\n              50.422607\n            ],\n            [\n              16.238627,\n              50.697733\n            ],\n            [\n              15.490972,\n              50.78473\n            ],\n            [\n              15.016996,\n              51.106674\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PRI.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PRI\",\"properties\":{\"name\":\"Puerto Rico\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.282434,18.514762],[-65.771303,18.426679],[-65.591004,18.228035],[-65.847164,17.975906],[-66.599934,17.981823],[-67.184162,17.946553],[-67.242428,18.37446],[-67.100679,18.520601],[-66.282434,18.514762]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PRI_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              16.63619188\n            ],\n            [\n              -67.5,\n              21.94304553\n            ],\n            [\n              -61.875,\n              21.94304553\n            ],\n            [\n              -61.875,\n              16.63619188\n            ],\n            [\n              -67.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -66.282434,\n              18.514762\n            ],\n            [\n              -65.771303,\n              18.426679\n            ],\n            [\n              -65.591004,\n              18.228035\n            ],\n            [\n              -65.847164,\n              17.975906\n            ],\n            [\n              -66.599934,\n              17.981823\n            ],\n            [\n              -67.184162,\n              17.946553\n            ],\n            [\n              -67.242428,\n              18.37446\n            ],\n            [\n              -67.100679,\n              18.520601\n            ],\n            [\n              -66.282434,\n              18.514762\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PRK.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PRK\",\"properties\":{\"name\":\"North Korea\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[130.640016,42.395009],[130.780007,42.220007],[130.400031,42.280004],[129.965949,41.941368],[129.667362,41.601104],[129.705189,40.882828],[129.188115,40.661808],[129.0104,40.485436],[128.633368,40.189847],[127.967414,40.025413],[127.533436,39.75685],[127.50212,39.323931],[127.385434,39.213472],[127.783343,39.050898],[128.349716,38.612243],[128.205746,38.370397],[127.780035,38.304536],[127.073309,38.256115],[126.68372,37.804773],[126.237339,37.840378],[126.174759,37.749686],[125.689104,37.94001],[125.568439,37.752089],[125.27533,37.669071],[125.240087,37.857224],[124.981033,37.948821],[124.712161,38.108346],[124.985994,38.548474],[125.221949,38.665857],[125.132859,38.848559],[125.38659,39.387958],[125.321116,39.551385],[124.737482,39.660344],[124.265625,39.928493],[125.079942,40.569824],[126.182045,41.107336],[126.869083,41.816569],[127.343783,41.503152],[128.208433,41.466772],[128.052215,41.994285],[129.596669,42.424982],[129.994267,42.985387],[130.640016,42.395009]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PRK_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              36.59788913\n            ],\n            [\n              123.75,\n              40.97989807\n            ],\n            [\n              129.375,\n              40.97989807\n            ],\n            [\n              129.375,\n              36.59788913\n            ],\n            [\n              123.75,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              40.97989807\n            ],\n            [\n              123.75,\n              45.08903556\n            ],\n            [\n              129.375,\n              45.08903556\n            ],\n            [\n              129.375,\n              40.97989807\n            ],\n            [\n              123.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              36.59788913\n            ],\n            [\n              129.375,\n              40.97989807\n            ],\n            [\n              135,\n              40.97989807\n            ],\n            [\n              135,\n              36.59788913\n            ],\n            [\n              129.375,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              40.97989807\n            ],\n            [\n              129.375,\n              45.08903556\n            ],\n            [\n              135,\n              45.08903556\n            ],\n            [\n              135,\n              40.97989807\n            ],\n            [\n              129.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              130.640016,\n              42.395009\n            ],\n            [\n              130.780007,\n              42.220007\n            ],\n            [\n              130.400031,\n              42.280004\n            ],\n            [\n              129.965949,\n              41.941368\n            ],\n            [\n              129.667362,\n              41.601104\n            ],\n            [\n              129.705189,\n              40.882828\n            ],\n            [\n              129.188115,\n              40.661808\n            ],\n            [\n              129.0104,\n              40.485436\n            ],\n            [\n              128.633368,\n              40.189847\n            ],\n            [\n              127.967414,\n              40.025413\n            ],\n            [\n              127.533436,\n              39.75685\n            ],\n            [\n              127.50212,\n              39.323931\n            ],\n            [\n              127.385434,\n              39.213472\n            ],\n            [\n              127.783343,\n              39.050898\n            ],\n            [\n              128.349716,\n              38.612243\n            ],\n            [\n              128.205746,\n              38.370397\n            ],\n            [\n              127.780035,\n              38.304536\n            ],\n            [\n              127.073309,\n              38.256115\n            ],\n            [\n              126.68372,\n              37.804773\n            ],\n            [\n              126.237339,\n              37.840378\n            ],\n            [\n              126.174759,\n              37.749686\n            ],\n            [\n              125.689104,\n              37.94001\n            ],\n            [\n              125.568439,\n              37.752089\n            ],\n            [\n              125.27533,\n              37.669071\n            ],\n            [\n              125.240087,\n              37.857224\n            ],\n            [\n              124.981033,\n              37.948821\n            ],\n            [\n              124.712161,\n              38.108346\n            ],\n            [\n              124.985994,\n              38.548474\n            ],\n            [\n              125.221949,\n              38.665857\n            ],\n            [\n              125.132859,\n              38.848559\n            ],\n            [\n              125.38659,\n              39.387958\n            ],\n            [\n              125.321116,\n              39.551385\n            ],\n            [\n              124.737482,\n              39.660344\n            ],\n            [\n              124.265625,\n              39.928493\n            ],\n            [\n              125.079942,\n              40.569824\n            ],\n            [\n              126.182045,\n              41.107336\n            ],\n            [\n              126.869083,\n              41.816569\n            ],\n            [\n              127.343783,\n              41.503152\n            ],\n            [\n              128.208433,\n              41.466772\n            ],\n            [\n              128.052215,\n              41.994285\n            ],\n            [\n              129.596669,\n              42.424982\n            ],\n            [\n              129.994267,\n              42.985387\n            ],\n            [\n              130.640016,\n              42.395009\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PRT.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PRT\",\"properties\":{\"name\":\"Portugal\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-9.034818,41.880571],[-8.671946,42.134689],[-8.263857,42.280469],[-8.013175,41.790886],[-7.422513,41.792075],[-7.251309,41.918346],[-6.668606,41.883387],[-6.389088,41.381815],[-6.851127,41.111083],[-6.86402,40.330872],[-7.026413,40.184524],[-7.066592,39.711892],[-7.498632,39.629571],[-7.098037,39.030073],[-7.374092,38.373059],[-7.029281,38.075764],[-7.166508,37.803894],[-7.537105,37.428904],[-7.453726,37.097788],[-7.855613,36.838269],[-8.382816,36.97888],[-8.898857,36.868809],[-8.746101,37.651346],[-8.839998,38.266243],[-9.287464,38.358486],[-9.526571,38.737429],[-9.446989,39.392066],[-9.048305,39.755093],[-8.977353,40.159306],[-8.768684,40.760639],[-8.790853,41.184334],[-8.990789,41.543459],[-9.034818,41.880571]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PRT_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              36.59788913\n            ],\n            [\n              -11.25,\n              40.97989807\n            ],\n            [\n              -5.625,\n              40.97989807\n            ],\n            [\n              -5.625,\n              36.59788913\n            ],\n            [\n              -11.25,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              40.97989807\n            ],\n            [\n              -11.25,\n              45.08903556\n            ],\n            [\n              -5.625,\n              45.08903556\n            ],\n            [\n              -5.625,\n              40.97989807\n            ],\n            [\n              -11.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -9.034818,\n              41.880571\n            ],\n            [\n              -8.671946,\n              42.134689\n            ],\n            [\n              -8.263857,\n              42.280469\n            ],\n            [\n              -8.013175,\n              41.790886\n            ],\n            [\n              -7.422513,\n              41.792075\n            ],\n            [\n              -7.251309,\n              41.918346\n            ],\n            [\n              -6.668606,\n              41.883387\n            ],\n            [\n              -6.389088,\n              41.381815\n            ],\n            [\n              -6.851127,\n              41.111083\n            ],\n            [\n              -6.86402,\n              40.330872\n            ],\n            [\n              -7.026413,\n              40.184524\n            ],\n            [\n              -7.066592,\n              39.711892\n            ],\n            [\n              -7.498632,\n              39.629571\n            ],\n            [\n              -7.098037,\n              39.030073\n            ],\n            [\n              -7.374092,\n              38.373059\n            ],\n            [\n              -7.029281,\n              38.075764\n            ],\n            [\n              -7.166508,\n              37.803894\n            ],\n            [\n              -7.537105,\n              37.428904\n            ],\n            [\n              -7.453726,\n              37.097788\n            ],\n            [\n              -7.855613,\n              36.838269\n            ],\n            [\n              -8.382816,\n              36.97888\n            ],\n            [\n              -8.898857,\n              36.868809\n            ],\n            [\n              -8.746101,\n              37.651346\n            ],\n            [\n              -8.839998,\n              38.266243\n            ],\n            [\n              -9.287464,\n              38.358486\n            ],\n            [\n              -9.526571,\n              38.737429\n            ],\n            [\n              -9.446989,\n              39.392066\n            ],\n            [\n              -9.048305,\n              39.755093\n            ],\n            [\n              -8.977353,\n              40.159306\n            ],\n            [\n              -8.768684,\n              40.760639\n            ],\n            [\n              -8.790853,\n              41.184334\n            ],\n            [\n              -8.990789,\n              41.543459\n            ],\n            [\n              -9.034818,\n              41.880571\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PRY.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PRY\",\"properties\":{\"name\":\"Paraguay\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-62.685057,-22.249029],[-62.291179,-21.051635],[-62.265961,-20.513735],[-61.786326,-19.633737],[-60.043565,-19.342747],[-59.115042,-19.356906],[-58.183471,-19.868399],[-58.166392,-20.176701],[-57.870674,-20.732688],[-57.937156,-22.090176],[-56.88151,-22.282154],[-56.473317,-22.0863],[-55.797958,-22.35693],[-55.610683,-22.655619],[-55.517639,-23.571998],[-55.400747,-23.956935],[-55.027902,-24.001274],[-54.652834,-23.839578],[-54.29296,-24.021014],[-54.293476,-24.5708],[-54.428946,-25.162185],[-54.625291,-25.739255],[-54.788795,-26.621786],[-55.695846,-27.387837],[-56.486702,-27.548499],[-57.60976,-27.395899],[-58.618174,-27.123719],[-57.63366,-25.603657],[-57.777217,-25.16234],[-58.807128,-24.771459],[-60.028966,-24.032796],[-60.846565,-23.880713],[-62.685057,-22.249029]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PRY_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -50.625,\n              -21.94304553\n            ],\n            [\n              -50.625,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -50.625,\n              -27.05912578\n            ],\n            [\n              -50.625,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -16.63619188\n            ],\n            [\n              -56.25,\n              -16.63619188\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -27.05912578\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -56.25,\n              -21.94304553\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -61.875,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -31.95216224\n            ],\n            [\n              -61.875,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -61.875,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -16.63619188\n            ],\n            [\n              -61.875,\n              -16.63619188\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -21.94304553\n            ],\n            [\n              -61.875,\n              -27.05912578\n            ],\n            [\n              -67.5,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -62.685057,\n              -22.249029\n            ],\n            [\n              -62.291179,\n              -21.051635\n            ],\n            [\n              -62.265961,\n              -20.513735\n            ],\n            [\n              -61.786326,\n              -19.633737\n            ],\n            [\n              -60.043565,\n              -19.342747\n            ],\n            [\n              -59.115042,\n              -19.356906\n            ],\n            [\n              -58.183471,\n              -19.868399\n            ],\n            [\n              -58.166392,\n              -20.176701\n            ],\n            [\n              -57.870674,\n              -20.732688\n            ],\n            [\n              -57.937156,\n              -22.090176\n            ],\n            [\n              -56.88151,\n              -22.282154\n            ],\n            [\n              -56.473317,\n              -22.0863\n            ],\n            [\n              -55.797958,\n              -22.35693\n            ],\n            [\n              -55.610683,\n              -22.655619\n            ],\n            [\n              -55.517639,\n              -23.571998\n            ],\n            [\n              -55.400747,\n              -23.956935\n            ],\n            [\n              -55.027902,\n              -24.001274\n            ],\n            [\n              -54.652834,\n              -23.839578\n            ],\n            [\n              -54.29296,\n              -24.021014\n            ],\n            [\n              -54.293476,\n              -24.5708\n            ],\n            [\n              -54.428946,\n              -25.162185\n            ],\n            [\n              -54.625291,\n              -25.739255\n            ],\n            [\n              -54.788795,\n              -26.621786\n            ],\n            [\n              -55.695846,\n              -27.387837\n            ],\n            [\n              -56.486702,\n              -27.548499\n            ],\n            [\n              -57.60976,\n              -27.395899\n            ],\n            [\n              -58.618174,\n              -27.123719\n            ],\n            [\n              -57.63366,\n              -25.603657\n            ],\n            [\n              -57.777217,\n              -25.16234\n            ],\n            [\n              -58.807128,\n              -24.771459\n            ],\n            [\n              -60.028966,\n              -24.032796\n            ],\n            [\n              -60.846565,\n              -23.880713\n            ],\n            [\n              -62.685057,\n              -22.249029\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/PSE.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"PSE\",\"properties\":{\"name\":\"West Bank\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[35.545665,32.393992],[35.545252,31.782505],[35.397561,31.489086],[34.927408,31.353435],[34.970507,31.616778],[35.225892,31.754341],[34.974641,31.866582],[35.18393,32.532511],[35.545665,32.393992]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/PSE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              27.05912578\n            ],\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              39.375,\n              27.05912578\n            ],\n            [\n              33.75,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              35.545665,\n              32.393992\n            ],\n            [\n              35.545252,\n              31.782505\n            ],\n            [\n              35.397561,\n              31.489086\n            ],\n            [\n              34.927408,\n              31.353435\n            ],\n            [\n              34.970507,\n              31.616778\n            ],\n            [\n              35.225892,\n              31.754341\n            ],\n            [\n              34.974641,\n              31.866582\n            ],\n            [\n              35.18393,\n              32.532511\n            ],\n            [\n              35.545665,\n              32.393992\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/QAT.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"QAT\",\"properties\":{\"name\":\"Qatar\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[50.810108,24.754743],[50.743911,25.482424],[51.013352,26.006992],[51.286462,26.114582],[51.589079,25.801113],[51.6067,25.21567],[51.389608,24.627386],[51.112415,24.556331],[50.810108,24.754743]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/QAT_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              50.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.810108,\n              24.754743\n            ],\n            [\n              50.743911,\n              25.482424\n            ],\n            [\n              51.013352,\n              26.006992\n            ],\n            [\n              51.286462,\n              26.114582\n            ],\n            [\n              51.589079,\n              25.801113\n            ],\n            [\n              51.6067,\n              25.21567\n            ],\n            [\n              51.389608,\n              24.627386\n            ],\n            [\n              51.112415,\n              24.556331\n            ],\n            [\n              50.810108,\n              24.754743\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ROU.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ROU\",\"properties\":{\"name\":\"Romania\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[22.710531,47.882194],[23.142236,48.096341],[23.760958,47.985598],[24.402056,47.981878],[24.866317,47.737526],[25.207743,47.891056],[25.945941,47.987149],[26.19745,48.220881],[26.619337,48.220726],[26.924176,48.123264],[27.233873,47.826771],[27.551166,47.405117],[28.12803,46.810476],[28.160018,46.371563],[28.054443,45.944586],[28.233554,45.488283],[28.679779,45.304031],[29.149725,45.464925],[29.603289,45.293308],[29.626543,45.035391],[29.141612,44.82021],[28.837858,44.913874],[28.558081,43.707462],[27.970107,43.812468],[27.2424,44.175986],[26.065159,43.943494],[25.569272,43.688445],[24.100679,43.741051],[23.332302,43.897011],[22.944832,43.823785],[22.65715,44.234923],[22.474008,44.409228],[22.705726,44.578003],[22.459022,44.702517],[22.145088,44.478422],[21.562023,44.768947],[21.483526,45.18117],[20.874313,45.416375],[20.762175,45.734573],[20.220192,46.127469],[21.021952,46.316088],[21.626515,46.994238],[22.099768,47.672439],[22.710531,47.882194]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ROU_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              16.875,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.710531,\n              47.882194\n            ],\n            [\n              23.142236,\n              48.096341\n            ],\n            [\n              23.760958,\n              47.985598\n            ],\n            [\n              24.402056,\n              47.981878\n            ],\n            [\n              24.866317,\n              47.737526\n            ],\n            [\n              25.207743,\n              47.891056\n            ],\n            [\n              25.945941,\n              47.987149\n            ],\n            [\n              26.19745,\n              48.220881\n            ],\n            [\n              26.619337,\n              48.220726\n            ],\n            [\n              26.924176,\n              48.123264\n            ],\n            [\n              27.233873,\n              47.826771\n            ],\n            [\n              27.551166,\n              47.405117\n            ],\n            [\n              28.12803,\n              46.810476\n            ],\n            [\n              28.160018,\n              46.371563\n            ],\n            [\n              28.054443,\n              45.944586\n            ],\n            [\n              28.233554,\n              45.488283\n            ],\n            [\n              28.679779,\n              45.304031\n            ],\n            [\n              29.149725,\n              45.464925\n            ],\n            [\n              29.603289,\n              45.293308\n            ],\n            [\n              29.626543,\n              45.035391\n            ],\n            [\n              29.141612,\n              44.82021\n            ],\n            [\n              28.837858,\n              44.913874\n            ],\n            [\n              28.558081,\n              43.707462\n            ],\n            [\n              27.970107,\n              43.812468\n            ],\n            [\n              27.2424,\n              44.175986\n            ],\n            [\n              26.065159,\n              43.943494\n            ],\n            [\n              25.569272,\n              43.688445\n            ],\n            [\n              24.100679,\n              43.741051\n            ],\n            [\n              23.332302,\n              43.897011\n            ],\n            [\n              22.944832,\n              43.823785\n            ],\n            [\n              22.65715,\n              44.234923\n            ],\n            [\n              22.474008,\n              44.409228\n            ],\n            [\n              22.705726,\n              44.578003\n            ],\n            [\n              22.459022,\n              44.702517\n            ],\n            [\n              22.145088,\n              44.478422\n            ],\n            [\n              21.562023,\n              44.768947\n            ],\n            [\n              21.483526,\n              45.18117\n            ],\n            [\n              20.874313,\n              45.416375\n            ],\n            [\n              20.762175,\n              45.734573\n            ],\n            [\n              20.220192,\n              46.127469\n            ],\n            [\n              21.021952,\n              46.316088\n            ],\n            [\n              21.626515,\n              46.994238\n            ],\n            [\n              22.099768,\n              47.672439\n            ],\n            [\n              22.710531,\n              47.882194\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/RUS.geo.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"id\": \"RUS\",\n      \"properties\": {\n        \"name\": \"Russia\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [     \n          [\n            [\n              [\n                106.97013,\n                76.97419\n              ],\n              [\n                107.24,\n                76.48\n              ],\n              [\n                108.1538,\n                76.72335\n              ],\n              [\n                111.07726,\n                76.71\n              ],\n              [\n                113.33151,\n                76.22224\n              ],\n              [\n                114.13417,\n                75.84764\n              ],\n              [\n                113.88539,\n                75.32779\n              ],\n              [\n                112.77918,\n                75.03186\n              ],\n              [\n                110.15125,\n                74.47673\n              ],\n              [\n                109.4,\n                74.18\n              ],\n              [\n                110.64,\n                74.04\n              ],\n              [\n                112.11919,\n                73.78774\n              ],\n              [\n                113.01954,\n                73.97693\n              ],\n              [\n                113.52958,\n                73.33505\n              ],\n              [\n                113.96881,\n                73.59488\n              ],\n              [\n                115.56782,\n                73.75285\n              ],\n              [\n                118.77633,\n                73.58772\n              ],\n              [\n                119.02,\n                73.12\n              ],\n              [\n                123.20066,\n                72.97122\n              ],\n              [\n                123.25777,\n                73.73503\n              ],\n              [\n                125.38,\n                73.56\n              ],\n              [\n                126.97644,\n                73.56549\n              ],\n              [\n                128.59126,\n                73.03871\n              ],\n              [\n                129.05157,\n                72.39872\n              ],\n              [\n                128.46,\n                71.98\n              ],\n              [\n                129.71599,\n                71.19304\n              ],\n              [\n                131.28858,\n                70.78699\n              ],\n              [\n                132.2535,\n                71.8363\n              ],\n              [\n                133.85766,\n                71.38642\n              ],\n              [\n                135.56193,\n                71.65525\n              ],\n              [\n                137.49755,\n                71.34763\n              ],\n              [\n                138.23409,\n                71.62803\n              ],\n              [\n                139.86983,\n                71.48783\n              ],\n              [\n                139.14791,\n                72.41619\n              ],\n              [\n                140.46817,\n                72.84941\n              ],\n              [\n                149.5,\n                72.2\n              ],\n              [\n                150.35118,\n                71.60643\n              ],\n              [\n                152.9689,\n                70.84222\n              ],\n              [\n                157.00688,\n                71.03141\n              ],\n              [\n                158.99779,\n                70.86672\n              ],\n              [\n                159.83031,\n                70.45324\n              ],\n              [\n                159.70866,\n                69.72198\n              ],\n              [\n                160.94053,\n                69.43728\n              ],\n              [\n                162.27907,\n                69.64204\n              ],\n              [\n                164.05248,\n                69.66823\n              ],\n              [\n                165.94037,\n                69.47199\n              ],\n              [\n                167.83567,\n                69.58269\n              ],\n              [\n                169.57763,\n                68.6938\n              ],\n              [\n                170.81688,\n                69.01363\n              ],\n              [\n                170.0082,\n                69.65276\n              ],\n              [\n                170.45345,\n                70.09703\n              ],\n              [\n                173.64391,\n                69.81743\n              ],\n              [\n                175.72403,\n                69.87725\n              ],\n              [\n                178.6,\n                69.4\n              ],\n              [\n                180,\n                68.963636\n              ],\n              [\n                180,\n                64.979709\n              ],\n              [\n                179.99281,\n                64.97433\n              ],\n              [\n                178.7072,\n                64.53493\n              ],\n              [\n                177.41128,\n                64.60821\n              ],\n              [\n                178.313,\n                64.07593\n              ],\n              [\n                178.90825,\n                63.25197\n              ],\n              [\n                179.37034,\n                62.98262\n              ],\n              [\n                179.48636,\n                62.56894\n              ],\n              [\n                179.22825,\n                62.3041\n              ],\n              [\n                177.3643,\n                62.5219\n              ],\n              [\n                174.56929,\n                61.76915\n              ],\n              [\n                173.68013,\n                61.65261\n              ],\n              [\n                172.15,\n                60.95\n              ],\n              [\n                170.6985,\n                60.33618\n              ],\n              [\n                170.33085,\n                59.88177\n              ],\n              [\n                168.90046,\n                60.57355\n              ],\n              [\n                166.29498,\n                59.78855\n              ],\n              [\n                165.84,\n                60.16\n              ],\n              [\n                164.87674,\n                59.7316\n              ],\n              [\n                163.53929,\n                59.86871\n              ],\n              [\n                163.21711,\n                59.21101\n              ],\n              [\n                162.01733,\n                58.24328\n              ],\n              [\n                162.05297,\n                57.83912\n              ],\n              [\n                163.19191,\n                57.61503\n              ],\n              [\n                163.05794,\n                56.15924\n              ],\n              [\n                162.12958,\n                56.12219\n              ],\n              [\n                161.70146,\n                55.28568\n              ],\n              [\n                162.11749,\n                54.85514\n              ],\n              [\n                160.36877,\n                54.34433\n              ],\n              [\n                160.02173,\n                53.20257\n              ],\n              [\n                158.53094,\n                52.95868\n              ],\n              [\n                158.23118,\n                51.94269\n              ],\n              [\n                156.78979,\n                51.01105\n              ],\n              [\n                156.42,\n                51.7\n              ],\n              [\n                155.99182,\n                53.15895\n              ],\n              [\n                155.43366,\n                55.38103\n              ],\n              [\n                155.91442,\n                56.76792\n              ],\n              [\n                156.75815,\n                57.3647\n              ],\n              [\n                156.81035,\n                57.83204\n              ],\n              [\n                158.36433,\n                58.05575\n              ],\n              [\n                160.15064,\n                59.31477\n              ],\n              [\n                161.87204,\n                60.343\n              ],\n              [\n                163.66969,\n                61.1409\n              ],\n              [\n                164.47355,\n                62.55061\n              ],\n              [\n                163.25842,\n                62.46627\n              ],\n              [\n                162.65791,\n                61.6425\n              ],\n              [\n                160.12148,\n                60.54423\n              ],\n              [\n                159.30232,\n                61.77396\n              ],\n              [\n                156.72068,\n                61.43442\n              ],\n              [\n                154.21806,\n                59.75818\n              ],\n              [\n                155.04375,\n                59.14495\n              ],\n              [\n                152.81185,\n                58.88385\n              ],\n              [\n                151.26573,\n                58.78089\n              ],\n              [\n                151.33815,\n                59.50396\n              ],\n              [\n                149.78371,\n                59.65573\n              ],\n              [\n                148.54481,\n                59.16448\n              ],\n              [\n                145.48722,\n                59.33637\n              ],\n              [\n                142.19782,\n                59.03998\n              ],\n              [\n                138.95848,\n                57.08805\n              ],\n              [\n                135.12619,\n                54.72959\n              ],\n              [\n                136.70171,\n                54.60355\n              ],\n              [\n                137.19342,\n                53.97732\n              ],\n              [\n                138.1647,\n                53.75501\n              ],\n              [\n                138.80463,\n                54.25455\n              ],\n              [\n                139.90151,\n                54.18968\n              ],\n              [\n                141.34531,\n                53.08957\n              ],\n              [\n                141.37923,\n                52.23877\n              ],\n              [\n                140.59742,\n                51.23967\n              ],\n              [\n                140.51308,\n                50.04553\n              ],\n              [\n                140.06193,\n                48.44671\n              ],\n              [\n                138.55472,\n                46.99965\n              ],\n              [\n                138.21971,\n                46.30795\n              ],\n              [\n                136.86232,\n                45.1435\n              ],\n              [\n                135.51535,\n                43.989\n              ],\n              [\n                134.86939,\n                43.39821\n              ],\n              [\n                133.53687,\n                42.81147\n              ],\n              [\n                132.90627,\n                42.79849\n              ],\n              [\n                132.27807,\n                43.28456\n              ],\n              [\n                130.93587,\n                42.55274\n              ],\n              [\n                130.78,\n                42.22\n              ],\n              [\n                130.64,\n                42.395\n              ],\n              [\n                130.633866,\n                42.903015\n              ],\n              [\n                131.144688,\n                42.92999\n              ],\n              [\n                131.288555,\n                44.11152\n              ],\n              [\n                131.02519,\n                44.96796\n              ],\n              [\n                131.883454,\n                45.321162\n              ],\n              [\n                133.09712,\n                45.14409\n              ],\n              [\n                133.769644,\n                46.116927\n              ],\n              [\n                134.11235,\n                47.21248\n              ],\n              [\n                134.50081,\n                47.57845\n              ],\n              [\n                135.026311,\n                48.47823\n              ],\n              [\n                133.373596,\n                48.183442\n              ],\n              [\n                132.50669,\n                47.78896\n              ],\n              [\n                130.98726,\n                47.79013\n              ],\n              [\n                130.582293,\n                48.729687\n              ],\n              [\n                129.397818,\n                49.4406\n              ],\n              [\n                127.6574,\n                49.76027\n              ],\n              [\n                127.287456,\n                50.739797\n              ],\n              [\n                126.939157,\n                51.353894\n              ],\n              [\n                126.564399,\n                51.784255\n              ],\n              [\n                125.946349,\n                52.792799\n              ],\n              [\n                125.068211,\n                53.161045\n              ],\n              [\n                123.57147,\n                53.4588\n              ],\n              [\n                122.245748,\n                53.431726\n              ],\n              [\n                121.003085,\n                53.251401\n              ],\n              [\n                120.177089,\n                52.753886\n              ],\n              [\n                120.725789,\n                52.516226\n              ],\n              [\n                120.7382,\n                51.96411\n              ],\n              [\n                120.18208,\n                51.64355\n              ],\n              [\n                119.27939,\n                50.58292\n              ],\n              [\n                119.288461,\n                50.142883\n              ],\n              [\n                117.879244,\n                49.510983\n              ],\n              [\n                116.678801,\n                49.888531\n              ],\n              [\n                115.485695,\n                49.805177\n              ],\n              [\n                114.96211,\n                50.140247\n              ],\n              [\n                114.362456,\n                50.248303\n              ],\n              [\n                112.89774,\n                49.543565\n              ],\n              [\n                111.581231,\n                49.377968\n              ],\n              [\n                110.662011,\n                49.130128\n              ],\n              [\n                109.402449,\n                49.292961\n              ],\n              [\n                108.475167,\n                49.282548\n              ],\n              [\n                107.868176,\n                49.793705\n              ],\n              [\n                106.888804,\n                50.274296\n              ],\n              [\n                105.886591,\n                50.406019\n              ],\n              [\n                104.62158,\n                50.27532\n              ],\n              [\n                103.676545,\n                50.089966\n              ],\n              [\n                102.25589,\n                50.51056\n              ],\n              [\n                102.06521,\n                51.25991\n              ],\n              [\n                100.88948,\n                51.516856\n              ],\n              [\n                99.981732,\n                51.634006\n              ],\n              [\n                98.861491,\n                52.047366\n              ],\n              [\n                97.82574,\n                51.010995\n              ],\n              [\n                98.231762,\n                50.422401\n              ],\n              [\n                97.25976,\n                49.72605\n              ],\n              [\n                95.81402,\n                49.97746\n              ],\n              [\n                94.815949,\n                50.013433\n              ],\n              [\n                94.147566,\n                50.480537\n              ],\n              [\n                93.10421,\n                50.49529\n              ],\n              [\n                92.234712,\n                50.802171\n              ],\n              [\n                90.713667,\n                50.331812\n              ],\n              [\n                88.805567,\n                49.470521\n              ],\n              [\n                87.751264,\n                49.297198\n              ],\n              [\n                87.35997,\n                49.214981\n              ],\n              [\n                86.829357,\n                49.826675\n              ],\n              [\n                85.54127,\n                49.692859\n              ],\n              [\n                85.11556,\n                50.117303\n              ],\n              [\n                84.416377,\n                50.3114\n              ],\n              [\n                83.935115,\n                50.889246\n              ],\n              [\n                83.383004,\n                51.069183\n              ],\n              [\n                81.945986,\n                50.812196\n              ],\n              [\n                80.568447,\n                51.388336\n              ],\n              [\n                80.03556,\n                50.864751\n              ],\n              [\n                77.800916,\n                53.404415\n              ],\n              [\n                76.525179,\n                54.177003\n              ],\n              [\n                76.8911,\n                54.490524\n              ],\n              [\n                74.38482,\n                53.54685\n              ],\n              [\n                73.425679,\n                53.48981\n              ],\n              [\n                73.508516,\n                54.035617\n              ],\n              [\n                72.22415,\n                54.376655\n              ],\n              [\n                71.180131,\n                54.133285\n              ],\n              [\n                70.865267,\n                55.169734\n              ],\n              [\n                69.068167,\n                55.38525\n              ],\n              [\n                68.1691,\n                54.970392\n              ],\n              [\n                65.66687,\n                54.60125\n              ],\n              [\n                65.178534,\n                54.354228\n              ],\n              [\n                61.4366,\n                54.00625\n              ],\n              [\n                60.978066,\n                53.664993\n              ],\n              [\n                61.699986,\n                52.979996\n              ],\n              [\n                60.739993,\n                52.719986\n              ],\n              [\n                60.927269,\n                52.447548\n              ],\n              [\n                59.967534,\n                51.96042\n              ],\n              [\n                61.588003,\n                51.272659\n              ],\n              [\n                61.337424,\n                50.79907\n              ],\n              [\n                59.932807,\n                50.842194\n              ],\n              [\n                59.642282,\n                50.545442\n              ],\n              [\n                58.36332,\n                51.06364\n              ],\n              [\n                56.77798,\n                51.04355\n              ],\n              [\n                55.71694,\n                50.62171\n              ],\n              [\n                54.532878,\n                51.02624\n              ],\n              [\n                52.328724,\n                51.718652\n              ],\n              [\n                50.766648,\n                51.692762\n              ],\n              [\n                48.702382,\n                50.605128\n              ],\n              [\n                48.577841,\n                49.87476\n              ],\n              [\n                47.54948,\n                50.454698\n              ],\n              [\n                46.751596,\n                49.356006\n              ],\n              [\n                47.043672,\n                49.152039\n              ],\n              [\n                46.466446,\n                48.394152\n              ],\n              [\n                47.31524,\n                47.71585\n              ],\n              [\n                48.05725,\n                47.74377\n              ],\n              [\n                48.694734,\n                47.075628\n              ],\n              [\n                48.59325,\n                46.56104\n              ],\n              [\n                49.10116,\n                46.39933\n              ],\n              [\n                48.64541,\n                45.80629\n              ],\n              [\n                47.67591,\n                45.64149\n              ],\n              [\n                46.68201,\n                44.6092\n              ],\n              [\n                47.59094,\n                43.66016\n              ],\n              [\n                47.49252,\n                42.98658\n              ],\n              [\n                48.58437,\n                41.80888\n              ],\n              [\n                47.987283,\n                41.405819\n              ],\n              [\n                47.815666,\n                41.151416\n              ],\n              [\n                47.373315,\n                41.219732\n              ],\n              [\n                46.686071,\n                41.827137\n              ],\n              [\n                46.404951,\n                41.860675\n              ],\n              [\n                45.7764,\n                42.09244\n              ],\n              [\n                45.470279,\n                42.502781\n              ],\n              [\n                44.537623,\n                42.711993\n              ],\n              [\n                43.93121,\n                42.55496\n              ],\n              [\n                43.75599,\n                42.74083\n              ],\n              [\n                42.3944,\n                43.2203\n              ],\n              [\n                40.92219,\n                43.38215\n              ],\n              [\n                40.076965,\n                43.553104\n              ],\n              [\n                39.955009,\n                43.434998\n              ],\n              [\n                38.68,\n                44.28\n              ],\n              [\n                37.53912,\n                44.65721\n              ],\n              [\n                36.67546,\n                45.24469\n              ],\n              [\n                37.40317,\n                45.40451\n              ],\n              [\n                38.23295,\n                46.24087\n              ],\n              [\n                37.67372,\n                46.63657\n              ],\n              [\n                39.14767,\n                47.04475\n              ],\n              [\n                39.1212,\n                47.26336\n              ],\n              [\n                38.223538,\n                47.10219\n              ],\n              [\n                38.255112,\n                47.5464\n              ],\n              [\n                38.77057,\n                47.82562\n              ],\n              [\n                39.738278,\n                47.898937\n              ],\n              [\n                39.89562,\n                48.23241\n              ],\n              [\n                39.67465,\n                48.78382\n              ],\n              [\n                40.080789,\n                49.30743\n              ],\n              [\n                40.06904,\n                49.60105\n              ],\n              [\n                38.594988,\n                49.926462\n              ],\n              [\n                38.010631,\n                49.915662\n              ],\n              [\n                37.39346,\n                50.383953\n              ],\n              [\n                36.626168,\n                50.225591\n              ],\n              [\n                35.356116,\n                50.577197\n              ],\n              [\n                35.37791,\n                50.77394\n              ],\n              [\n                35.022183,\n                51.207572\n              ],\n              [\n                34.224816,\n                51.255993\n              ],\n              [\n                34.141978,\n                51.566413\n              ],\n              [\n                34.391731,\n                51.768882\n              ],\n              [\n                33.7527,\n                52.335075\n              ],\n              [\n                32.715761,\n                52.238465\n              ],\n              [\n                32.412058,\n                52.288695\n              ],\n              [\n                32.15944,\n                52.06125\n              ],\n              [\n                31.78597,\n                52.10168\n              ],\n              [\n                31.540018,\n                52.742052\n              ],\n              [\n                31.305201,\n                53.073996\n              ],\n              [\n                31.49764,\n                53.16743\n              ],\n              [\n                32.304519,\n                53.132726\n              ],\n              [\n                32.693643,\n                53.351421\n              ],\n              [\n                32.405599,\n                53.618045\n              ],\n              [\n                31.731273,\n                53.794029\n              ],\n              [\n                31.791424,\n                53.974639\n              ],\n              [\n                31.384472,\n                54.157056\n              ],\n              [\n                30.757534,\n                54.811771\n              ],\n              [\n                30.971836,\n                55.081548\n              ],\n              [\n                30.873909,\n                55.550976\n              ],\n              [\n                29.896294,\n                55.789463\n              ],\n              [\n                29.371572,\n                55.670091\n              ],\n              [\n                29.229513,\n                55.918344\n              ],\n              [\n                28.176709,\n                56.16913\n              ],\n              [\n                27.855282,\n                56.759326\n              ],\n              [\n                27.770016,\n                57.244258\n              ],\n              [\n                27.288185,\n                57.474528\n              ],\n              [\n                27.716686,\n                57.791899\n              ],\n              [\n                27.42015,\n                58.72457\n              ],\n              [\n                28.131699,\n                59.300825\n              ],\n              [\n                27.98112,\n                59.47537\n              ],\n              [\n                29.1177,\n                60.02805\n              ],\n              [\n                28.07,\n                60.50352\n              ],\n              [\n                30.211107,\n                61.780028\n              ],\n              [\n                31.139991,\n                62.357693\n              ],\n              [\n                31.516092,\n                62.867687\n              ],\n              [\n                30.035872,\n                63.552814\n              ],\n              [\n                30.444685,\n                64.204453\n              ],\n              [\n                29.54443,\n                64.948672\n              ],\n              [\n                30.21765,\n                65.80598\n              ],\n              [\n                29.054589,\n                66.944286\n              ],\n              [\n                29.977426,\n                67.698297\n              ],\n              [\n                28.445944,\n                68.364613\n              ],\n              [\n                28.59193,\n                69.064777\n              ],\n              [\n                29.39955,\n                69.15692\n              ],\n              [\n                31.10108,\n                69.55811\n              ],\n              [\n                32.13272,\n                69.90595\n              ],\n              [\n                33.77547,\n                69.30142\n              ],\n              [\n                36.51396,\n                69.06342\n              ],\n              [\n                40.29234,\n                67.9324\n              ],\n              [\n                41.05987,\n                67.45713\n              ],\n              [\n                41.12595,\n                66.79158\n              ],\n              [\n                40.01583,\n                66.26618\n              ],\n              [\n                38.38295,\n                65.99953\n              ],\n              [\n                33.91871,\n                66.75961\n              ],\n              [\n                33.18444,\n                66.63253\n              ],\n              [\n                34.81477,\n                65.90015\n              ],\n              [\n                34.878574,\n                65.436213\n              ],\n              [\n                34.94391,\n                64.41437\n              ],\n              [\n                36.23129,\n                64.10945\n              ],\n              [\n                37.01273,\n                63.84983\n              ],\n              [\n                37.14197,\n                64.33471\n              ],\n              [\n                36.539579,\n                64.76446\n              ],\n              [\n                37.17604,\n                65.14322\n              ],\n              [\n                39.59345,\n                64.52079\n              ],\n              [\n                40.4356,\n                64.76446\n              ],\n              [\n                39.7626,\n                65.49682\n              ],\n              [\n                42.09309,\n                66.47623\n              ],\n              [\n                43.01604,\n                66.41858\n              ],\n              [\n                43.94975,\n                66.06908\n              ],\n              [\n                44.53226,\n                66.75634\n              ],\n              [\n                43.69839,\n                67.35245\n              ],\n              [\n                44.18795,\n                67.95051\n              ],\n              [\n                43.45282,\n                68.57079\n              ],\n              [\n                46.25,\n                68.25\n              ],\n              [\n                46.82134,\n                67.68997\n              ],\n              [\n                45.55517,\n                67.56652\n              ],\n              [\n                45.56202,\n                67.01005\n              ],\n              [\n                46.34915,\n                66.66767\n              ],\n              [\n                47.89416,\n                66.88455\n              ],\n              [\n                48.13876,\n                67.52238\n              ],\n              [\n                50.22766,\n                67.99867\n              ],\n              [\n                53.71743,\n                68.85738\n              ],\n              [\n                54.47171,\n                68.80815\n              ],\n              [\n                53.48582,\n                68.20131\n              ],\n              [\n                54.72628,\n                68.09702\n              ],\n              [\n                55.44268,\n                68.43866\n              ],\n              [\n                57.31702,\n                68.46628\n              ],\n              [\n                58.802,\n                68.88082\n              ],\n              [\n                59.94142,\n                68.27844\n              ],\n              [\n                61.07784,\n                68.94069\n              ],\n              [\n                60.03,\n                69.52\n              ],\n              [\n                60.55,\n                69.85\n              ],\n              [\n                63.504,\n                69.54739\n              ],\n              [\n                64.888115,\n                69.234835\n              ],\n              [\n                68.51216,\n                68.09233\n              ],\n              [\n                69.18068,\n                68.61563\n              ],\n              [\n                68.16444,\n                69.14436\n              ],\n              [\n                68.13522,\n                69.35649\n              ],\n              [\n                66.93008,\n                69.45461\n              ],\n              [\n                67.25976,\n                69.92873\n              ],\n              [\n                66.72492,\n                70.70889\n              ],\n              [\n                66.69466,\n                71.02897\n              ],\n              [\n                68.54006,\n                71.9345\n              ],\n              [\n                69.19636,\n                72.84336\n              ],\n              [\n                69.94,\n                73.04\n              ],\n              [\n                72.58754,\n                72.77629\n              ],\n              [\n                72.79603,\n                72.22006\n              ],\n              [\n                71.84811,\n                71.40898\n              ],\n              [\n                72.47011,\n                71.09019\n              ],\n              [\n                72.79188,\n                70.39114\n              ],\n              [\n                72.5647,\n                69.02085\n              ],\n              [\n                73.66787,\n                68.4079\n              ],\n              [\n                73.2387,\n                67.7404\n              ],\n              [\n                71.28,\n                66.32\n              ],\n              [\n                72.42301,\n                66.17267\n              ],\n              [\n                72.82077,\n                66.53267\n              ],\n              [\n                73.92099,\n                66.78946\n              ],\n              [\n                74.18651,\n                67.28429\n              ],\n              [\n                75.052,\n                67.76047\n              ],\n              [\n                74.46926,\n                68.32899\n              ],\n              [\n                74.93584,\n                68.98918\n              ],\n              [\n                73.84236,\n                69.07146\n              ],\n              [\n                73.60187,\n                69.62763\n              ],\n              [\n                74.3998,\n                70.63175\n              ],\n              [\n                73.1011,\n                71.44717\n              ],\n              [\n                74.89082,\n                72.12119\n              ],\n              [\n                74.65926,\n                72.83227\n              ],\n              [\n                75.15801,\n                72.85497\n              ],\n              [\n                75.68351,\n                72.30056\n              ],\n              [\n                75.28898,\n                71.33556\n              ],\n              [\n                76.35911,\n                71.15287\n              ],\n              [\n                75.90313,\n                71.87401\n              ],\n              [\n                77.57665,\n                72.26717\n              ],\n              [\n                79.65202,\n                72.32011\n              ],\n              [\n                81.5,\n                71.75\n              ],\n              [\n                80.61071,\n                72.58285\n              ],\n              [\n                80.51109,\n                73.6482\n              ],\n              [\n                82.25,\n                73.85\n              ],\n              [\n                84.65526,\n                73.80591\n              ],\n              [\n                86.8223,\n                73.93688\n              ],\n              [\n                86.00956,\n                74.45967\n              ],\n              [\n                87.16682,\n                75.11643\n              ],\n              [\n                88.31571,\n                75.14393\n              ],\n              [\n                90.26,\n                75.64\n              ],\n              [\n                92.90058,\n                75.77333\n              ],\n              [\n                93.23421,\n                76.0472\n              ],\n              [\n                95.86,\n                76.14\n              ],\n              [\n                96.67821,\n                75.91548\n              ],\n              [\n                98.92254,\n                76.44689\n              ],\n              [\n                100.75967,\n                76.43028\n              ],\n              [\n                101.03532,\n                76.86189\n              ],\n              [\n                101.99084,\n                77.28754\n              ],\n              [\n                104.3516,\n                77.69792\n              ],\n              [\n                106.06664,\n                77.37389\n              ],\n              [\n                104.705,\n                77.1274\n              ],\n              [\n                106.97013,\n                76.97419\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/RUS_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              48.92249926\n            ],\n            [\n              101.25,\n              55.77657302\n            ],\n            [\n              112.5,\n              55.77657302\n            ],\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              101.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              74.01954331\n            ],\n            [\n              101.25,\n              76.84081641\n            ],\n            [\n              112.5,\n              76.84081641\n            ],\n            [\n              112.5,\n              74.01954331\n            ],\n            [\n              101.25,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              76.84081641\n            ],\n            [\n              101.25,\n              78.06198919\n            ],\n            [\n              106.875,\n              78.06198919\n            ],\n            [\n              106.875,\n              76.84081641\n            ],\n            [\n              101.25,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              76.84081641\n            ],\n            [\n              106.875,\n              78.06198919\n            ],\n            [\n              112.5,\n              78.06198919\n            ],\n            [\n              112.5,\n              76.84081641\n            ],\n            [\n              106.875,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              48.92249926\n            ],\n            [\n              112.5,\n              55.77657302\n            ],\n            [\n              123.75,\n              55.77657302\n            ],\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              112.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              55.77657302\n            ],\n            [\n              112.5,\n              66.51326044\n            ],\n            [\n              135,\n              66.51326044\n            ],\n            [\n              135,\n              55.77657302\n            ],\n            [\n              112.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              66.51326044\n            ],\n            [\n              112.5,\n              70.61261424\n            ],\n            [\n              123.75,\n              70.61261424\n            ],\n            [\n              123.75,\n              66.51326044\n            ],\n            [\n              112.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              70.61261424\n            ],\n            [\n              112.5,\n              74.01954331\n            ],\n            [\n              123.75,\n              74.01954331\n            ],\n            [\n              123.75,\n              70.61261424\n            ],\n            [\n              112.5,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              74.01954331\n            ],\n            [\n              112.5,\n              75.49715732\n            ],\n            [\n              118.125,\n              75.49715732\n            ],\n            [\n              118.125,\n              74.01954331\n            ],\n            [\n              112.5,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              112.5,\n              75.49715732\n            ],\n            [\n              112.5,\n              76.84081641\n            ],\n            [\n              118.125,\n              76.84081641\n            ],\n            [\n              118.125,\n              75.49715732\n            ],\n            [\n              112.5,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              48.92249926\n            ],\n            [\n              123.75,\n              55.77657302\n            ],\n            [\n              135,\n              55.77657302\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              123.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              66.51326044\n            ],\n            [\n              123.75,\n              70.61261424\n            ],\n            [\n              135,\n              70.61261424\n            ],\n            [\n              135,\n              66.51326044\n            ],\n            [\n              123.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              70.61261424\n            ],\n            [\n              123.75,\n              72.39570571\n            ],\n            [\n              129.375,\n              72.39570571\n            ],\n            [\n              129.375,\n              70.61261424\n            ],\n            [\n              123.75,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              72.39570571\n            ],\n            [\n              123.75,\n              74.01954331\n            ],\n            [\n              129.375,\n              74.01954331\n            ],\n            [\n              129.375,\n              72.39570571\n            ],\n            [\n              123.75,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              40.97989807\n            ],\n            [\n              129.375,\n              45.08903556\n            ],\n            [\n              135,\n              45.08903556\n            ],\n            [\n              135,\n              40.97989807\n            ],\n            [\n              129.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              45.08903556\n            ],\n            [\n              129.375,\n              48.92249926\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              135,\n              45.08903556\n            ],\n            [\n              129.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              129.375,\n              70.61261424\n            ],\n            [\n              129.375,\n              72.39570571\n            ],\n            [\n              135,\n              72.39570571\n            ],\n            [\n              135,\n              70.61261424\n            ],\n            [\n              129.375,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              40.97989807\n            ],\n            [\n              135,\n              45.08903556\n            ],\n            [\n              140.625,\n              45.08903556\n            ],\n            [\n              140.625,\n              40.97989807\n            ],\n            [\n              135,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              45.08903556\n            ],\n            [\n              135,\n              48.92249926\n            ],\n            [\n              140.625,\n              48.92249926\n            ],\n            [\n              140.625,\n              45.08903556\n            ],\n            [\n              135,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              48.92249926\n            ],\n            [\n              135,\n              55.77657302\n            ],\n            [\n              146.25,\n              55.77657302\n            ],\n            [\n              146.25,\n              48.92249926\n            ],\n            [\n              135,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              55.77657302\n            ],\n            [\n              135,\n              66.51326044\n            ],\n            [\n              157.5,\n              66.51326044\n            ],\n            [\n              157.5,\n              55.77657302\n            ],\n            [\n              135,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              66.51326044\n            ],\n            [\n              135,\n              70.61261424\n            ],\n            [\n              146.25,\n              70.61261424\n            ],\n            [\n              146.25,\n              66.51326044\n            ],\n            [\n              135,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              135,\n              70.61261424\n            ],\n            [\n              135,\n              74.01954331\n            ],\n            [\n              146.25,\n              74.01954331\n            ],\n            [\n              146.25,\n              70.61261424\n            ],\n            [\n              135,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              66.51326044\n            ],\n            [\n              146.25,\n              70.61261424\n            ],\n            [\n              157.5,\n              70.61261424\n            ],\n            [\n              157.5,\n              66.51326044\n            ],\n            [\n              146.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              70.61261424\n            ],\n            [\n              146.25,\n              72.39570571\n            ],\n            [\n              151.875,\n              72.39570571\n            ],\n            [\n              151.875,\n              70.61261424\n            ],\n            [\n              146.25,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              146.25,\n              72.39570571\n            ],\n            [\n              146.25,\n              74.01954331\n            ],\n            [\n              151.875,\n              74.01954331\n            ],\n            [\n              151.875,\n              72.39570571\n            ],\n            [\n              146.25,\n              72.39570571\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              48.92249926\n            ],\n            [\n              151.875,\n              52.48278022\n            ],\n            [\n              157.5,\n              52.48278022\n            ],\n            [\n              157.5,\n              48.92249926\n            ],\n            [\n              151.875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              52.48278022\n            ],\n            [\n              151.875,\n              55.77657302\n            ],\n            [\n              157.5,\n              55.77657302\n            ],\n            [\n              157.5,\n              52.48278022\n            ],\n            [\n              151.875,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              70.61261424\n            ],\n            [\n              151.875,\n              72.39570571\n            ],\n            [\n              157.5,\n              72.39570571\n            ],\n            [\n              157.5,\n              70.61261424\n            ],\n            [\n              151.875,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              48.92249926\n            ],\n            [\n              157.5,\n              52.48278022\n            ],\n            [\n              163.125,\n              52.48278022\n            ],\n            [\n              163.125,\n              48.92249926\n            ],\n            [\n              157.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              52.48278022\n            ],\n            [\n              157.5,\n              55.77657302\n            ],\n            [\n              163.125,\n              55.77657302\n            ],\n            [\n              163.125,\n              52.48278022\n            ],\n            [\n              157.5,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              55.77657302\n            ],\n            [\n              157.5,\n              61.60639637\n            ],\n            [\n              168.75,\n              61.60639637\n            ],\n            [\n              168.75,\n              55.77657302\n            ],\n            [\n              157.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              61.60639637\n            ],\n            [\n              157.5,\n              66.51326044\n            ],\n            [\n              168.75,\n              66.51326044\n            ],\n            [\n              168.75,\n              61.60639637\n            ],\n            [\n              157.5,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              66.51326044\n            ],\n            [\n              157.5,\n              70.61261424\n            ],\n            [\n              168.75,\n              70.61261424\n            ],\n            [\n              168.75,\n              66.51326044\n            ],\n            [\n              157.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              70.61261424\n            ],\n            [\n              157.5,\n              72.39570571\n            ],\n            [\n              163.125,\n              72.39570571\n            ],\n            [\n              163.125,\n              70.61261424\n            ],\n            [\n              157.5,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              58.81374172\n            ],\n            [\n              168.75,\n              61.60639637\n            ],\n            [\n              174.375,\n              61.60639637\n            ],\n            [\n              174.375,\n              58.81374172\n            ],\n            [\n              168.75,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              61.60639637\n            ],\n            [\n              168.75,\n              66.51326044\n            ],\n            [\n              180,\n              66.51326044\n            ],\n            [\n              180,\n              61.60639637\n            ],\n            [\n              168.75,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              168.75,\n              66.51326044\n            ],\n            [\n              168.75,\n              70.61261424\n            ],\n            [\n              180,\n              70.61261424\n            ],\n            [\n              180,\n              66.51326044\n            ],\n            [\n              168.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              180,\n              64.1681069\n            ],\n            [\n              180,\n              66.51326044\n            ],\n            [\n              185.625,\n              66.51326044\n            ],\n            [\n              185.625,\n              64.1681069\n            ],\n            [\n              180,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              180,\n              66.51326044\n            ],\n            [\n              180,\n              68.65655498\n            ],\n            [\n              185.625,\n              68.65655498\n            ],\n            [\n              185.625,\n              66.51326044\n            ],\n            [\n              180,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              180,\n              68.65655498\n            ],\n            [\n              180,\n              70.61261424\n            ],\n            [\n              185.625,\n              70.61261424\n            ],\n            [\n              185.625,\n              68.65655498\n            ],\n            [\n              180,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              22.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              33.75,\n              52.48278022\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              28.125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              28.125,\n              55.77657302\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              33.75,\n              52.48278022\n            ],\n            [\n              28.125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              61.60639637\n            ],\n            [\n              28.125,\n              64.1681069\n            ],\n            [\n              33.75,\n              64.1681069\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              28.125,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              64.1681069\n            ],\n            [\n              28.125,\n              66.51326044\n            ],\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              33.75,\n              64.1681069\n            ],\n            [\n              28.125,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              66.51326044\n            ],\n            [\n              28.125,\n              68.65655498\n            ],\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              28.125,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              68.65655498\n            ],\n            [\n              28.125,\n              70.61261424\n            ],\n            [\n              33.75,\n              70.61261424\n            ],\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              28.125,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              33.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              45,\n              55.77657302\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              33.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              55.77657302\n            ],\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              45,\n              61.60639637\n            ],\n            [\n              45,\n              55.77657302\n            ],\n            [\n              33.75,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              61.60639637\n            ],\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              45,\n              66.51326044\n            ],\n            [\n              45,\n              61.60639637\n            ],\n            [\n              33.75,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              66.51326044\n            ],\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              39.375,\n              68.65655498\n            ],\n            [\n              39.375,\n              66.51326044\n            ],\n            [\n              33.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              68.65655498\n            ],\n            [\n              33.75,\n              70.61261424\n            ],\n            [\n              39.375,\n              70.61261424\n            ],\n            [\n              39.375,\n              68.65655498\n            ],\n            [\n              33.75,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              66.51326044\n            ],\n            [\n              39.375,\n              68.65655498\n            ],\n            [\n              45,\n              68.65655498\n            ],\n            [\n              45,\n              66.51326044\n            ],\n            [\n              39.375,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              45.08903556\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              50.625,\n              48.92249926\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              45,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              48.92249926\n            ],\n            [\n              45,\n              55.77657302\n            ],\n            [\n              56.25,\n              55.77657302\n            ],\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              45,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              55.77657302\n            ],\n            [\n              45,\n              66.51326044\n            ],\n            [\n              67.5,\n              66.51326044\n            ],\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              45,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              66.51326044\n            ],\n            [\n              45,\n              68.65655498\n            ],\n            [\n              50.625,\n              68.65655498\n            ],\n            [\n              50.625,\n              66.51326044\n            ],\n            [\n              45,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              66.51326044\n            ],\n            [\n              50.625,\n              68.65655498\n            ],\n            [\n              56.25,\n              68.65655498\n            ],\n            [\n              56.25,\n              66.51326044\n            ],\n            [\n              50.625,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              68.65655498\n            ],\n            [\n              50.625,\n              70.61261424\n            ],\n            [\n              56.25,\n              70.61261424\n            ],\n            [\n              56.25,\n              68.65655498\n            ],\n            [\n              50.625,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              56.25,\n              52.48278022\n            ],\n            [\n              61.875,\n              52.48278022\n            ],\n            [\n              61.875,\n              48.92249926\n            ],\n            [\n              56.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              52.48278022\n            ],\n            [\n              56.25,\n              55.77657302\n            ],\n            [\n              61.875,\n              55.77657302\n            ],\n            [\n              61.875,\n              52.48278022\n            ],\n            [\n              56.25,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              66.51326044\n            ],\n            [\n              56.25,\n              70.61261424\n            ],\n            [\n              67.5,\n              70.61261424\n            ],\n            [\n              67.5,\n              66.51326044\n            ],\n            [\n              56.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              52.48278022\n            ],\n            [\n              61.875,\n              55.77657302\n            ],\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              67.5,\n              52.48278022\n            ],\n            [\n              61.875,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              70.61261424\n            ],\n            [\n              61.875,\n              72.39570571\n            ],\n            [\n              67.5,\n              72.39570571\n            ],\n            [\n              67.5,\n              70.61261424\n            ],\n            [\n              61.875,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              52.48278022\n            ],\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              73.125,\n              55.77657302\n            ],\n            [\n              73.125,\n              52.48278022\n            ],\n            [\n              67.5,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              55.77657302\n            ],\n            [\n              67.5,\n              66.51326044\n            ],\n            [\n              90,\n              66.51326044\n            ],\n            [\n              90,\n              55.77657302\n            ],\n            [\n              67.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              66.51326044\n            ],\n            [\n              67.5,\n              74.01954331\n            ],\n            [\n              90,\n              74.01954331\n            ],\n            [\n              90,\n              66.51326044\n            ],\n            [\n              67.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              48.92249926\n            ],\n            [\n              73.125,\n              52.48278022\n            ],\n            [\n              78.75,\n              52.48278022\n            ],\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              73.125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              52.48278022\n            ],\n            [\n              73.125,\n              55.77657302\n            ],\n            [\n              78.75,\n              55.77657302\n            ],\n            [\n              78.75,\n              52.48278022\n            ],\n            [\n              73.125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              78.75,\n              48.92249926\n            ],\n            [\n              78.75,\n              55.77657302\n            ],\n            [\n              90,\n              55.77657302\n            ],\n            [\n              90,\n              48.92249926\n            ],\n            [\n              78.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              74.01954331\n            ],\n            [\n              84.375,\n              75.49715732\n            ],\n            [\n              90,\n              75.49715732\n            ],\n            [\n              90,\n              74.01954331\n            ],\n            [\n              84.375,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              84.375,\n              75.49715732\n            ],\n            [\n              84.375,\n              76.84081641\n            ],\n            [\n              90,\n              76.84081641\n            ],\n            [\n              90,\n              75.49715732\n            ],\n            [\n              84.375,\n              75.49715732\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              48.92249926\n            ],\n            [\n              90,\n              55.77657302\n            ],\n            [\n              101.25,\n              55.77657302\n            ],\n            [\n              101.25,\n              48.92249926\n            ],\n            [\n              90,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              55.77657302\n            ],\n            [\n              90,\n              66.51326044\n            ],\n            [\n              112.5,\n              66.51326044\n            ],\n            [\n              112.5,\n              55.77657302\n            ],\n            [\n              90,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              66.51326044\n            ],\n            [\n              90,\n              74.01954331\n            ],\n            [\n              112.5,\n              74.01954331\n            ],\n            [\n              112.5,\n              66.51326044\n            ],\n            [\n              90,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              90,\n              74.01954331\n            ],\n            [\n              90,\n              76.84081641\n            ],\n            [\n              101.25,\n              76.84081641\n            ],\n            [\n              101.25,\n              74.01954331\n            ],\n            [\n              90,\n              74.01954331\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              76.84081641\n            ],\n            [\n              95.625,\n              78.06198919\n            ],\n            [\n              101.25,\n              78.06198919\n            ],\n            [\n              101.25,\n              76.84081641\n            ],\n            [\n              95.625,\n              76.84081641\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                106.97013,\n                76.97419\n              ],\n              [\n                107.24,\n                76.48\n              ],\n              [\n                108.1538,\n                76.72335\n              ],\n              [\n                111.07726,\n                76.71\n              ],\n              [\n                113.33151,\n                76.22224\n              ],\n              [\n                114.13417,\n                75.84764\n              ],\n              [\n                113.88539,\n                75.32779\n              ],\n              [\n                112.77918,\n                75.03186\n              ],\n              [\n                110.15125,\n                74.47673\n              ],\n              [\n                109.4,\n                74.18\n              ],\n              [\n                110.64,\n                74.04\n              ],\n              [\n                112.11919,\n                73.78774\n              ],\n              [\n                113.01954,\n                73.97693\n              ],\n              [\n                113.52958,\n                73.33505\n              ],\n              [\n                113.96881,\n                73.59488\n              ],\n              [\n                115.56782,\n                73.75285\n              ],\n              [\n                118.77633,\n                73.58772\n              ],\n              [\n                119.02,\n                73.12\n              ],\n              [\n                123.20066,\n                72.97122\n              ],\n              [\n                123.25777,\n                73.73503\n              ],\n              [\n                125.38,\n                73.56\n              ],\n              [\n                126.97644,\n                73.56549\n              ],\n              [\n                128.59126,\n                73.03871\n              ],\n              [\n                129.05157,\n                72.39872\n              ],\n              [\n                128.46,\n                71.98\n              ],\n              [\n                129.71599,\n                71.19304\n              ],\n              [\n                131.28858,\n                70.78699\n              ],\n              [\n                132.2535,\n                71.8363\n              ],\n              [\n                133.85766,\n                71.38642\n              ],\n              [\n                135.56193,\n                71.65525\n              ],\n              [\n                137.49755,\n                71.34763\n              ],\n              [\n                138.23409,\n                71.62803\n              ],\n              [\n                139.86983,\n                71.48783\n              ],\n              [\n                139.14791,\n                72.41619\n              ],\n              [\n                140.46817,\n                72.84941\n              ],\n              [\n                149.5,\n                72.2\n              ],\n              [\n                150.35118,\n                71.60643\n              ],\n              [\n                152.9689,\n                70.84222\n              ],\n              [\n                157.00688,\n                71.03141\n              ],\n              [\n                158.99779,\n                70.86672\n              ],\n              [\n                159.83031,\n                70.45324\n              ],\n              [\n                159.70866,\n                69.72198\n              ],\n              [\n                160.94053,\n                69.43728\n              ],\n              [\n                162.27907,\n                69.64204\n              ],\n              [\n                164.05248,\n                69.66823\n              ],\n              [\n                165.94037,\n                69.47199\n              ],\n              [\n                167.83567,\n                69.58269\n              ],\n              [\n                169.57763,\n                68.6938\n              ],\n              [\n                170.81688,\n                69.01363\n              ],\n              [\n                170.0082,\n                69.65276\n              ],\n              [\n                170.45345,\n                70.09703\n              ],\n              [\n                173.64391,\n                69.81743\n              ],\n              [\n                175.72403,\n                69.87725\n              ],\n              [\n                178.6,\n                69.4\n              ],\n              [\n                180,\n                68.963636\n              ],\n              [\n                180,\n                64.979709\n              ],\n              [\n                179.99281,\n                64.97433\n              ],\n              [\n                178.7072,\n                64.53493\n              ],\n              [\n                177.41128,\n                64.60821\n              ],\n              [\n                178.313,\n                64.07593\n              ],\n              [\n                178.90825,\n                63.25197\n              ],\n              [\n                179.37034,\n                62.98262\n              ],\n              [\n                179.48636,\n                62.56894\n              ],\n              [\n                179.22825,\n                62.3041\n              ],\n              [\n                177.3643,\n                62.5219\n              ],\n              [\n                174.56929,\n                61.76915\n              ],\n              [\n                173.68013,\n                61.65261\n              ],\n              [\n                172.15,\n                60.95\n              ],\n              [\n                170.6985,\n                60.33618\n              ],\n              [\n                170.33085,\n                59.88177\n              ],\n              [\n                168.90046,\n                60.57355\n              ],\n              [\n                166.29498,\n                59.78855\n              ],\n              [\n                165.84,\n                60.16\n              ],\n              [\n                164.87674,\n                59.7316\n              ],\n              [\n                163.53929,\n                59.86871\n              ],\n              [\n                163.21711,\n                59.21101\n              ],\n              [\n                162.01733,\n                58.24328\n              ],\n              [\n                162.05297,\n                57.83912\n              ],\n              [\n                163.19191,\n                57.61503\n              ],\n              [\n                163.05794,\n                56.15924\n              ],\n              [\n                162.12958,\n                56.12219\n              ],\n              [\n                161.70146,\n                55.28568\n              ],\n              [\n                162.11749,\n                54.85514\n              ],\n              [\n                160.36877,\n                54.34433\n              ],\n              [\n                160.02173,\n                53.20257\n              ],\n              [\n                158.53094,\n                52.95868\n              ],\n              [\n                158.23118,\n                51.94269\n              ],\n              [\n                156.78979,\n                51.01105\n              ],\n              [\n                156.42,\n                51.7\n              ],\n              [\n                155.99182,\n                53.15895\n              ],\n              [\n                155.43366,\n                55.38103\n              ],\n              [\n                155.91442,\n                56.76792\n              ],\n              [\n                156.75815,\n                57.3647\n              ],\n              [\n                156.81035,\n                57.83204\n              ],\n              [\n                158.36433,\n                58.05575\n              ],\n              [\n                160.15064,\n                59.31477\n              ],\n              [\n                161.87204,\n                60.343\n              ],\n              [\n                163.66969,\n                61.1409\n              ],\n              [\n                164.47355,\n                62.55061\n              ],\n              [\n                163.25842,\n                62.46627\n              ],\n              [\n                162.65791,\n                61.6425\n              ],\n              [\n                160.12148,\n                60.54423\n              ],\n              [\n                159.30232,\n                61.77396\n              ],\n              [\n                156.72068,\n                61.43442\n              ],\n              [\n                154.21806,\n                59.75818\n              ],\n              [\n                155.04375,\n                59.14495\n              ],\n              [\n                152.81185,\n                58.88385\n              ],\n              [\n                151.26573,\n                58.78089\n              ],\n              [\n                151.33815,\n                59.50396\n              ],\n              [\n                149.78371,\n                59.65573\n              ],\n              [\n                148.54481,\n                59.16448\n              ],\n              [\n                145.48722,\n                59.33637\n              ],\n              [\n                142.19782,\n                59.03998\n              ],\n              [\n                138.95848,\n                57.08805\n              ],\n              [\n                135.12619,\n                54.72959\n              ],\n              [\n                136.70171,\n                54.60355\n              ],\n              [\n                137.19342,\n                53.97732\n              ],\n              [\n                138.1647,\n                53.75501\n              ],\n              [\n                138.80463,\n                54.25455\n              ],\n              [\n                139.90151,\n                54.18968\n              ],\n              [\n                141.34531,\n                53.08957\n              ],\n              [\n                141.37923,\n                52.23877\n              ],\n              [\n                140.59742,\n                51.23967\n              ],\n              [\n                140.51308,\n                50.04553\n              ],\n              [\n                140.06193,\n                48.44671\n              ],\n              [\n                138.55472,\n                46.99965\n              ],\n              [\n                138.21971,\n                46.30795\n              ],\n              [\n                136.86232,\n                45.1435\n              ],\n              [\n                135.51535,\n                43.989\n              ],\n              [\n                134.86939,\n                43.39821\n              ],\n              [\n                133.53687,\n                42.81147\n              ],\n              [\n                132.90627,\n                42.79849\n              ],\n              [\n                132.27807,\n                43.28456\n              ],\n              [\n                130.93587,\n                42.55274\n              ],\n              [\n                130.78,\n                42.22\n              ],\n              [\n                130.64,\n                42.395\n              ],\n              [\n                130.633866,\n                42.903015\n              ],\n              [\n                131.144688,\n                42.92999\n              ],\n              [\n                131.288555,\n                44.11152\n              ],\n              [\n                131.02519,\n                44.96796\n              ],\n              [\n                131.883454,\n                45.321162\n              ],\n              [\n                133.09712,\n                45.14409\n              ],\n              [\n                133.769644,\n                46.116927\n              ],\n              [\n                134.11235,\n                47.21248\n              ],\n              [\n                134.50081,\n                47.57845\n              ],\n              [\n                135.026311,\n                48.47823\n              ],\n              [\n                133.373596,\n                48.183442\n              ],\n              [\n                132.50669,\n                47.78896\n              ],\n              [\n                130.98726,\n                47.79013\n              ],\n              [\n                130.582293,\n                48.729687\n              ],\n              [\n                129.397818,\n                49.4406\n              ],\n              [\n                127.6574,\n                49.76027\n              ],\n              [\n                127.287456,\n                50.739797\n              ],\n              [\n                126.939157,\n                51.353894\n              ],\n              [\n                126.564399,\n                51.784255\n              ],\n              [\n                125.946349,\n                52.792799\n              ],\n              [\n                125.068211,\n                53.161045\n              ],\n              [\n                123.57147,\n                53.4588\n              ],\n              [\n                122.245748,\n                53.431726\n              ],\n              [\n                121.003085,\n                53.251401\n              ],\n              [\n                120.177089,\n                52.753886\n              ],\n              [\n                120.725789,\n                52.516226\n              ],\n              [\n                120.7382,\n                51.96411\n              ],\n              [\n                120.18208,\n                51.64355\n              ],\n              [\n                119.27939,\n                50.58292\n              ],\n              [\n                119.288461,\n                50.142883\n              ],\n              [\n                117.879244,\n                49.510983\n              ],\n              [\n                116.678801,\n                49.888531\n              ],\n              [\n                115.485695,\n                49.805177\n              ],\n              [\n                114.96211,\n                50.140247\n              ],\n              [\n                114.362456,\n                50.248303\n              ],\n              [\n                112.89774,\n                49.543565\n              ],\n              [\n                111.581231,\n                49.377968\n              ],\n              [\n                110.662011,\n                49.130128\n              ],\n              [\n                109.402449,\n                49.292961\n              ],\n              [\n                108.475167,\n                49.282548\n              ],\n              [\n                107.868176,\n                49.793705\n              ],\n              [\n                106.888804,\n                50.274296\n              ],\n              [\n                105.886591,\n                50.406019\n              ],\n              [\n                104.62158,\n                50.27532\n              ],\n              [\n                103.676545,\n                50.089966\n              ],\n              [\n                102.25589,\n                50.51056\n              ],\n              [\n                102.06521,\n                51.25991\n              ],\n              [\n                100.88948,\n                51.516856\n              ],\n              [\n                99.981732,\n                51.634006\n              ],\n              [\n                98.861491,\n                52.047366\n              ],\n              [\n                97.82574,\n                51.010995\n              ],\n              [\n                98.231762,\n                50.422401\n              ],\n              [\n                97.25976,\n                49.72605\n              ],\n              [\n                95.81402,\n                49.97746\n              ],\n              [\n                94.815949,\n                50.013433\n              ],\n              [\n                94.147566,\n                50.480537\n              ],\n              [\n                93.10421,\n                50.49529\n              ],\n              [\n                92.234712,\n                50.802171\n              ],\n              [\n                90.713667,\n                50.331812\n              ],\n              [\n                88.805567,\n                49.470521\n              ],\n              [\n                87.751264,\n                49.297198\n              ],\n              [\n                87.35997,\n                49.214981\n              ],\n              [\n                86.829357,\n                49.826675\n              ],\n              [\n                85.54127,\n                49.692859\n              ],\n              [\n                85.11556,\n                50.117303\n              ],\n              [\n                84.416377,\n                50.3114\n              ],\n              [\n                83.935115,\n                50.889246\n              ],\n              [\n                83.383004,\n                51.069183\n              ],\n              [\n                81.945986,\n                50.812196\n              ],\n              [\n                80.568447,\n                51.388336\n              ],\n              [\n                80.03556,\n                50.864751\n              ],\n              [\n                77.800916,\n                53.404415\n              ],\n              [\n                76.525179,\n                54.177003\n              ],\n              [\n                76.8911,\n                54.490524\n              ],\n              [\n                74.38482,\n                53.54685\n              ],\n              [\n                73.425679,\n                53.48981\n              ],\n              [\n                73.508516,\n                54.035617\n              ],\n              [\n                72.22415,\n                54.376655\n              ],\n              [\n                71.180131,\n                54.133285\n              ],\n              [\n                70.865267,\n                55.169734\n              ],\n              [\n                69.068167,\n                55.38525\n              ],\n              [\n                68.1691,\n                54.970392\n              ],\n              [\n                65.66687,\n                54.60125\n              ],\n              [\n                65.178534,\n                54.354228\n              ],\n              [\n                61.4366,\n                54.00625\n              ],\n              [\n                60.978066,\n                53.664993\n              ],\n              [\n                61.699986,\n                52.979996\n              ],\n              [\n                60.739993,\n                52.719986\n              ],\n              [\n                60.927269,\n                52.447548\n              ],\n              [\n                59.967534,\n                51.96042\n              ],\n              [\n                61.588003,\n                51.272659\n              ],\n              [\n                61.337424,\n                50.79907\n              ],\n              [\n                59.932807,\n                50.842194\n              ],\n              [\n                59.642282,\n                50.545442\n              ],\n              [\n                58.36332,\n                51.06364\n              ],\n              [\n                56.77798,\n                51.04355\n              ],\n              [\n                55.71694,\n                50.62171\n              ],\n              [\n                54.532878,\n                51.02624\n              ],\n              [\n                52.328724,\n                51.718652\n              ],\n              [\n                50.766648,\n                51.692762\n              ],\n              [\n                48.702382,\n                50.605128\n              ],\n              [\n                48.577841,\n                49.87476\n              ],\n              [\n                47.54948,\n                50.454698\n              ],\n              [\n                46.751596,\n                49.356006\n              ],\n              [\n                47.043672,\n                49.152039\n              ],\n              [\n                46.466446,\n                48.394152\n              ],\n              [\n                47.31524,\n                47.71585\n              ],\n              [\n                48.05725,\n                47.74377\n              ],\n              [\n                48.694734,\n                47.075628\n              ],\n              [\n                48.59325,\n                46.56104\n              ],\n              [\n                49.10116,\n                46.39933\n              ],\n              [\n                48.64541,\n                45.80629\n              ],\n              [\n                47.67591,\n                45.64149\n              ],\n              [\n                46.68201,\n                44.6092\n              ],\n              [\n                47.59094,\n                43.66016\n              ],\n              [\n                47.49252,\n                42.98658\n              ],\n              [\n                48.58437,\n                41.80888\n              ],\n              [\n                47.987283,\n                41.405819\n              ],\n              [\n                47.815666,\n                41.151416\n              ],\n              [\n                47.373315,\n                41.219732\n              ],\n              [\n                46.686071,\n                41.827137\n              ],\n              [\n                46.404951,\n                41.860675\n              ],\n              [\n                45.7764,\n                42.09244\n              ],\n              [\n                45.470279,\n                42.502781\n              ],\n              [\n                44.537623,\n                42.711993\n              ],\n              [\n                43.93121,\n                42.55496\n              ],\n              [\n                43.75599,\n                42.74083\n              ],\n              [\n                42.3944,\n                43.2203\n              ],\n              [\n                40.92219,\n                43.38215\n              ],\n              [\n                40.076965,\n                43.553104\n              ],\n              [\n                39.955009,\n                43.434998\n              ],\n              [\n                38.68,\n                44.28\n              ],\n              [\n                37.53912,\n                44.65721\n              ],\n              [\n                36.67546,\n                45.24469\n              ],\n              [\n                37.40317,\n                45.40451\n              ],\n              [\n                38.23295,\n                46.24087\n              ],\n              [\n                37.67372,\n                46.63657\n              ],\n              [\n                39.14767,\n                47.04475\n              ],\n              [\n                39.1212,\n                47.26336\n              ],\n              [\n                38.223538,\n                47.10219\n              ],\n              [\n                38.255112,\n                47.5464\n              ],\n              [\n                38.77057,\n                47.82562\n              ],\n              [\n                39.738278,\n                47.898937\n              ],\n              [\n                39.89562,\n                48.23241\n              ],\n              [\n                39.67465,\n                48.78382\n              ],\n              [\n                40.080789,\n                49.30743\n              ],\n              [\n                40.06904,\n                49.60105\n              ],\n              [\n                38.594988,\n                49.926462\n              ],\n              [\n                38.010631,\n                49.915662\n              ],\n              [\n                37.39346,\n                50.383953\n              ],\n              [\n                36.626168,\n                50.225591\n              ],\n              [\n                35.356116,\n                50.577197\n              ],\n              [\n                35.37791,\n                50.77394\n              ],\n              [\n                35.022183,\n                51.207572\n              ],\n              [\n                34.224816,\n                51.255993\n              ],\n              [\n                34.141978,\n                51.566413\n              ],\n              [\n                34.391731,\n                51.768882\n              ],\n              [\n                33.7527,\n                52.335075\n              ],\n              [\n                32.715761,\n                52.238465\n              ],\n              [\n                32.412058,\n                52.288695\n              ],\n              [\n                32.15944,\n                52.06125\n              ],\n              [\n                31.78597,\n                52.10168\n              ],\n              [\n                31.540018,\n                52.742052\n              ],\n              [\n                31.305201,\n                53.073996\n              ],\n              [\n                31.49764,\n                53.16743\n              ],\n              [\n                32.304519,\n                53.132726\n              ],\n              [\n                32.693643,\n                53.351421\n              ],\n              [\n                32.405599,\n                53.618045\n              ],\n              [\n                31.731273,\n                53.794029\n              ],\n              [\n                31.791424,\n                53.974639\n              ],\n              [\n                31.384472,\n                54.157056\n              ],\n              [\n                30.757534,\n                54.811771\n              ],\n              [\n                30.971836,\n                55.081548\n              ],\n              [\n                30.873909,\n                55.550976\n              ],\n              [\n                29.896294,\n                55.789463\n              ],\n              [\n                29.371572,\n                55.670091\n              ],\n              [\n                29.229513,\n                55.918344\n              ],\n              [\n                28.176709,\n                56.16913\n              ],\n              [\n                27.855282,\n                56.759326\n              ],\n              [\n                27.770016,\n                57.244258\n              ],\n              [\n                27.288185,\n                57.474528\n              ],\n              [\n                27.716686,\n                57.791899\n              ],\n              [\n                27.42015,\n                58.72457\n              ],\n              [\n                28.131699,\n                59.300825\n              ],\n              [\n                27.98112,\n                59.47537\n              ],\n              [\n                29.1177,\n                60.02805\n              ],\n              [\n                28.07,\n                60.50352\n              ],\n              [\n                30.211107,\n                61.780028\n              ],\n              [\n                31.139991,\n                62.357693\n              ],\n              [\n                31.516092,\n                62.867687\n              ],\n              [\n                30.035872,\n                63.552814\n              ],\n              [\n                30.444685,\n                64.204453\n              ],\n              [\n                29.54443,\n                64.948672\n              ],\n              [\n                30.21765,\n                65.80598\n              ],\n              [\n                29.054589,\n                66.944286\n              ],\n              [\n                29.977426,\n                67.698297\n              ],\n              [\n                28.445944,\n                68.364613\n              ],\n              [\n                28.59193,\n                69.064777\n              ],\n              [\n                29.39955,\n                69.15692\n              ],\n              [\n                31.10108,\n                69.55811\n              ],\n              [\n                32.13272,\n                69.90595\n              ],\n              [\n                33.77547,\n                69.30142\n              ],\n              [\n                36.51396,\n                69.06342\n              ],\n              [\n                40.29234,\n                67.9324\n              ],\n              [\n                41.05987,\n                67.45713\n              ],\n              [\n                41.12595,\n                66.79158\n              ],\n              [\n                40.01583,\n                66.26618\n              ],\n              [\n                38.38295,\n                65.99953\n              ],\n              [\n                33.91871,\n                66.75961\n              ],\n              [\n                33.18444,\n                66.63253\n              ],\n              [\n                34.81477,\n                65.90015\n              ],\n              [\n                34.878574,\n                65.436213\n              ],\n              [\n                34.94391,\n                64.41437\n              ],\n              [\n                36.23129,\n                64.10945\n              ],\n              [\n                37.01273,\n                63.84983\n              ],\n              [\n                37.14197,\n                64.33471\n              ],\n              [\n                36.539579,\n                64.76446\n              ],\n              [\n                37.17604,\n                65.14322\n              ],\n              [\n                39.59345,\n                64.52079\n              ],\n              [\n                40.4356,\n                64.76446\n              ],\n              [\n                39.7626,\n                65.49682\n              ],\n              [\n                42.09309,\n                66.47623\n              ],\n              [\n                43.01604,\n                66.41858\n              ],\n              [\n                43.94975,\n                66.06908\n              ],\n              [\n                44.53226,\n                66.75634\n              ],\n              [\n                43.69839,\n                67.35245\n              ],\n              [\n                44.18795,\n                67.95051\n              ],\n              [\n                43.45282,\n                68.57079\n              ],\n              [\n                46.25,\n                68.25\n              ],\n              [\n                46.82134,\n                67.68997\n              ],\n              [\n                45.55517,\n                67.56652\n              ],\n              [\n                45.56202,\n                67.01005\n              ],\n              [\n                46.34915,\n                66.66767\n              ],\n              [\n                47.89416,\n                66.88455\n              ],\n              [\n                48.13876,\n                67.52238\n              ],\n              [\n                50.22766,\n                67.99867\n              ],\n              [\n                53.71743,\n                68.85738\n              ],\n              [\n                54.47171,\n                68.80815\n              ],\n              [\n                53.48582,\n                68.20131\n              ],\n              [\n                54.72628,\n                68.09702\n              ],\n              [\n                55.44268,\n                68.43866\n              ],\n              [\n                57.31702,\n                68.46628\n              ],\n              [\n                58.802,\n                68.88082\n              ],\n              [\n                59.94142,\n                68.27844\n              ],\n              [\n                61.07784,\n                68.94069\n              ],\n              [\n                60.03,\n                69.52\n              ],\n              [\n                60.55,\n                69.85\n              ],\n              [\n                63.504,\n                69.54739\n              ],\n              [\n                64.888115,\n                69.234835\n              ],\n              [\n                68.51216,\n                68.09233\n              ],\n              [\n                69.18068,\n                68.61563\n              ],\n              [\n                68.16444,\n                69.14436\n              ],\n              [\n                68.13522,\n                69.35649\n              ],\n              [\n                66.93008,\n                69.45461\n              ],\n              [\n                67.25976,\n                69.92873\n              ],\n              [\n                66.72492,\n                70.70889\n              ],\n              [\n                66.69466,\n                71.02897\n              ],\n              [\n                68.54006,\n                71.9345\n              ],\n              [\n                69.19636,\n                72.84336\n              ],\n              [\n                69.94,\n                73.04\n              ],\n              [\n                72.58754,\n                72.77629\n              ],\n              [\n                72.79603,\n                72.22006\n              ],\n              [\n                71.84811,\n                71.40898\n              ],\n              [\n                72.47011,\n                71.09019\n              ],\n              [\n                72.79188,\n                70.39114\n              ],\n              [\n                72.5647,\n                69.02085\n              ],\n              [\n                73.66787,\n                68.4079\n              ],\n              [\n                73.2387,\n                67.7404\n              ],\n              [\n                71.28,\n                66.32\n              ],\n              [\n                72.42301,\n                66.17267\n              ],\n              [\n                72.82077,\n                66.53267\n              ],\n              [\n                73.92099,\n                66.78946\n              ],\n              [\n                74.18651,\n                67.28429\n              ],\n              [\n                75.052,\n                67.76047\n              ],\n              [\n                74.46926,\n                68.32899\n              ],\n              [\n                74.93584,\n                68.98918\n              ],\n              [\n                73.84236,\n                69.07146\n              ],\n              [\n                73.60187,\n                69.62763\n              ],\n              [\n                74.3998,\n                70.63175\n              ],\n              [\n                73.1011,\n                71.44717\n              ],\n              [\n                74.89082,\n                72.12119\n              ],\n              [\n                74.65926,\n                72.83227\n              ],\n              [\n                75.15801,\n                72.85497\n              ],\n              [\n                75.68351,\n                72.30056\n              ],\n              [\n                75.28898,\n                71.33556\n              ],\n              [\n                76.35911,\n                71.15287\n              ],\n              [\n                75.90313,\n                71.87401\n              ],\n              [\n                77.57665,\n                72.26717\n              ],\n              [\n                79.65202,\n                72.32011\n              ],\n              [\n                81.5,\n                71.75\n              ],\n              [\n                80.61071,\n                72.58285\n              ],\n              [\n                80.51109,\n                73.6482\n              ],\n              [\n                82.25,\n                73.85\n              ],\n              [\n                84.65526,\n                73.80591\n              ],\n              [\n                86.8223,\n                73.93688\n              ],\n              [\n                86.00956,\n                74.45967\n              ],\n              [\n                87.16682,\n                75.11643\n              ],\n              [\n                88.31571,\n                75.14393\n              ],\n              [\n                90.26,\n                75.64\n              ],\n              [\n                92.90058,\n                75.77333\n              ],\n              [\n                93.23421,\n                76.0472\n              ],\n              [\n                95.86,\n                76.14\n              ],\n              [\n                96.67821,\n                75.91548\n              ],\n              [\n                98.92254,\n                76.44689\n              ],\n              [\n                100.75967,\n                76.43028\n              ],\n              [\n                101.03532,\n                76.86189\n              ],\n              [\n                101.99084,\n                77.28754\n              ],\n              [\n                104.3516,\n                77.69792\n              ],\n              [\n                106.06664,\n                77.37389\n              ],\n              [\n                104.705,\n                77.1274\n              ],\n              [\n                106.97013,\n                76.97419\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/RWA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"RWA\",\"properties\":{\"name\":\"Rwanda\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[30.419105,-1.134659],[30.816135,-1.698914],[30.758309,-2.28725],[30.469696,-2.413858],[29.938359,-2.348487],[29.632176,-2.917858],[29.024926,-2.839258],[29.117479,-2.292211],[29.254835,-2.21511],[29.291887,-1.620056],[29.579466,-1.341313],[29.821519,-1.443322],[30.419105,-1.134659]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/RWA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              28.125,\n              0\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              28.125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              30.419105,\n              -1.134659\n            ],\n            [\n              30.816135,\n              -1.698914\n            ],\n            [\n              30.758309,\n              -2.28725\n            ],\n            [\n              30.469696,\n              -2.413858\n            ],\n            [\n              29.938359,\n              -2.348487\n            ],\n            [\n              29.632176,\n              -2.917858\n            ],\n            [\n              29.024926,\n              -2.839258\n            ],\n            [\n              29.117479,\n              -2.292211\n            ],\n            [\n              29.254835,\n              -2.21511\n            ],\n            [\n              29.291887,\n              -1.620056\n            ],\n            [\n              29.579466,\n              -1.341313\n            ],\n            [\n              29.821519,\n              -1.443322\n            ],\n            [\n              30.419105,\n              -1.134659\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SAU.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SAU\",\"properties\":{\"name\":\"Saudi Arabia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[42.779332,16.347891],[42.649573,16.774635],[42.347989,17.075806],[42.270888,17.474722],[41.754382,17.833046],[41.221391,18.6716],[40.939341,19.486485],[40.247652,20.174635],[39.801685,20.338862],[39.139399,21.291905],[39.023696,21.986875],[39.066329,22.579656],[38.492772,23.688451],[38.02386,24.078686],[37.483635,24.285495],[37.154818,24.858483],[37.209491,25.084542],[36.931627,25.602959],[36.639604,25.826228],[36.249137,26.570136],[35.640182,27.37652],[35.130187,28.063352],[34.632336,28.058546],[34.787779,28.607427],[34.83222,28.957483],[34.956037,29.356555],[36.068941,29.197495],[36.501214,29.505254],[36.740528,29.865283],[37.503582,30.003776],[37.66812,30.338665],[37.998849,30.5085],[37.002166,31.508413],[39.004886,32.010217],[39.195468,32.161009],[40.399994,31.889992],[41.889981,31.190009],[44.709499,29.178891],[46.568713,29.099025],[47.459822,29.002519],[47.708851,28.526063],[48.416094,28.552004],[48.807595,27.689628],[49.299554,27.461218],[49.470914,27.109999],[50.152422,26.689663],[50.212935,26.277027],[50.113303,25.943972],[50.239859,25.60805],[50.527387,25.327808],[50.660557,24.999896],[50.810108,24.754743],[51.112415,24.556331],[51.389608,24.627386],[51.579519,24.245497],[51.617708,24.014219],[52.000733,23.001154],[55.006803,22.496948],[55.208341,22.70833],[55.666659,22.000001],[54.999982,19.999994],[52.00001,19.000003],[49.116672,18.616668],[48.183344,18.166669],[47.466695,17.116682],[47.000005,16.949999],[46.749994,17.283338],[46.366659,17.233315],[45.399999,17.333335],[45.216651,17.433329],[44.062613,17.410359],[43.791519,17.319977],[43.380794,17.579987],[43.115798,17.08844],[43.218375,16.66689],[42.779332,16.347891]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SAU_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              16.63619188\n            ],\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              39.375,\n              21.94304553\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              33.75,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              45,\n              21.94304553\n            ],\n            [\n              33.75,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              45,\n              16.63619188\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              39.375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              39.375,\n              21.94304553\n            ],\n            [\n              45,\n              21.94304553\n            ],\n            [\n              45,\n              16.63619188\n            ],\n            [\n              39.375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              45,\n              36.59788913\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              39.375,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              16.63619188\n            ],\n            [\n              45,\n              21.94304553\n            ],\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              50.625,\n              16.63619188\n            ],\n            [\n              45,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              21.94304553\n            ],\n            [\n              45,\n              27.05912578\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              45,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              27.05912578\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              50.625,\n              31.95216224\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              45,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              16.63619188\n            ],\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              56.25,\n              16.63619188\n            ],\n            [\n              50.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              21.94304553\n            ],\n            [\n              50.625,\n              27.05912578\n            ],\n            [\n              56.25,\n              27.05912578\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              50.625,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              42.779332,\n              16.347891\n            ],\n            [\n              42.649573,\n              16.774635\n            ],\n            [\n              42.347989,\n              17.075806\n            ],\n            [\n              42.270888,\n              17.474722\n            ],\n            [\n              41.754382,\n              17.833046\n            ],\n            [\n              41.221391,\n              18.6716\n            ],\n            [\n              40.939341,\n              19.486485\n            ],\n            [\n              40.247652,\n              20.174635\n            ],\n            [\n              39.801685,\n              20.338862\n            ],\n            [\n              39.139399,\n              21.291905\n            ],\n            [\n              39.023696,\n              21.986875\n            ],\n            [\n              39.066329,\n              22.579656\n            ],\n            [\n              38.492772,\n              23.688451\n            ],\n            [\n              38.02386,\n              24.078686\n            ],\n            [\n              37.483635,\n              24.285495\n            ],\n            [\n              37.154818,\n              24.858483\n            ],\n            [\n              37.209491,\n              25.084542\n            ],\n            [\n              36.931627,\n              25.602959\n            ],\n            [\n              36.639604,\n              25.826228\n            ],\n            [\n              36.249137,\n              26.570136\n            ],\n            [\n              35.640182,\n              27.37652\n            ],\n            [\n              35.130187,\n              28.063352\n            ],\n            [\n              34.632336,\n              28.058546\n            ],\n            [\n              34.787779,\n              28.607427\n            ],\n            [\n              34.83222,\n              28.957483\n            ],\n            [\n              34.956037,\n              29.356555\n            ],\n            [\n              36.068941,\n              29.197495\n            ],\n            [\n              36.501214,\n              29.505254\n            ],\n            [\n              36.740528,\n              29.865283\n            ],\n            [\n              37.503582,\n              30.003776\n            ],\n            [\n              37.66812,\n              30.338665\n            ],\n            [\n              37.998849,\n              30.5085\n            ],\n            [\n              37.002166,\n              31.508413\n            ],\n            [\n              39.004886,\n              32.010217\n            ],\n            [\n              39.195468,\n              32.161009\n            ],\n            [\n              40.399994,\n              31.889992\n            ],\n            [\n              41.889981,\n              31.190009\n            ],\n            [\n              44.709499,\n              29.178891\n            ],\n            [\n              46.568713,\n              29.099025\n            ],\n            [\n              47.459822,\n              29.002519\n            ],\n            [\n              47.708851,\n              28.526063\n            ],\n            [\n              48.416094,\n              28.552004\n            ],\n            [\n              48.807595,\n              27.689628\n            ],\n            [\n              49.299554,\n              27.461218\n            ],\n            [\n              49.470914,\n              27.109999\n            ],\n            [\n              50.152422,\n              26.689663\n            ],\n            [\n              50.212935,\n              26.277027\n            ],\n            [\n              50.113303,\n              25.943972\n            ],\n            [\n              50.239859,\n              25.60805\n            ],\n            [\n              50.527387,\n              25.327808\n            ],\n            [\n              50.660557,\n              24.999896\n            ],\n            [\n              50.810108,\n              24.754743\n            ],\n            [\n              51.112415,\n              24.556331\n            ],\n            [\n              51.389608,\n              24.627386\n            ],\n            [\n              51.579519,\n              24.245497\n            ],\n            [\n              51.617708,\n              24.014219\n            ],\n            [\n              52.000733,\n              23.001154\n            ],\n            [\n              55.006803,\n              22.496948\n            ],\n            [\n              55.208341,\n              22.70833\n            ],\n            [\n              55.666659,\n              22.000001\n            ],\n            [\n              54.999982,\n              19.999994\n            ],\n            [\n              52.00001,\n              19.000003\n            ],\n            [\n              49.116672,\n              18.616668\n            ],\n            [\n              48.183344,\n              18.166669\n            ],\n            [\n              47.466695,\n              17.116682\n            ],\n            [\n              47.000005,\n              16.949999\n            ],\n            [\n              46.749994,\n              17.283338\n            ],\n            [\n              46.366659,\n              17.233315\n            ],\n            [\n              45.399999,\n              17.333335\n            ],\n            [\n              45.216651,\n              17.433329\n            ],\n            [\n              44.062613,\n              17.410359\n            ],\n            [\n              43.791519,\n              17.319977\n            ],\n            [\n              43.380794,\n              17.579987\n            ],\n            [\n              43.115798,\n              17.08844\n            ],\n            [\n              43.218375,\n              16.66689\n            ],\n            [\n              42.779332,\n              16.347891\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SDN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SDN\",\"properties\":{\"name\":\"Sudan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[33.963393,9.464285],[33.824963,9.484061],[33.842131,9.981915],[33.721959,10.325262],[33.206938,10.720112],[33.086766,11.441141],[33.206938,12.179338],[32.743419,12.248008],[32.67475,12.024832],[32.073892,11.97333],[32.314235,11.681484],[32.400072,11.080626],[31.850716,10.531271],[31.352862,9.810241],[30.837841,9.707237],[29.996639,10.290927],[29.618957,10.084919],[29.515953,9.793074],[29.000932,9.604232],[28.966597,9.398224],[27.97089,9.398224],[27.833551,9.604232],[27.112521,9.638567],[26.752006,9.466893],[26.477328,9.55273],[25.962307,10.136421],[25.790633,10.411099],[25.069604,10.27376],[24.794926,9.810241],[24.537415,8.917538],[24.194068,8.728696],[23.88698,8.61973],[23.805813,8.666319],[23.459013,8.954286],[23.394779,9.265068],[23.55725,9.681218],[23.554304,10.089255],[22.977544,10.714463],[22.864165,11.142395],[22.87622,11.38461],[22.50869,11.67936],[22.49762,12.26024],[22.28801,12.64605],[21.93681,12.58818],[22.03759,12.95546],[22.29658,13.37232],[22.18329,13.78648],[22.51202,14.09318],[22.30351,14.32682],[22.56795,14.94429],[23.02459,15.68072],[23.88689,15.61084],[23.83766,19.58047],[23.85,20],[25,20.00304],[25,22],[29.02,22],[32.9,22],[36.86623,22],[37.18872,21.01885],[36.96941,20.83744],[37.1147,19.80796],[37.48179,18.61409],[37.86276,18.36786],[38.41009,17.998307],[37.904,17.42754],[37.16747,17.26314],[36.85253,16.95655],[36.75389,16.29186],[36.32322,14.82249],[36.42951,14.42211],[36.27022,13.56333],[35.86363,12.57828],[35.26049,12.08286],[34.83163,11.31896],[34.73115,10.91017],[34.25745,10.63009],[33.96162,9.58358],[33.963393,9.464285]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SDN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              16.875,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              16.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              22.5,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              22.5,\n              27.05912578\n            ],\n            [\n              28.125,\n              27.05912578\n            ],\n            [\n              28.125,\n              21.94304553\n            ],\n            [\n              22.5,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              28.125,\n              11.17840187\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              21.94304553\n            ],\n            [\n              28.125,\n              27.05912578\n            ],\n            [\n              33.75,\n              27.05912578\n            ],\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              28.125,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              28.125,\n              11.17840187\n            ],\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              28.125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              33.75,\n              16.63619188\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              33.75,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              16.63619188\n            ],\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              39.375,\n              21.94304553\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              33.75,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              21.94304553\n            ],\n            [\n              33.75,\n              27.05912578\n            ],\n            [\n              39.375,\n              27.05912578\n            ],\n            [\n              39.375,\n              21.94304553\n            ],\n            [\n              33.75,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              39.375,\n              5.61598582\n            ],\n            [\n              33.75,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.963393,\n              9.464285\n            ],\n            [\n              33.824963,\n              9.484061\n            ],\n            [\n              33.842131,\n              9.981915\n            ],\n            [\n              33.721959,\n              10.325262\n            ],\n            [\n              33.206938,\n              10.720112\n            ],\n            [\n              33.086766,\n              11.441141\n            ],\n            [\n              33.206938,\n              12.179338\n            ],\n            [\n              32.743419,\n              12.248008\n            ],\n            [\n              32.67475,\n              12.024832\n            ],\n            [\n              32.073892,\n              11.97333\n            ],\n            [\n              32.314235,\n              11.681484\n            ],\n            [\n              32.400072,\n              11.080626\n            ],\n            [\n              31.850716,\n              10.531271\n            ],\n            [\n              31.352862,\n              9.810241\n            ],\n            [\n              30.837841,\n              9.707237\n            ],\n            [\n              29.996639,\n              10.290927\n            ],\n            [\n              29.618957,\n              10.084919\n            ],\n            [\n              29.515953,\n              9.793074\n            ],\n            [\n              29.000932,\n              9.604232\n            ],\n            [\n              28.966597,\n              9.398224\n            ],\n            [\n              27.97089,\n              9.398224\n            ],\n            [\n              27.833551,\n              9.604232\n            ],\n            [\n              27.112521,\n              9.638567\n            ],\n            [\n              26.752006,\n              9.466893\n            ],\n            [\n              26.477328,\n              9.55273\n            ],\n            [\n              25.962307,\n              10.136421\n            ],\n            [\n              25.790633,\n              10.411099\n            ],\n            [\n              25.069604,\n              10.27376\n            ],\n            [\n              24.794926,\n              9.810241\n            ],\n            [\n              24.537415,\n              8.917538\n            ],\n            [\n              24.194068,\n              8.728696\n            ],\n            [\n              23.88698,\n              8.61973\n            ],\n            [\n              23.805813,\n              8.666319\n            ],\n            [\n              23.459013,\n              8.954286\n            ],\n            [\n              23.394779,\n              9.265068\n            ],\n            [\n              23.55725,\n              9.681218\n            ],\n            [\n              23.554304,\n              10.089255\n            ],\n            [\n              22.977544,\n              10.714463\n            ],\n            [\n              22.864165,\n              11.142395\n            ],\n            [\n              22.87622,\n              11.38461\n            ],\n            [\n              22.50869,\n              11.67936\n            ],\n            [\n              22.49762,\n              12.26024\n            ],\n            [\n              22.28801,\n              12.64605\n            ],\n            [\n              21.93681,\n              12.58818\n            ],\n            [\n              22.03759,\n              12.95546\n            ],\n            [\n              22.29658,\n              13.37232\n            ],\n            [\n              22.18329,\n              13.78648\n            ],\n            [\n              22.51202,\n              14.09318\n            ],\n            [\n              22.30351,\n              14.32682\n            ],\n            [\n              22.56795,\n              14.94429\n            ],\n            [\n              23.02459,\n              15.68072\n            ],\n            [\n              23.88689,\n              15.61084\n            ],\n            [\n              23.83766,\n              19.58047\n            ],\n            [\n              23.85,\n              20\n            ],\n            [\n              25,\n              20.00304\n            ],\n            [\n              25,\n              22\n            ],\n            [\n              29.02,\n              22\n            ],\n            [\n              32.9,\n              22\n            ],\n            [\n              36.86623,\n              22\n            ],\n            [\n              37.18872,\n              21.01885\n            ],\n            [\n              36.96941,\n              20.83744\n            ],\n            [\n              37.1147,\n              19.80796\n            ],\n            [\n              37.48179,\n              18.61409\n            ],\n            [\n              37.86276,\n              18.36786\n            ],\n            [\n              38.41009,\n              17.998307\n            ],\n            [\n              37.904,\n              17.42754\n            ],\n            [\n              37.16747,\n              17.26314\n            ],\n            [\n              36.85253,\n              16.95655\n            ],\n            [\n              36.75389,\n              16.29186\n            ],\n            [\n              36.32322,\n              14.82249\n            ],\n            [\n              36.42951,\n              14.42211\n            ],\n            [\n              36.27022,\n              13.56333\n            ],\n            [\n              35.86363,\n              12.57828\n            ],\n            [\n              35.26049,\n              12.08286\n            ],\n            [\n              34.83163,\n              11.31896\n            ],\n            [\n              34.73115,\n              10.91017\n            ],\n            [\n              34.25745,\n              10.63009\n            ],\n            [\n              33.96162,\n              9.58358\n            ],\n            [\n              33.963393,\n              9.464285\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SEN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SEN\",\"properties\":{\"name\":\"Senegal\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-16.713729,13.594959],[-17.126107,14.373516],[-17.625043,14.729541],[-17.185173,14.919477],[-16.700706,15.621527],[-16.463098,16.135036],[-16.12069,16.455663],[-15.623666,16.369337],[-15.135737,16.587282],[-14.577348,16.598264],[-14.099521,16.304302],[-13.435738,16.039383],[-12.830658,15.303692],[-12.17075,14.616834],[-12.124887,13.994727],[-11.927716,13.422075],[-11.553398,13.141214],[-11.467899,12.754519],[-11.513943,12.442988],[-11.658301,12.386583],[-12.203565,12.465648],[-12.278599,12.35444],[-12.499051,12.33209],[-13.217818,12.575874],[-13.700476,12.586183],[-15.548477,12.62817],[-15.816574,12.515567],[-16.147717,12.547762],[-16.677452,12.384852],[-16.841525,13.151394],[-15.931296,13.130284],[-15.691001,13.270353],[-15.511813,13.27857],[-15.141163,13.509512],[-14.712197,13.298207],[-14.277702,13.280585],[-13.844963,13.505042],[-14.046992,13.794068],[-14.376714,13.62568],[-14.687031,13.630357],[-15.081735,13.876492],[-15.39877,13.860369],[-15.624596,13.623587],[-16.713729,13.594959]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SEN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -11.25,\n              16.63619188\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -16.875,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -22.5,\n              11.17840187\n            ],\n            [\n              -22.5,\n              16.63619188\n            ],\n            [\n              -16.875,\n              16.63619188\n            ],\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -22.5,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.713729,\n              13.594959\n            ],\n            [\n              -17.126107,\n              14.373516\n            ],\n            [\n              -17.625043,\n              14.729541\n            ],\n            [\n              -17.185173,\n              14.919477\n            ],\n            [\n              -16.700706,\n              15.621527\n            ],\n            [\n              -16.463098,\n              16.135036\n            ],\n            [\n              -16.12069,\n              16.455663\n            ],\n            [\n              -15.623666,\n              16.369337\n            ],\n            [\n              -15.135737,\n              16.587282\n            ],\n            [\n              -14.577348,\n              16.598264\n            ],\n            [\n              -14.099521,\n              16.304302\n            ],\n            [\n              -13.435738,\n              16.039383\n            ],\n            [\n              -12.830658,\n              15.303692\n            ],\n            [\n              -12.17075,\n              14.616834\n            ],\n            [\n              -12.124887,\n              13.994727\n            ],\n            [\n              -11.927716,\n              13.422075\n            ],\n            [\n              -11.553398,\n              13.141214\n            ],\n            [\n              -11.467899,\n              12.754519\n            ],\n            [\n              -11.513943,\n              12.442988\n            ],\n            [\n              -11.658301,\n              12.386583\n            ],\n            [\n              -12.203565,\n              12.465648\n            ],\n            [\n              -12.278599,\n              12.35444\n            ],\n            [\n              -12.499051,\n              12.33209\n            ],\n            [\n              -13.217818,\n              12.575874\n            ],\n            [\n              -13.700476,\n              12.586183\n            ],\n            [\n              -15.548477,\n              12.62817\n            ],\n            [\n              -15.816574,\n              12.515567\n            ],\n            [\n              -16.147717,\n              12.547762\n            ],\n            [\n              -16.677452,\n              12.384852\n            ],\n            [\n              -16.841525,\n              13.151394\n            ],\n            [\n              -15.931296,\n              13.130284\n            ],\n            [\n              -15.691001,\n              13.270353\n            ],\n            [\n              -15.511813,\n              13.27857\n            ],\n            [\n              -15.141163,\n              13.509512\n            ],\n            [\n              -14.712197,\n              13.298207\n            ],\n            [\n              -14.277702,\n              13.280585\n            ],\n            [\n              -13.844963,\n              13.505042\n            ],\n            [\n              -14.046992,\n              13.794068\n            ],\n            [\n              -14.376714,\n              13.62568\n            ],\n            [\n              -14.687031,\n              13.630357\n            ],\n            [\n              -15.081735,\n              13.876492\n            ],\n            [\n              -15.39877,\n              13.860369\n            ],\n            [\n              -15.624596,\n              13.623587\n            ],\n            [\n              -16.713729,\n              13.594959\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SLB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SLB\",\"properties\":{\"name\":\"Solomon Islands\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[162.119025,-10.482719],[162.398646,-10.826367],[161.700032,-10.820011],[161.319797,-10.204751],[161.917383,-10.446701],[162.119025,-10.482719]]],[[[160.852229,-9.872937],[160.462588,-9.89521],[159.849447,-9.794027],[159.640003,-9.63998],[159.702945,-9.24295],[160.362956,-9.400304],[160.688518,-9.610162],[160.852229,-9.872937]]],[[[161.679982,-9.599982],[161.529397,-9.784312],[160.788253,-8.917543],[160.579997,-8.320009],[160.920028,-8.320009],[161.280006,-9.120011],[161.679982,-9.599982]]],[[[159.875027,-8.33732],[159.917402,-8.53829],[159.133677,-8.114181],[158.586114,-7.754824],[158.21115,-7.421872],[158.359978,-7.320018],[158.820001,-7.560003],[159.640003,-8.020027],[159.875027,-8.33732]]],[[[157.538426,-7.34782],[157.33942,-7.404767],[156.90203,-7.176874],[156.491358,-6.765943],[156.542828,-6.599338],[157.14,-7.021638],[157.538426,-7.34782]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SLB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              151.875,\n              -11.17840187\n            ],\n            [\n              151.875,\n              -5.61598582\n            ],\n            [\n              157.5,\n              -5.61598582\n            ],\n            [\n              157.5,\n              -11.17840187\n            ],\n            [\n              151.875,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              157.5,\n              -11.17840187\n            ],\n            [\n              157.5,\n              -5.61598582\n            ],\n            [\n              163.125,\n              -5.61598582\n            ],\n            [\n              163.125,\n              -11.17840187\n            ],\n            [\n              157.5,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                162.119025,\n                -10.482719\n              ],\n              [\n                162.398646,\n                -10.826367\n              ],\n              [\n                161.700032,\n                -10.820011\n              ],\n              [\n                161.319797,\n                -10.204751\n              ],\n              [\n                161.917383,\n                -10.446701\n              ],\n              [\n                162.119025,\n                -10.482719\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                160.852229,\n                -9.872937\n              ],\n              [\n                160.462588,\n                -9.89521\n              ],\n              [\n                159.849447,\n                -9.794027\n              ],\n              [\n                159.640003,\n                -9.63998\n              ],\n              [\n                159.702945,\n                -9.24295\n              ],\n              [\n                160.362956,\n                -9.400304\n              ],\n              [\n                160.688518,\n                -9.610162\n              ],\n              [\n                160.852229,\n                -9.872937\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                161.679982,\n                -9.599982\n              ],\n              [\n                161.529397,\n                -9.784312\n              ],\n              [\n                160.788253,\n                -8.917543\n              ],\n              [\n                160.579997,\n                -8.320009\n              ],\n              [\n                160.920028,\n                -8.320009\n              ],\n              [\n                161.280006,\n                -9.120011\n              ],\n              [\n                161.679982,\n                -9.599982\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                159.875027,\n                -8.33732\n              ],\n              [\n                159.917402,\n                -8.53829\n              ],\n              [\n                159.133677,\n                -8.114181\n              ],\n              [\n                158.586114,\n                -7.754824\n              ],\n              [\n                158.21115,\n                -7.421872\n              ],\n              [\n                158.359978,\n                -7.320018\n              ],\n              [\n                158.820001,\n                -7.560003\n              ],\n              [\n                159.640003,\n                -8.020027\n              ],\n              [\n                159.875027,\n                -8.33732\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                157.538426,\n                -7.34782\n              ],\n              [\n                157.33942,\n                -7.404767\n              ],\n              [\n                156.90203,\n                -7.176874\n              ],\n              [\n                156.491358,\n                -6.765943\n              ],\n              [\n                156.542828,\n                -6.599338\n              ],\n              [\n                157.14,\n                -7.021638\n              ],\n              [\n                157.538426,\n                -7.34782\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SLE.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SLE\",\"properties\":{\"name\":\"Sierra Leone\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-11.438779,6.785917],[-11.708195,6.860098],[-12.428099,7.262942],[-12.949049,7.798646],[-13.124025,8.163946],[-13.24655,8.903049],[-12.711958,9.342712],[-12.596719,9.620188],[-12.425929,9.835834],[-12.150338,9.858572],[-11.917277,10.046984],[-11.117481,10.045873],[-10.839152,9.688246],[-10.622395,9.26791],[-10.65477,8.977178],[-10.494315,8.715541],[-10.505477,8.348896],[-10.230094,8.406206],[-10.695595,7.939464],[-11.146704,7.396706],[-11.199802,7.105846],[-11.438779,6.785917]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SLE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -11.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -16.875,\n              5.61598582\n            ],\n            [\n              -16.875,\n              11.17840187\n            ],\n            [\n              -11.25,\n              11.17840187\n            ],\n            [\n              -11.25,\n              5.61598582\n            ],\n            [\n              -16.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -11.438779,\n              6.785917\n            ],\n            [\n              -11.708195,\n              6.860098\n            ],\n            [\n              -12.428099,\n              7.262942\n            ],\n            [\n              -12.949049,\n              7.798646\n            ],\n            [\n              -13.124025,\n              8.163946\n            ],\n            [\n              -13.24655,\n              8.903049\n            ],\n            [\n              -12.711958,\n              9.342712\n            ],\n            [\n              -12.596719,\n              9.620188\n            ],\n            [\n              -12.425929,\n              9.835834\n            ],\n            [\n              -12.150338,\n              9.858572\n            ],\n            [\n              -11.917277,\n              10.046984\n            ],\n            [\n              -11.117481,\n              10.045873\n            ],\n            [\n              -10.839152,\n              9.688246\n            ],\n            [\n              -10.622395,\n              9.26791\n            ],\n            [\n              -10.65477,\n              8.977178\n            ],\n            [\n              -10.494315,\n              8.715541\n            ],\n            [\n              -10.505477,\n              8.348896\n            ],\n            [\n              -10.230094,\n              8.406206\n            ],\n            [\n              -10.695595,\n              7.939464\n            ],\n            [\n              -11.146704,\n              7.396706\n            ],\n            [\n              -11.199802,\n              7.105846\n            ],\n            [\n              -11.438779,\n              6.785917\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SLV.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SLV\",\"properties\":{\"name\":\"El Salvador\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-87.793111,13.38448],[-87.904112,13.149017],[-88.483302,13.163951],[-88.843228,13.259734],[-89.256743,13.458533],[-89.812394,13.520622],[-90.095555,13.735338],[-90.064678,13.88197],[-89.721934,14.134228],[-89.534219,14.244816],[-89.587343,14.362586],[-89.353326,14.424133],[-89.058512,14.340029],[-88.843073,14.140507],[-88.541231,13.980155],[-88.503998,13.845486],[-88.065343,13.964626],[-87.859515,13.893312],[-87.723503,13.78505],[-87.793111,13.38448]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SLV_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -84.375,\n              16.63619188\n            ],\n            [\n              -84.375,\n              11.17840187\n            ],\n            [\n              -90,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              11.17840187\n            ],\n            [\n              -95.625,\n              16.63619188\n            ],\n            [\n              -90,\n              16.63619188\n            ],\n            [\n              -90,\n              11.17840187\n            ],\n            [\n              -95.625,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -87.793111,\n              13.38448\n            ],\n            [\n              -87.904112,\n              13.149017\n            ],\n            [\n              -88.483302,\n              13.163951\n            ],\n            [\n              -88.843228,\n              13.259734\n            ],\n            [\n              -89.256743,\n              13.458533\n            ],\n            [\n              -89.812394,\n              13.520622\n            ],\n            [\n              -90.095555,\n              13.735338\n            ],\n            [\n              -90.064678,\n              13.88197\n            ],\n            [\n              -89.721934,\n              14.134228\n            ],\n            [\n              -89.534219,\n              14.244816\n            ],\n            [\n              -89.587343,\n              14.362586\n            ],\n            [\n              -89.353326,\n              14.424133\n            ],\n            [\n              -89.058512,\n              14.340029\n            ],\n            [\n              -88.843073,\n              14.140507\n            ],\n            [\n              -88.541231,\n              13.980155\n            ],\n            [\n              -88.503998,\n              13.845486\n            ],\n            [\n              -88.065343,\n              13.964626\n            ],\n            [\n              -87.859515,\n              13.893312\n            ],\n            [\n              -87.723503,\n              13.78505\n            ],\n            [\n              -87.793111,\n              13.38448\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SOM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SOM\",\"properties\":{\"name\":\"Somalia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[49.72862,11.5789],[50.25878,11.67957],[50.73202,12.0219],[51.1112,12.02464],[51.13387,11.74815],[51.04153,11.16651],[51.04531,10.6409],[50.83418,10.27972],[50.55239,9.19874],[50.07092,8.08173],[49.4527,6.80466],[48.59455,5.33911],[47.74079,4.2194],[46.56476,2.85529],[45.56399,2.04576],[44.06815,1.05283],[43.13597,0.2922],[42.04157,-0.91916],[41.81095,-1.44647],[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.855083,3.918912],[42.12861,4.23413],[42.76967,4.25259],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.486736,8.837626],[48.93813,9.451749],[48.938233,9.9735],[48.938491,10.982327],[48.942005,11.394266],[48.948205,11.410617],[49.26776,11.43033],[49.72862,11.5789]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SOM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              39.375,\n              0\n            ],\n            [\n              45,\n              0\n            ],\n            [\n              45,\n              -5.61598582\n            ],\n            [\n              39.375,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              0\n            ],\n            [\n              39.375,\n              5.61598582\n            ],\n            [\n              45,\n              5.61598582\n            ],\n            [\n              45,\n              0\n            ],\n            [\n              39.375,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              0\n            ],\n            [\n              45,\n              5.61598582\n            ],\n            [\n              50.625,\n              5.61598582\n            ],\n            [\n              50.625,\n              0\n            ],\n            [\n              45,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              11.17840187\n            ],\n            [\n              45,\n              16.63619188\n            ],\n            [\n              50.625,\n              16.63619188\n            ],\n            [\n              50.625,\n              11.17840187\n            ],\n            [\n              45,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              5.61598582\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              50.625,\n              11.17840187\n            ],\n            [\n              50.625,\n              5.61598582\n            ],\n            [\n              45,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              11.17840187\n            ],\n            [\n              50.625,\n              16.63619188\n            ],\n            [\n              56.25,\n              16.63619188\n            ],\n            [\n              56.25,\n              11.17840187\n            ],\n            [\n              50.625,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              5.61598582\n            ],\n            [\n              50.625,\n              11.17840187\n            ],\n            [\n              56.25,\n              11.17840187\n            ],\n            [\n              56.25,\n              5.61598582\n            ],\n            [\n              50.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              49.72862,\n              11.5789\n            ],\n            [\n              50.25878,\n              11.67957\n            ],\n            [\n              50.73202,\n              12.0219\n            ],\n            [\n              51.1112,\n              12.02464\n            ],\n            [\n              51.13387,\n              11.74815\n            ],\n            [\n              51.04153,\n              11.16651\n            ],\n            [\n              51.04531,\n              10.6409\n            ],\n            [\n              50.83418,\n              10.27972\n            ],\n            [\n              50.55239,\n              9.19874\n            ],\n            [\n              50.07092,\n              8.08173\n            ],\n            [\n              49.4527,\n              6.80466\n            ],\n            [\n              48.59455,\n              5.33911\n            ],\n            [\n              47.74079,\n              4.2194\n            ],\n            [\n              46.56476,\n              2.85529\n            ],\n            [\n              45.56399,\n              2.04576\n            ],\n            [\n              44.06815,\n              1.05283\n            ],\n            [\n              43.13597,\n              0.2922\n            ],\n            [\n              42.04157,\n              -0.91916\n            ],\n            [\n              41.81095,\n              -1.44647\n            ],\n            [\n              41.58513,\n              -1.68325\n            ],\n            [\n              40.993,\n              -0.85829\n            ],\n            [\n              40.98105,\n              2.78452\n            ],\n            [\n              41.855083,\n              3.918912\n            ],\n            [\n              42.12861,\n              4.23413\n            ],\n            [\n              42.76967,\n              4.25259\n            ],\n            [\n              43.66087,\n              4.95755\n            ],\n            [\n              44.9636,\n              5.00162\n            ],\n            [\n              47.78942,\n              8.003\n            ],\n            [\n              48.486736,\n              8.837626\n            ],\n            [\n              48.93813,\n              9.451749\n            ],\n            [\n              48.938233,\n              9.9735\n            ],\n            [\n              48.938491,\n              10.982327\n            ],\n            [\n              48.942005,\n              11.394266\n            ],\n            [\n              48.948205,\n              11.410617\n            ],\n            [\n              49.26776,\n              11.43033\n            ],\n            [\n              49.72862,\n              11.5789\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SRB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SRB\",\"properties\":{\"name\":\"Republic of Serbia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[20.874313,45.416375],[21.483526,45.18117],[21.562023,44.768947],[22.145088,44.478422],[22.459022,44.702517],[22.705726,44.578003],[22.474008,44.409228],[22.65715,44.234923],[22.410446,44.008063],[22.500157,43.642814],[22.986019,43.211161],[22.604801,42.898519],[22.436595,42.580321],[22.545012,42.461362],[22.380526,42.32026],[21.91708,42.30364],[21.576636,42.245224],[21.54332,42.32025],[21.66292,42.43922],[21.77505,42.6827],[21.63302,42.67717],[21.43866,42.86255],[21.27421,42.90959],[21.143395,43.068685],[20.95651,43.13094],[20.81448,43.27205],[20.63508,43.21671],[20.49679,42.88469],[20.25758,42.81275],[20.3398,42.89852],[19.95857,43.10604],[19.63,43.21378],[19.48389,43.35229],[19.21852,43.52384],[19.454,43.5681],[19.59976,44.03847],[19.11761,44.42307],[19.36803,44.863],[19.00548,44.86023],[19.390476,45.236516],[19.072769,45.521511],[18.82982,45.90888],[19.596045,46.17173],[20.220192,46.127469],[20.762175,45.734573],[20.874313,45.416375]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SRB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              40.97989807\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              16.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              16.875,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              20.874313,\n              45.416375\n            ],\n            [\n              21.483526,\n              45.18117\n            ],\n            [\n              21.562023,\n              44.768947\n            ],\n            [\n              22.145088,\n              44.478422\n            ],\n            [\n              22.459022,\n              44.702517\n            ],\n            [\n              22.705726,\n              44.578003\n            ],\n            [\n              22.474008,\n              44.409228\n            ],\n            [\n              22.65715,\n              44.234923\n            ],\n            [\n              22.410446,\n              44.008063\n            ],\n            [\n              22.500157,\n              43.642814\n            ],\n            [\n              22.986019,\n              43.211161\n            ],\n            [\n              22.604801,\n              42.898519\n            ],\n            [\n              22.436595,\n              42.580321\n            ],\n            [\n              22.545012,\n              42.461362\n            ],\n            [\n              22.380526,\n              42.32026\n            ],\n            [\n              21.91708,\n              42.30364\n            ],\n            [\n              21.576636,\n              42.245224\n            ],\n            [\n              21.54332,\n              42.32025\n            ],\n            [\n              21.66292,\n              42.43922\n            ],\n            [\n              21.77505,\n              42.6827\n            ],\n            [\n              21.63302,\n              42.67717\n            ],\n            [\n              21.43866,\n              42.86255\n            ],\n            [\n              21.27421,\n              42.90959\n            ],\n            [\n              21.143395,\n              43.068685\n            ],\n            [\n              20.95651,\n              43.13094\n            ],\n            [\n              20.81448,\n              43.27205\n            ],\n            [\n              20.63508,\n              43.21671\n            ],\n            [\n              20.49679,\n              42.88469\n            ],\n            [\n              20.25758,\n              42.81275\n            ],\n            [\n              20.3398,\n              42.89852\n            ],\n            [\n              19.95857,\n              43.10604\n            ],\n            [\n              19.63,\n              43.21378\n            ],\n            [\n              19.48389,\n              43.35229\n            ],\n            [\n              19.21852,\n              43.52384\n            ],\n            [\n              19.454,\n              43.5681\n            ],\n            [\n              19.59976,\n              44.03847\n            ],\n            [\n              19.11761,\n              44.42307\n            ],\n            [\n              19.36803,\n              44.863\n            ],\n            [\n              19.00548,\n              44.86023\n            ],\n            [\n              19.390476,\n              45.236516\n            ],\n            [\n              19.072769,\n              45.521511\n            ],\n            [\n              18.82982,\n              45.90888\n            ],\n            [\n              19.596045,\n              46.17173\n            ],\n            [\n              20.220192,\n              46.127469\n            ],\n            [\n              20.762175,\n              45.734573\n            ],\n            [\n              20.874313,\n              45.416375\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SSD.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SSD\",\"properties\":{\"name\":\"South Sudan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[33.963393,9.464285],[33.97498,8.68456],[33.8255,8.37916],[33.2948,8.35458],[32.95418,7.78497],[33.56829,7.71334],[34.0751,7.22595],[34.25032,6.82607],[34.70702,6.59422],[35.298007,5.506],[34.620196,4.847123],[34.005,4.249885],[33.39,3.79],[32.68642,3.79232],[31.88145,3.55827],[31.24556,3.7819],[30.83385,3.50917],[29.95349,4.1737],[29.715995,4.600805],[29.159078,4.389267],[28.696678,4.455077],[28.428994,4.287155],[27.979977,4.408413],[27.374226,5.233944],[27.213409,5.550953],[26.465909,5.946717],[26.213418,6.546603],[25.796648,6.979316],[25.124131,7.500085],[25.114932,7.825104],[24.567369,8.229188],[23.88698,8.61973],[24.194068,8.728696],[24.537415,8.917538],[24.794926,9.810241],[25.069604,10.27376],[25.790633,10.411099],[25.962307,10.136421],[26.477328,9.55273],[26.752006,9.466893],[27.112521,9.638567],[27.833551,9.604232],[27.97089,9.398224],[28.966597,9.398224],[29.000932,9.604232],[29.515953,9.793074],[29.618957,10.084919],[29.996639,10.290927],[30.837841,9.707237],[31.352862,9.810241],[31.850716,10.531271],[32.400072,11.080626],[32.314235,11.681484],[32.073892,11.97333],[32.67475,12.024832],[32.743419,12.248008],[33.206938,12.179338],[33.086766,11.441141],[33.206938,10.720112],[33.721959,10.325262],[33.842131,9.981915],[33.824963,9.484061],[33.963393,9.464285]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SSD_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              0\n            ],\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              22.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              11.17840187\n            ],\n            [\n              28.125,\n              16.63619188\n            ],\n            [\n              33.75,\n              16.63619188\n            ],\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              28.125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              39.375,\n              5.61598582\n            ],\n            [\n              39.375,\n              0\n            ],\n            [\n              33.75,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              33.75,\n              11.17840187\n            ],\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              39.375,\n              5.61598582\n            ],\n            [\n              33.75,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.963393,\n              9.464285\n            ],\n            [\n              33.97498,\n              8.68456\n            ],\n            [\n              33.8255,\n              8.37916\n            ],\n            [\n              33.2948,\n              8.35458\n            ],\n            [\n              32.95418,\n              7.78497\n            ],\n            [\n              33.56829,\n              7.71334\n            ],\n            [\n              34.0751,\n              7.22595\n            ],\n            [\n              34.25032,\n              6.82607\n            ],\n            [\n              34.70702,\n              6.59422\n            ],\n            [\n              35.298007,\n              5.506\n            ],\n            [\n              34.620196,\n              4.847123\n            ],\n            [\n              34.005,\n              4.249885\n            ],\n            [\n              33.39,\n              3.79\n            ],\n            [\n              32.68642,\n              3.79232\n            ],\n            [\n              31.88145,\n              3.55827\n            ],\n            [\n              31.24556,\n              3.7819\n            ],\n            [\n              30.83385,\n              3.50917\n            ],\n            [\n              29.95349,\n              4.1737\n            ],\n            [\n              29.715995,\n              4.600805\n            ],\n            [\n              29.159078,\n              4.389267\n            ],\n            [\n              28.696678,\n              4.455077\n            ],\n            [\n              28.428994,\n              4.287155\n            ],\n            [\n              27.979977,\n              4.408413\n            ],\n            [\n              27.374226,\n              5.233944\n            ],\n            [\n              27.213409,\n              5.550953\n            ],\n            [\n              26.465909,\n              5.946717\n            ],\n            [\n              26.213418,\n              6.546603\n            ],\n            [\n              25.796648,\n              6.979316\n            ],\n            [\n              25.124131,\n              7.500085\n            ],\n            [\n              25.114932,\n              7.825104\n            ],\n            [\n              24.567369,\n              8.229188\n            ],\n            [\n              23.88698,\n              8.61973\n            ],\n            [\n              24.194068,\n              8.728696\n            ],\n            [\n              24.537415,\n              8.917538\n            ],\n            [\n              24.794926,\n              9.810241\n            ],\n            [\n              25.069604,\n              10.27376\n            ],\n            [\n              25.790633,\n              10.411099\n            ],\n            [\n              25.962307,\n              10.136421\n            ],\n            [\n              26.477328,\n              9.55273\n            ],\n            [\n              26.752006,\n              9.466893\n            ],\n            [\n              27.112521,\n              9.638567\n            ],\n            [\n              27.833551,\n              9.604232\n            ],\n            [\n              27.97089,\n              9.398224\n            ],\n            [\n              28.966597,\n              9.398224\n            ],\n            [\n              29.000932,\n              9.604232\n            ],\n            [\n              29.515953,\n              9.793074\n            ],\n            [\n              29.618957,\n              10.084919\n            ],\n            [\n              29.996639,\n              10.290927\n            ],\n            [\n              30.837841,\n              9.707237\n            ],\n            [\n              31.352862,\n              9.810241\n            ],\n            [\n              31.850716,\n              10.531271\n            ],\n            [\n              32.400072,\n              11.080626\n            ],\n            [\n              32.314235,\n              11.681484\n            ],\n            [\n              32.073892,\n              11.97333\n            ],\n            [\n              32.67475,\n              12.024832\n            ],\n            [\n              32.743419,\n              12.248008\n            ],\n            [\n              33.206938,\n              12.179338\n            ],\n            [\n              33.086766,\n              11.441141\n            ],\n            [\n              33.206938,\n              10.720112\n            ],\n            [\n              33.721959,\n              10.325262\n            ],\n            [\n              33.842131,\n              9.981915\n            ],\n            [\n              33.824963,\n              9.484061\n            ],\n            [\n              33.963393,\n              9.464285\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SUR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SUR\",\"properties\":{\"name\":\"Suriname\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-57.147436,5.97315],[-55.949318,5.772878],[-55.84178,5.953125],[-55.03325,6.025291],[-53.958045,5.756548],[-54.478633,4.896756],[-54.399542,4.212611],[-54.006931,3.620038],[-54.181726,3.18978],[-54.269705,2.732392],[-54.524754,2.311849],[-55.097587,2.523748],[-55.569755,2.421506],[-55.973322,2.510364],[-56.073342,2.220795],[-55.9056,2.021996],[-55.995698,1.817667],[-56.539386,1.899523],[-57.150098,2.768927],[-57.281433,3.333492],[-57.601569,3.334655],[-58.044694,4.060864],[-57.86021,4.576801],[-57.914289,4.812626],[-57.307246,5.073567],[-57.147436,5.97315]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SUR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              0\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -50.625,\n              5.61598582\n            ],\n            [\n              -50.625,\n              0\n            ],\n            [\n              -56.25,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -56.25,\n              11.17840187\n            ],\n            [\n              -50.625,\n              11.17840187\n            ],\n            [\n              -50.625,\n              5.61598582\n            ],\n            [\n              -56.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              0\n            ],\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -56.25,\n              0\n            ],\n            [\n              -61.875,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -61.875,\n              11.17840187\n            ],\n            [\n              -56.25,\n              11.17840187\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -61.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -57.147436,\n              5.97315\n            ],\n            [\n              -55.949318,\n              5.772878\n            ],\n            [\n              -55.84178,\n              5.953125\n            ],\n            [\n              -55.03325,\n              6.025291\n            ],\n            [\n              -53.958045,\n              5.756548\n            ],\n            [\n              -54.478633,\n              4.896756\n            ],\n            [\n              -54.399542,\n              4.212611\n            ],\n            [\n              -54.006931,\n              3.620038\n            ],\n            [\n              -54.181726,\n              3.18978\n            ],\n            [\n              -54.269705,\n              2.732392\n            ],\n            [\n              -54.524754,\n              2.311849\n            ],\n            [\n              -55.097587,\n              2.523748\n            ],\n            [\n              -55.569755,\n              2.421506\n            ],\n            [\n              -55.973322,\n              2.510364\n            ],\n            [\n              -56.073342,\n              2.220795\n            ],\n            [\n              -55.9056,\n              2.021996\n            ],\n            [\n              -55.995698,\n              1.817667\n            ],\n            [\n              -56.539386,\n              1.899523\n            ],\n            [\n              -57.150098,\n              2.768927\n            ],\n            [\n              -57.281433,\n              3.333492\n            ],\n            [\n              -57.601569,\n              3.334655\n            ],\n            [\n              -58.044694,\n              4.060864\n            ],\n            [\n              -57.86021,\n              4.576801\n            ],\n            [\n              -57.914289,\n              4.812626\n            ],\n            [\n              -57.307246,\n              5.073567\n            ],\n            [\n              -57.147436,\n              5.97315\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SVK.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SVK\",\"properties\":{\"name\":\"Slovakia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[18.853144,49.49623],[18.909575,49.435846],[19.320713,49.571574],[19.825023,49.217125],[20.415839,49.431453],[20.887955,49.328772],[21.607808,49.470107],[22.558138,49.085738],[22.280842,48.825392],[22.085608,48.422264],[21.872236,48.319971],[20.801294,48.623854],[20.473562,48.56285],[20.239054,48.327567],[19.769471,48.202691],[19.661364,48.266615],[19.174365,48.111379],[18.777025,48.081768],[18.696513,47.880954],[17.857133,47.758429],[17.488473,47.867466],[16.979667,48.123497],[16.879983,48.470013],[16.960288,48.596982],[17.101985,48.816969],[17.545007,48.800019],[17.886485,48.903475],[17.913512,48.996493],[18.104973,49.043983],[18.170498,49.271515],[18.399994,49.315001],[18.554971,49.495015],[18.853144,49.49623]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SVK_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              16.875,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              18.853144,\n              49.49623\n            ],\n            [\n              18.909575,\n              49.435846\n            ],\n            [\n              19.320713,\n              49.571574\n            ],\n            [\n              19.825023,\n              49.217125\n            ],\n            [\n              20.415839,\n              49.431453\n            ],\n            [\n              20.887955,\n              49.328772\n            ],\n            [\n              21.607808,\n              49.470107\n            ],\n            [\n              22.558138,\n              49.085738\n            ],\n            [\n              22.280842,\n              48.825392\n            ],\n            [\n              22.085608,\n              48.422264\n            ],\n            [\n              21.872236,\n              48.319971\n            ],\n            [\n              20.801294,\n              48.623854\n            ],\n            [\n              20.473562,\n              48.56285\n            ],\n            [\n              20.239054,\n              48.327567\n            ],\n            [\n              19.769471,\n              48.202691\n            ],\n            [\n              19.661364,\n              48.266615\n            ],\n            [\n              19.174365,\n              48.111379\n            ],\n            [\n              18.777025,\n              48.081768\n            ],\n            [\n              18.696513,\n              47.880954\n            ],\n            [\n              17.857133,\n              47.758429\n            ],\n            [\n              17.488473,\n              47.867466\n            ],\n            [\n              16.979667,\n              48.123497\n            ],\n            [\n              16.879983,\n              48.470013\n            ],\n            [\n              16.960288,\n              48.596982\n            ],\n            [\n              17.101985,\n              48.816969\n            ],\n            [\n              17.545007,\n              48.800019\n            ],\n            [\n              17.886485,\n              48.903475\n            ],\n            [\n              17.913512,\n              48.996493\n            ],\n            [\n              18.104973,\n              49.043983\n            ],\n            [\n              18.170498,\n              49.271515\n            ],\n            [\n              18.399994,\n              49.315001\n            ],\n            [\n              18.554971,\n              49.495015\n            ],\n            [\n              18.853144,\n              49.49623\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SVN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SVN\",\"properties\":{\"name\":\"Slovenia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[13.806475,46.509306],[14.632472,46.431817],[15.137092,46.658703],[16.011664,46.683611],[16.202298,46.852386],[16.370505,46.841327],[16.564808,46.503751],[15.768733,46.238108],[15.67153,45.834154],[15.323954,45.731783],[15.327675,45.452316],[14.935244,45.471695],[14.595109,45.634941],[14.411968,45.466166],[13.71506,45.500324],[13.93763,45.591016],[13.69811,46.016778],[13.806475,46.509306]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SVN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              45.08903556\n            ],\n            [\n              11.25,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              11.25,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              13.806475,\n              46.509306\n            ],\n            [\n              14.632472,\n              46.431817\n            ],\n            [\n              15.137092,\n              46.658703\n            ],\n            [\n              16.011664,\n              46.683611\n            ],\n            [\n              16.202298,\n              46.852386\n            ],\n            [\n              16.370505,\n              46.841327\n            ],\n            [\n              16.564808,\n              46.503751\n            ],\n            [\n              15.768733,\n              46.238108\n            ],\n            [\n              15.67153,\n              45.834154\n            ],\n            [\n              15.323954,\n              45.731783\n            ],\n            [\n              15.327675,\n              45.452316\n            ],\n            [\n              14.935244,\n              45.471695\n            ],\n            [\n              14.595109,\n              45.634941\n            ],\n            [\n              14.411968,\n              45.466166\n            ],\n            [\n              13.71506,\n              45.500324\n            ],\n            [\n              13.93763,\n              45.591016\n            ],\n            [\n              13.69811,\n              46.016778\n            ],\n            [\n              13.806475,\n              46.509306\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SWE.geo.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"id\": \"SWE\",\n      \"properties\": {\n        \"name\": \"Sweden\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                22.183173,\n                65.723741\n              ],\n              [\n                21.213517,\n                65.026005\n              ],\n              [\n                21.369631,\n                64.413588\n              ],\n              [\n                19.778876,\n                63.609554\n              ],\n              [\n                17.847779,\n                62.7494\n              ],\n              [\n                17.119555,\n                61.341166\n              ],\n              [\n                17.831346,\n                60.636583\n              ],\n              [\n                18.787722,\n                60.081914\n              ],\n              [\n                17.869225,\n                58.953766\n              ],\n              [\n                16.829185,\n                58.719827\n              ],\n              [\n                16.44771,\n                57.041118\n              ],\n              [\n                15.879786,\n                56.104302\n              ],\n              [\n                14.666681,\n                56.200885\n              ],\n              [\n                14.100721,\n                55.407781\n              ],\n              [\n                12.942911,\n                55.361737\n              ],\n              [\n                12.625101,\n                56.30708\n              ],\n              [\n                11.787942,\n                57.441817\n              ],\n              [\n                11.027369,\n                58.856149\n              ],\n              [\n                11.468272,\n                59.432393\n              ],\n              [\n                12.300366,\n                60.117933\n              ],\n              [\n                12.631147,\n                61.293572\n              ],\n              [\n                11.992064,\n                61.800362\n              ],\n              [\n                11.930569,\n                63.128318\n              ],\n              [\n                12.579935,\n                64.066219\n              ],\n              [\n                13.571916,\n                64.049114\n              ],\n              [\n                13.919905,\n                64.445421\n              ],\n              [\n                13.55569,\n                64.787028\n              ],\n              [\n                15.108411,\n                66.193867\n              ],\n              [\n                16.108712,\n                67.302456\n              ],\n              [\n                16.768879,\n                68.013937\n              ],\n              [\n                17.729182,\n                68.010552\n              ],\n              [\n                17.993868,\n                68.567391\n              ],\n              [\n                19.87856,\n                68.407194\n              ],\n              [\n                20.025269,\n                69.065139\n              ],\n              [\n                20.645593,\n                69.106247\n              ],\n              [\n                21.978535,\n                68.616846\n              ],\n              [\n                23.539473,\n                67.936009\n              ],\n              [\n                23.56588,\n                66.396051\n              ],\n              [\n                23.903379,\n                66.006927\n              ],\n              [\n                22.183173,\n                65.723741\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SWE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              52.48278022\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              16.875,\n              55.77657302\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              11.25,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              11.25,\n              61.60639637\n            ],\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              22.5,\n              55.77657302\n            ],\n            [\n              11.25,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              61.60639637\n            ],\n            [\n              11.25,\n              66.51326044\n            ],\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              22.5,\n              61.60639637\n            ],\n            [\n              11.25,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              66.51326044\n            ],\n            [\n              11.25,\n              68.65655498\n            ],\n            [\n              16.875,\n              68.65655498\n            ],\n            [\n              16.875,\n              66.51326044\n            ],\n            [\n              11.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              66.51326044\n            ],\n            [\n              16.875,\n              68.65655498\n            ],\n            [\n              22.5,\n              68.65655498\n            ],\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              16.875,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              68.65655498\n            ],\n            [\n              16.875,\n              70.61261424\n            ],\n            [\n              22.5,\n              70.61261424\n            ],\n            [\n              22.5,\n              68.65655498\n            ],\n            [\n              16.875,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              64.1681069\n            ],\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              28.125,\n              66.51326044\n            ],\n            [\n              28.125,\n              64.1681069\n            ],\n            [\n              22.5,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              66.51326044\n            ],\n            [\n              22.5,\n              68.65655498\n            ],\n            [\n              28.125,\n              68.65655498\n            ],\n            [\n              28.125,\n              66.51326044\n            ],\n            [\n              22.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              55.77657302\n            ],\n            [\n              5.625,\n              58.81374172\n            ],\n            [\n              11.25,\n              58.81374172\n            ],\n            [\n              11.25,\n              55.77657302\n            ],\n            [\n              5.625,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              58.81374172\n            ],\n            [\n              5.625,\n              61.60639637\n            ],\n            [\n              11.25,\n              61.60639637\n            ],\n            [\n              11.25,\n              58.81374172\n            ],\n            [\n              5.625,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                22.183173,\n                65.723741\n              ],\n              [\n                21.213517,\n                65.026005\n              ],\n              [\n                21.369631,\n                64.413588\n              ],\n              [\n                19.778876,\n                63.609554\n              ],\n              [\n                17.847779,\n                62.7494\n              ],\n              [\n                17.119555,\n                61.341166\n              ],\n              [\n                17.831346,\n                60.636583\n              ],\n              [\n                18.787722,\n                60.081914\n              ],\n              [\n                17.869225,\n                58.953766\n              ],\n              [\n                16.829185,\n                58.719827\n              ],\n              [\n                16.44771,\n                57.041118\n              ],\n              [\n                15.879786,\n                56.104302\n              ],\n              [\n                14.666681,\n                56.200885\n              ],\n              [\n                14.100721,\n                55.407781\n              ],\n              [\n                12.942911,\n                55.361737\n              ],\n              [\n                12.625101,\n                56.30708\n              ],\n              [\n                11.787942,\n                57.441817\n              ],\n              [\n                11.027369,\n                58.856149\n              ],\n              [\n                11.468272,\n                59.432393\n              ],\n              [\n                12.300366,\n                60.117933\n              ],\n              [\n                12.631147,\n                61.293572\n              ],\n              [\n                11.992064,\n                61.800362\n              ],\n              [\n                11.930569,\n                63.128318\n              ],\n              [\n                12.579935,\n                64.066219\n              ],\n              [\n                13.571916,\n                64.049114\n              ],\n              [\n                13.919905,\n                64.445421\n              ],\n              [\n                13.55569,\n                64.787028\n              ],\n              [\n                15.108411,\n                66.193867\n              ],\n              [\n                16.108712,\n                67.302456\n              ],\n              [\n                16.768879,\n                68.013937\n              ],\n              [\n                17.729182,\n                68.010552\n              ],\n              [\n                17.993868,\n                68.567391\n              ],\n              [\n                19.87856,\n                68.407194\n              ],\n              [\n                20.025269,\n                69.065139\n              ],\n              [\n                20.645593,\n                69.106247\n              ],\n              [\n                21.978535,\n                68.616846\n              ],\n              [\n                23.539473,\n                67.936009\n              ],\n              [\n                23.56588,\n                66.396051\n              ],\n              [\n                23.903379,\n                66.006927\n              ],\n              [\n                22.183173,\n                65.723741\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SWZ.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SWZ\",\"properties\":{\"name\":\"Swaziland\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[32.071665,-26.73382],[31.86806,-27.177927],[31.282773,-27.285879],[30.685962,-26.743845],[30.676609,-26.398078],[30.949667,-26.022649],[31.04408,-25.731452],[31.333158,-25.660191],[31.837778,-25.843332],[31.985779,-26.29178],[32.071665,-26.73382]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SWZ_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -31.95216224\n            ],\n            [\n              28.125,\n              -27.05912578\n            ],\n            [\n              33.75,\n              -27.05912578\n            ],\n            [\n              33.75,\n              -31.95216224\n            ],\n            [\n              28.125,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              32.071665,\n              -26.73382\n            ],\n            [\n              31.86806,\n              -27.177927\n            ],\n            [\n              31.282773,\n              -27.285879\n            ],\n            [\n              30.685962,\n              -26.743845\n            ],\n            [\n              30.676609,\n              -26.398078\n            ],\n            [\n              30.949667,\n              -26.022649\n            ],\n            [\n              31.04408,\n              -25.731452\n            ],\n            [\n              31.333158,\n              -25.660191\n            ],\n            [\n              31.837778,\n              -25.843332\n            ],\n            [\n              31.985779,\n              -26.29178\n            ],\n            [\n              32.071665,\n              -26.73382\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/SYR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"SYR\",\"properties\":{\"name\":\"Syria\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[38.792341,33.378686],[36.834062,32.312938],[35.719918,32.709192],[35.700798,32.716014],[35.836397,32.868123],[35.821101,33.277426],[36.06646,33.824912],[36.61175,34.201789],[36.448194,34.593935],[35.998403,34.644914],[35.905023,35.410009],[36.149763,35.821535],[36.41755,36.040617],[36.685389,36.259699],[36.739494,36.81752],[37.066761,36.623036],[38.167727,36.90121],[38.699891,36.712927],[39.52258,36.716054],[40.673259,37.091276],[41.212089,37.074352],[42.349591,37.229873],[41.837064,36.605854],[41.289707,36.358815],[41.383965,35.628317],[41.006159,34.419372],[38.792341,33.378686]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/SYR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              38.792341,\n              33.378686\n            ],\n            [\n              36.834062,\n              32.312938\n            ],\n            [\n              35.719918,\n              32.709192\n            ],\n            [\n              35.700798,\n              32.716014\n            ],\n            [\n              35.836397,\n              32.868123\n            ],\n            [\n              35.821101,\n              33.277426\n            ],\n            [\n              36.06646,\n              33.824912\n            ],\n            [\n              36.61175,\n              34.201789\n            ],\n            [\n              36.448194,\n              34.593935\n            ],\n            [\n              35.998403,\n              34.644914\n            ],\n            [\n              35.905023,\n              35.410009\n            ],\n            [\n              36.149763,\n              35.821535\n            ],\n            [\n              36.41755,\n              36.040617\n            ],\n            [\n              36.685389,\n              36.259699\n            ],\n            [\n              36.739494,\n              36.81752\n            ],\n            [\n              37.066761,\n              36.623036\n            ],\n            [\n              38.167727,\n              36.90121\n            ],\n            [\n              38.699891,\n              36.712927\n            ],\n            [\n              39.52258,\n              36.716054\n            ],\n            [\n              40.673259,\n              37.091276\n            ],\n            [\n              41.212089,\n              37.074352\n            ],\n            [\n              42.349591,\n              37.229873\n            ],\n            [\n              41.837064,\n              36.605854\n            ],\n            [\n              41.289707,\n              36.358815\n            ],\n            [\n              41.383965,\n              35.628317\n            ],\n            [\n              41.006159,\n              34.419372\n            ],\n            [\n              38.792341,\n              33.378686\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TCD.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TCD\",\"properties\":{\"name\":\"Chad\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[14.495787,12.859396],[14.595781,13.330427],[13.954477,13.353449],[13.956699,13.996691],[13.540394,14.367134],[13.97217,15.68437],[15.247731,16.627306],[15.300441,17.92795],[15.685741,19.95718],[15.903247,20.387619],[15.487148,20.730415],[15.47106,21.04845],[15.096888,21.308519],[14.8513,22.86295],[15.86085,23.40972],[19.84926,21.49509],[23.83766,19.58047],[23.88689,15.61084],[23.02459,15.68072],[22.56795,14.94429],[22.30351,14.32682],[22.51202,14.09318],[22.18329,13.78648],[22.29658,13.37232],[22.03759,12.95546],[21.93681,12.58818],[22.28801,12.64605],[22.49762,12.26024],[22.50869,11.67936],[22.87622,11.38461],[22.864165,11.142395],[22.231129,10.971889],[21.723822,10.567056],[21.000868,9.475985],[20.059685,9.012706],[19.094008,9.074847],[18.81201,8.982915],[18.911022,8.630895],[18.389555,8.281304],[17.96493,7.890914],[16.705988,7.508328],[16.456185,7.734774],[16.290562,7.754307],[16.106232,7.497088],[15.27946,7.421925],[15.436092,7.692812],[15.120866,8.38215],[14.979996,8.796104],[14.544467,8.965861],[13.954218,9.549495],[14.171466,10.021378],[14.627201,9.920919],[14.909354,9.992129],[15.467873,9.982337],[14.923565,10.891325],[14.960152,11.555574],[14.89336,12.21905],[14.495787,12.859396]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TCD_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              11.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              21.94304553\n            ],\n            [\n              11.25,\n              27.05912578\n            ],\n            [\n              16.875,\n              27.05912578\n            ],\n            [\n              16.875,\n              21.94304553\n            ],\n            [\n              11.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              5.61598582\n            ],\n            [\n              11.25,\n              11.17840187\n            ],\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              11.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              21.94304553\n            ],\n            [\n              16.875,\n              27.05912578\n            ],\n            [\n              22.5,\n              27.05912578\n            ],\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              16.875,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              5.61598582\n            ],\n            [\n              16.875,\n              11.17840187\n            ],\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              16.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              28.125,\n              16.63619188\n            ],\n            [\n              28.125,\n              11.17840187\n            ],\n            [\n              22.5,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              16.63619188\n            ],\n            [\n              22.5,\n              21.94304553\n            ],\n            [\n              28.125,\n              21.94304553\n            ],\n            [\n              28.125,\n              16.63619188\n            ],\n            [\n              22.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              5.61598582\n            ],\n            [\n              22.5,\n              11.17840187\n            ],\n            [\n              28.125,\n              11.17840187\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              22.5,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              14.495787,\n              12.859396\n            ],\n            [\n              14.595781,\n              13.330427\n            ],\n            [\n              13.954477,\n              13.353449\n            ],\n            [\n              13.956699,\n              13.996691\n            ],\n            [\n              13.540394,\n              14.367134\n            ],\n            [\n              13.97217,\n              15.68437\n            ],\n            [\n              15.247731,\n              16.627306\n            ],\n            [\n              15.300441,\n              17.92795\n            ],\n            [\n              15.685741,\n              19.95718\n            ],\n            [\n              15.903247,\n              20.387619\n            ],\n            [\n              15.487148,\n              20.730415\n            ],\n            [\n              15.47106,\n              21.04845\n            ],\n            [\n              15.096888,\n              21.308519\n            ],\n            [\n              14.8513,\n              22.86295\n            ],\n            [\n              15.86085,\n              23.40972\n            ],\n            [\n              19.84926,\n              21.49509\n            ],\n            [\n              23.83766,\n              19.58047\n            ],\n            [\n              23.88689,\n              15.61084\n            ],\n            [\n              23.02459,\n              15.68072\n            ],\n            [\n              22.56795,\n              14.94429\n            ],\n            [\n              22.30351,\n              14.32682\n            ],\n            [\n              22.51202,\n              14.09318\n            ],\n            [\n              22.18329,\n              13.78648\n            ],\n            [\n              22.29658,\n              13.37232\n            ],\n            [\n              22.03759,\n              12.95546\n            ],\n            [\n              21.93681,\n              12.58818\n            ],\n            [\n              22.28801,\n              12.64605\n            ],\n            [\n              22.49762,\n              12.26024\n            ],\n            [\n              22.50869,\n              11.67936\n            ],\n            [\n              22.87622,\n              11.38461\n            ],\n            [\n              22.864165,\n              11.142395\n            ],\n            [\n              22.231129,\n              10.971889\n            ],\n            [\n              21.723822,\n              10.567056\n            ],\n            [\n              21.000868,\n              9.475985\n            ],\n            [\n              20.059685,\n              9.012706\n            ],\n            [\n              19.094008,\n              9.074847\n            ],\n            [\n              18.81201,\n              8.982915\n            ],\n            [\n              18.911022,\n              8.630895\n            ],\n            [\n              18.389555,\n              8.281304\n            ],\n            [\n              17.96493,\n              7.890914\n            ],\n            [\n              16.705988,\n              7.508328\n            ],\n            [\n              16.456185,\n              7.734774\n            ],\n            [\n              16.290562,\n              7.754307\n            ],\n            [\n              16.106232,\n              7.497088\n            ],\n            [\n              15.27946,\n              7.421925\n            ],\n            [\n              15.436092,\n              7.692812\n            ],\n            [\n              15.120866,\n              8.38215\n            ],\n            [\n              14.979996,\n              8.796104\n            ],\n            [\n              14.544467,\n              8.965861\n            ],\n            [\n              13.954218,\n              9.549495\n            ],\n            [\n              14.171466,\n              10.021378\n            ],\n            [\n              14.627201,\n              9.920919\n            ],\n            [\n              14.909354,\n              9.992129\n            ],\n            [\n              15.467873,\n              9.982337\n            ],\n            [\n              14.923565,\n              10.891325\n            ],\n            [\n              14.960152,\n              11.555574\n            ],\n            [\n              14.89336,\n              12.21905\n            ],\n            [\n              14.495787,\n              12.859396\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TGO.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TGO\",\"properties\":{\"name\":\"Togo\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[1.865241,6.142158],[1.060122,5.928837],[0.836931,6.279979],[0.570384,6.914359],[0.490957,7.411744],[0.712029,8.312465],[0.461192,8.677223],[0.365901,9.465004],[0.36758,10.191213],[-0.049785,10.706918],[0.023803,11.018682],[0.899563,10.997339],[0.772336,10.470808],[1.077795,10.175607],[1.425061,9.825395],[1.463043,9.334624],[1.664478,9.12859],[1.618951,6.832038],[1.865241,6.142158]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TGO_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -5.625,\n              5.61598582\n            ],\n            [\n              -5.625,\n              11.17840187\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              0,\n              5.61598582\n            ],\n            [\n              -5.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              5.61598582\n            ],\n            [\n              0,\n              11.17840187\n            ],\n            [\n              5.625,\n              11.17840187\n            ],\n            [\n              5.625,\n              5.61598582\n            ],\n            [\n              0,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              1.865241,\n              6.142158\n            ],\n            [\n              1.060122,\n              5.928837\n            ],\n            [\n              0.836931,\n              6.279979\n            ],\n            [\n              0.570384,\n              6.914359\n            ],\n            [\n              0.490957,\n              7.411744\n            ],\n            [\n              0.712029,\n              8.312465\n            ],\n            [\n              0.461192,\n              8.677223\n            ],\n            [\n              0.365901,\n              9.465004\n            ],\n            [\n              0.36758,\n              10.191213\n            ],\n            [\n              -0.049785,\n              10.706918\n            ],\n            [\n              0.023803,\n              11.018682\n            ],\n            [\n              0.899563,\n              10.997339\n            ],\n            [\n              0.772336,\n              10.470808\n            ],\n            [\n              1.077795,\n              10.175607\n            ],\n            [\n              1.425061,\n              9.825395\n            ],\n            [\n              1.463043,\n              9.334624\n            ],\n            [\n              1.664478,\n              9.12859\n            ],\n            [\n              1.618951,\n              6.832038\n            ],\n            [\n              1.865241,\n              6.142158\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/THA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"THA\",\"properties\":{\"name\":\"Thailand\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[102.584932,12.186595],[101.687158,12.64574],[100.83181,12.627085],[100.978467,13.412722],[100.097797,13.406856],[100.018733,12.307001],[99.478921,10.846367],[99.153772,9.963061],[99.222399,9.239255],[99.873832,9.207862],[100.279647,8.295153],[100.459274,7.429573],[101.017328,6.856869],[101.623079,6.740622],[102.141187,6.221636],[101.814282,5.810808],[101.154219,5.691384],[101.075516,6.204867],[100.259596,6.642825],[100.085757,6.464489],[99.690691,6.848213],[99.519642,7.343454],[98.988253,7.907993],[98.503786,8.382305],[98.339662,7.794512],[98.150009,8.350007],[98.25915,8.973923],[98.553551,9.93296],[99.038121,10.960546],[99.587286,11.892763],[99.196354,12.804748],[99.212012,13.269294],[99.097755,13.827503],[98.430819,14.622028],[98.192074,15.123703],[98.537376,15.308497],[98.903348,16.177824],[98.493761,16.837836],[97.859123,17.567946],[97.375896,18.445438],[97.797783,18.62708],[98.253724,19.708203],[98.959676,19.752981],[99.543309,20.186598],[100.115988,20.41785],[100.548881,20.109238],[100.606294,19.508344],[101.282015,19.462585],[101.035931,18.408928],[101.059548,17.512497],[102.113592,18.109102],[102.413005,17.932782],[102.998706,17.961695],[103.200192,18.309632],[103.956477,18.240954],[104.716947,17.428859],[104.779321,16.441865],[105.589039,15.570316],[105.544338,14.723934],[105.218777,14.273212],[104.281418,14.416743],[102.988422,14.225721],[102.348099,13.394247],[102.584932,12.186595]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/THA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              101.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              106.875,\n              21.94304553\n            ],\n            [\n              106.875,\n              16.63619188\n            ],\n            [\n              101.25,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              101.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              11.17840187\n            ],\n            [\n              95.625,\n              16.63619188\n            ],\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              95.625,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              16.63619188\n            ],\n            [\n              95.625,\n              21.94304553\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              101.25,\n              16.63619188\n            ],\n            [\n              95.625,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              95.625,\n              5.61598582\n            ],\n            [\n              95.625,\n              11.17840187\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              95.625,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              102.584932,\n              12.186595\n            ],\n            [\n              101.687158,\n              12.64574\n            ],\n            [\n              100.83181,\n              12.627085\n            ],\n            [\n              100.978467,\n              13.412722\n            ],\n            [\n              100.097797,\n              13.406856\n            ],\n            [\n              100.018733,\n              12.307001\n            ],\n            [\n              99.478921,\n              10.846367\n            ],\n            [\n              99.153772,\n              9.963061\n            ],\n            [\n              99.222399,\n              9.239255\n            ],\n            [\n              99.873832,\n              9.207862\n            ],\n            [\n              100.279647,\n              8.295153\n            ],\n            [\n              100.459274,\n              7.429573\n            ],\n            [\n              101.017328,\n              6.856869\n            ],\n            [\n              101.623079,\n              6.740622\n            ],\n            [\n              102.141187,\n              6.221636\n            ],\n            [\n              101.814282,\n              5.810808\n            ],\n            [\n              101.154219,\n              5.691384\n            ],\n            [\n              101.075516,\n              6.204867\n            ],\n            [\n              100.259596,\n              6.642825\n            ],\n            [\n              100.085757,\n              6.464489\n            ],\n            [\n              99.690691,\n              6.848213\n            ],\n            [\n              99.519642,\n              7.343454\n            ],\n            [\n              98.988253,\n              7.907993\n            ],\n            [\n              98.503786,\n              8.382305\n            ],\n            [\n              98.339662,\n              7.794512\n            ],\n            [\n              98.150009,\n              8.350007\n            ],\n            [\n              98.25915,\n              8.973923\n            ],\n            [\n              98.553551,\n              9.93296\n            ],\n            [\n              99.038121,\n              10.960546\n            ],\n            [\n              99.587286,\n              11.892763\n            ],\n            [\n              99.196354,\n              12.804748\n            ],\n            [\n              99.212012,\n              13.269294\n            ],\n            [\n              99.097755,\n              13.827503\n            ],\n            [\n              98.430819,\n              14.622028\n            ],\n            [\n              98.192074,\n              15.123703\n            ],\n            [\n              98.537376,\n              15.308497\n            ],\n            [\n              98.903348,\n              16.177824\n            ],\n            [\n              98.493761,\n              16.837836\n            ],\n            [\n              97.859123,\n              17.567946\n            ],\n            [\n              97.375896,\n              18.445438\n            ],\n            [\n              97.797783,\n              18.62708\n            ],\n            [\n              98.253724,\n              19.708203\n            ],\n            [\n              98.959676,\n              19.752981\n            ],\n            [\n              99.543309,\n              20.186598\n            ],\n            [\n              100.115988,\n              20.41785\n            ],\n            [\n              100.548881,\n              20.109238\n            ],\n            [\n              100.606294,\n              19.508344\n            ],\n            [\n              101.282015,\n              19.462585\n            ],\n            [\n              101.035931,\n              18.408928\n            ],\n            [\n              101.059548,\n              17.512497\n            ],\n            [\n              102.113592,\n              18.109102\n            ],\n            [\n              102.413005,\n              17.932782\n            ],\n            [\n              102.998706,\n              17.961695\n            ],\n            [\n              103.200192,\n              18.309632\n            ],\n            [\n              103.956477,\n              18.240954\n            ],\n            [\n              104.716947,\n              17.428859\n            ],\n            [\n              104.779321,\n              16.441865\n            ],\n            [\n              105.589039,\n              15.570316\n            ],\n            [\n              105.544338,\n              14.723934\n            ],\n            [\n              105.218777,\n              14.273212\n            ],\n            [\n              104.281418,\n              14.416743\n            ],\n            [\n              102.988422,\n              14.225721\n            ],\n            [\n              102.348099,\n              13.394247\n            ],\n            [\n              102.584932,\n              12.186595\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TJK.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TJK\",\"properties\":{\"name\":\"Tajikistan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[71.014198,40.244366],[70.648019,39.935754],[69.55961,40.103211],[69.464887,39.526683],[70.549162,39.604198],[71.784694,39.279463],[73.675379,39.431237],[73.928852,38.505815],[74.257514,38.606507],[74.864816,38.378846],[74.829986,37.990007],[74.980002,37.41999],[73.948696,37.421566],[73.260056,37.495257],[72.63689,37.047558],[72.193041,36.948288],[71.844638,36.738171],[71.448693,37.065645],[71.541918,37.905774],[71.239404,37.953265],[71.348131,38.258905],[70.806821,38.486282],[70.376304,38.138396],[70.270574,37.735165],[70.116578,37.588223],[69.518785,37.608997],[69.196273,37.151144],[68.859446,37.344336],[68.135562,37.023115],[67.83,37.144994],[68.392033,38.157025],[68.176025,38.901553],[67.44222,39.140144],[67.701429,39.580478],[68.536416,39.533453],[69.011633,40.086158],[69.329495,40.727824],[70.666622,40.960213],[70.45816,40.496495],[70.601407,40.218527],[71.014198,40.244366]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TJK_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              36.59788913\n            ],\n            [\n              61.875,\n              40.97989807\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              61.875,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              67.5,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              78.75,\n              40.97989807\n            ],\n            [\n              78.75,\n              36.59788913\n            ],\n            [\n              73.125,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              71.014198,\n              40.244366\n            ],\n            [\n              70.648019,\n              39.935754\n            ],\n            [\n              69.55961,\n              40.103211\n            ],\n            [\n              69.464887,\n              39.526683\n            ],\n            [\n              70.549162,\n              39.604198\n            ],\n            [\n              71.784694,\n              39.279463\n            ],\n            [\n              73.675379,\n              39.431237\n            ],\n            [\n              73.928852,\n              38.505815\n            ],\n            [\n              74.257514,\n              38.606507\n            ],\n            [\n              74.864816,\n              38.378846\n            ],\n            [\n              74.829986,\n              37.990007\n            ],\n            [\n              74.980002,\n              37.41999\n            ],\n            [\n              73.948696,\n              37.421566\n            ],\n            [\n              73.260056,\n              37.495257\n            ],\n            [\n              72.63689,\n              37.047558\n            ],\n            [\n              72.193041,\n              36.948288\n            ],\n            [\n              71.844638,\n              36.738171\n            ],\n            [\n              71.448693,\n              37.065645\n            ],\n            [\n              71.541918,\n              37.905774\n            ],\n            [\n              71.239404,\n              37.953265\n            ],\n            [\n              71.348131,\n              38.258905\n            ],\n            [\n              70.806821,\n              38.486282\n            ],\n            [\n              70.376304,\n              38.138396\n            ],\n            [\n              70.270574,\n              37.735165\n            ],\n            [\n              70.116578,\n              37.588223\n            ],\n            [\n              69.518785,\n              37.608997\n            ],\n            [\n              69.196273,\n              37.151144\n            ],\n            [\n              68.859446,\n              37.344336\n            ],\n            [\n              68.135562,\n              37.023115\n            ],\n            [\n              67.83,\n              37.144994\n            ],\n            [\n              68.392033,\n              38.157025\n            ],\n            [\n              68.176025,\n              38.901553\n            ],\n            [\n              67.44222,\n              39.140144\n            ],\n            [\n              67.701429,\n              39.580478\n            ],\n            [\n              68.536416,\n              39.533453\n            ],\n            [\n              69.011633,\n              40.086158\n            ],\n            [\n              69.329495,\n              40.727824\n            ],\n            [\n              70.666622,\n              40.960213\n            ],\n            [\n              70.45816,\n              40.496495\n            ],\n            [\n              70.601407,\n              40.218527\n            ],\n            [\n              71.014198,\n              40.244366\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TKM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TKM\",\"properties\":{\"name\":\"Turkmenistan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[61.210817,35.650072],[61.123071,36.491597],[60.377638,36.527383],[59.234762,37.412988],[58.436154,37.522309],[57.330434,38.029229],[56.619366,38.121394],[56.180375,37.935127],[55.511578,37.964117],[54.800304,37.392421],[53.921598,37.198918],[53.735511,37.906136],[53.880929,38.952093],[53.101028,39.290574],[53.357808,39.975286],[52.693973,40.033629],[52.915251,40.876523],[53.858139,40.631034],[54.736845,40.951015],[54.008311,41.551211],[53.721713,42.123191],[52.91675,41.868117],[52.814689,41.135371],[52.50246,41.783316],[52.944293,42.116034],[54.079418,42.324109],[54.755345,42.043971],[55.455251,41.259859],[55.968191,41.308642],[57.096391,41.32231],[56.932215,41.826026],[57.78653,42.170553],[58.629011,42.751551],[59.976422,42.223082],[60.083341,41.425146],[60.465953,41.220327],[61.547179,41.26637],[61.882714,41.084857],[62.37426,40.053886],[63.518015,39.363257],[64.170223,38.892407],[65.215999,38.402695],[66.54615,37.974685],[66.518607,37.362784],[66.217385,37.39379],[65.745631,37.661164],[65.588948,37.305217],[64.746105,37.111818],[64.546479,36.312073],[63.982896,36.007957],[63.193538,35.857166],[62.984662,35.404041],[62.230651,35.270664],[61.210817,35.650072]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TKM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              36.59788913\n            ],\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              56.25,\n              36.59788913\n            ],\n            [\n              50.625,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              56.25,\n              45.08903556\n            ],\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              50.625,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              31.95216224\n            ],\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              67.5,\n              31.95216224\n            ],\n            [\n              56.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              56.25,\n              45.08903556\n            ],\n            [\n              61.875,\n              45.08903556\n            ],\n            [\n              61.875,\n              40.97989807\n            ],\n            [\n              56.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              40.97989807\n            ],\n            [\n              61.875,\n              45.08903556\n            ],\n            [\n              67.5,\n              45.08903556\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              61.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.210817,\n              35.650072\n            ],\n            [\n              61.123071,\n              36.491597\n            ],\n            [\n              60.377638,\n              36.527383\n            ],\n            [\n              59.234762,\n              37.412988\n            ],\n            [\n              58.436154,\n              37.522309\n            ],\n            [\n              57.330434,\n              38.029229\n            ],\n            [\n              56.619366,\n              38.121394\n            ],\n            [\n              56.180375,\n              37.935127\n            ],\n            [\n              55.511578,\n              37.964117\n            ],\n            [\n              54.800304,\n              37.392421\n            ],\n            [\n              53.921598,\n              37.198918\n            ],\n            [\n              53.735511,\n              37.906136\n            ],\n            [\n              53.880929,\n              38.952093\n            ],\n            [\n              53.101028,\n              39.290574\n            ],\n            [\n              53.357808,\n              39.975286\n            ],\n            [\n              52.693973,\n              40.033629\n            ],\n            [\n              52.915251,\n              40.876523\n            ],\n            [\n              53.858139,\n              40.631034\n            ],\n            [\n              54.736845,\n              40.951015\n            ],\n            [\n              54.008311,\n              41.551211\n            ],\n            [\n              53.721713,\n              42.123191\n            ],\n            [\n              52.91675,\n              41.868117\n            ],\n            [\n              52.814689,\n              41.135371\n            ],\n            [\n              52.50246,\n              41.783316\n            ],\n            [\n              52.944293,\n              42.116034\n            ],\n            [\n              54.079418,\n              42.324109\n            ],\n            [\n              54.755345,\n              42.043971\n            ],\n            [\n              55.455251,\n              41.259859\n            ],\n            [\n              55.968191,\n              41.308642\n            ],\n            [\n              57.096391,\n              41.32231\n            ],\n            [\n              56.932215,\n              41.826026\n            ],\n            [\n              57.78653,\n              42.170553\n            ],\n            [\n              58.629011,\n              42.751551\n            ],\n            [\n              59.976422,\n              42.223082\n            ],\n            [\n              60.083341,\n              41.425146\n            ],\n            [\n              60.465953,\n              41.220327\n            ],\n            [\n              61.547179,\n              41.26637\n            ],\n            [\n              61.882714,\n              41.084857\n            ],\n            [\n              62.37426,\n              40.053886\n            ],\n            [\n              63.518015,\n              39.363257\n            ],\n            [\n              64.170223,\n              38.892407\n            ],\n            [\n              65.215999,\n              38.402695\n            ],\n            [\n              66.54615,\n              37.974685\n            ],\n            [\n              66.518607,\n              37.362784\n            ],\n            [\n              66.217385,\n              37.39379\n            ],\n            [\n              65.745631,\n              37.661164\n            ],\n            [\n              65.588948,\n              37.305217\n            ],\n            [\n              64.746105,\n              37.111818\n            ],\n            [\n              64.546479,\n              36.312073\n            ],\n            [\n              63.982896,\n              36.007957\n            ],\n            [\n              63.193538,\n              35.857166\n            ],\n            [\n              62.984662,\n              35.404041\n            ],\n            [\n              62.230651,\n              35.270664\n            ],\n            [\n              61.210817,\n              35.650072\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TLS.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TLS\",\"properties\":{\"name\":\"East Timor\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[124.968682,-8.89279],[125.086246,-8.656887],[125.947072,-8.432095],[126.644704,-8.398247],[126.957243,-8.273345],[127.335928,-8.397317],[126.967992,-8.668256],[125.925885,-9.106007],[125.08852,-9.393173],[125.07002,-9.089987],[124.968682,-8.89279]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TLS_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              123.75,\n              -11.17840187\n            ],\n            [\n              123.75,\n              -5.61598582\n            ],\n            [\n              129.375,\n              -5.61598582\n            ],\n            [\n              129.375,\n              -11.17840187\n            ],\n            [\n              123.75,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              124.968682,\n              -8.89279\n            ],\n            [\n              125.086246,\n              -8.656887\n            ],\n            [\n              125.947072,\n              -8.432095\n            ],\n            [\n              126.644704,\n              -8.398247\n            ],\n            [\n              126.957243,\n              -8.273345\n            ],\n            [\n              127.335928,\n              -8.397317\n            ],\n            [\n              126.967992,\n              -8.668256\n            ],\n            [\n              125.925885,\n              -9.106007\n            ],\n            [\n              125.08852,\n              -9.393173\n            ],\n            [\n              125.07002,\n              -9.089987\n            ],\n            [\n              124.968682,\n              -8.89279\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TTO.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TTO\",\"properties\":{\"name\":\"Trinidad and Tobago\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TTO_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -61.875,\n              11.17840187\n            ],\n            [\n              -56.25,\n              11.17840187\n            ],\n            [\n              -56.25,\n              5.61598582\n            ],\n            [\n              -61.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              5.61598582\n            ],\n            [\n              -67.5,\n              11.17840187\n            ],\n            [\n              -61.875,\n              11.17840187\n            ],\n            [\n              -61.875,\n              5.61598582\n            ],\n            [\n              -67.5,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.68,\n              10.76\n            ],\n            [\n              -61.105,\n              10.89\n            ],\n            [\n              -60.895,\n              10.855\n            ],\n            [\n              -60.935,\n              10.11\n            ],\n            [\n              -61.77,\n              10\n            ],\n            [\n              -61.95,\n              10.09\n            ],\n            [\n              -61.66,\n              10.365\n            ],\n            [\n              -61.68,\n              10.76\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TUN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TUN\",\"properties\":{\"name\":\"Tunisia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[9.48214,30.307556],[9.055603,32.102692],[8.439103,32.506285],[8.430473,32.748337],[7.612642,33.344115],[7.524482,34.097376],[8.140981,34.655146],[8.376368,35.479876],[8.217824,36.433177],[8.420964,36.946427],[9.509994,37.349994],[10.210002,37.230002],[10.18065,36.724038],[11.028867,37.092103],[11.100026,36.899996],[10.600005,36.41],[10.593287,35.947444],[10.939519,35.698984],[10.807847,34.833507],[10.149593,34.330773],[10.339659,33.785742],[10.856836,33.76874],[11.108501,33.293343],[11.488787,33.136996],[11.432253,32.368903],[10.94479,32.081815],[10.636901,31.761421],[9.950225,31.37607],[10.056575,30.961831],[9.970017,30.539325],[9.48214,30.307556]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TUN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              11.25,\n              36.59788913\n            ],\n            [\n              16.875,\n              36.59788913\n            ],\n            [\n              16.875,\n              31.95216224\n            ],\n            [\n              11.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              27.05912578\n            ],\n            [\n              5.625,\n              31.95216224\n            ],\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              11.25,\n              27.05912578\n            ],\n            [\n              5.625,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              31.95216224\n            ],\n            [\n              5.625,\n              36.59788913\n            ],\n            [\n              11.25,\n              36.59788913\n            ],\n            [\n              11.25,\n              31.95216224\n            ],\n            [\n              5.625,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              5.625,\n              36.59788913\n            ],\n            [\n              5.625,\n              40.97989807\n            ],\n            [\n              11.25,\n              40.97989807\n            ],\n            [\n              11.25,\n              36.59788913\n            ],\n            [\n              5.625,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              9.48214,\n              30.307556\n            ],\n            [\n              9.055603,\n              32.102692\n            ],\n            [\n              8.439103,\n              32.506285\n            ],\n            [\n              8.430473,\n              32.748337\n            ],\n            [\n              7.612642,\n              33.344115\n            ],\n            [\n              7.524482,\n              34.097376\n            ],\n            [\n              8.140981,\n              34.655146\n            ],\n            [\n              8.376368,\n              35.479876\n            ],\n            [\n              8.217824,\n              36.433177\n            ],\n            [\n              8.420964,\n              36.946427\n            ],\n            [\n              9.509994,\n              37.349994\n            ],\n            [\n              10.210002,\n              37.230002\n            ],\n            [\n              10.18065,\n              36.724038\n            ],\n            [\n              11.028867,\n              37.092103\n            ],\n            [\n              11.100026,\n              36.899996\n            ],\n            [\n              10.600005,\n              36.41\n            ],\n            [\n              10.593287,\n              35.947444\n            ],\n            [\n              10.939519,\n              35.698984\n            ],\n            [\n              10.807847,\n              34.833507\n            ],\n            [\n              10.149593,\n              34.330773\n            ],\n            [\n              10.339659,\n              33.785742\n            ],\n            [\n              10.856836,\n              33.76874\n            ],\n            [\n              11.108501,\n              33.293343\n            ],\n            [\n              11.488787,\n              33.136996\n            ],\n            [\n              11.432253,\n              32.368903\n            ],\n            [\n              10.94479,\n              32.081815\n            ],\n            [\n              10.636901,\n              31.761421\n            ],\n            [\n              9.950225,\n              31.37607\n            ],\n            [\n              10.056575,\n              30.961831\n            ],\n            [\n              9.970017,\n              30.539325\n            ],\n            [\n              9.48214,\n              30.307556\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TUR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TUR\",\"properties\":{\"name\":\"Turkey\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[36.913127,41.335358],[38.347665,40.948586],[39.512607,41.102763],[40.373433,41.013673],[41.554084,41.535656],[42.619549,41.583173],[43.582746,41.092143],[43.752658,40.740201],[43.656436,40.253564],[44.400009,40.005],[44.79399,39.713003],[44.109225,39.428136],[44.421403,38.281281],[44.225756,37.971584],[44.772699,37.170445],[44.293452,37.001514],[43.942259,37.256228],[42.779126,37.385264],[42.349591,37.229873],[41.212089,37.074352],[40.673259,37.091276],[39.52258,36.716054],[38.699891,36.712927],[38.167727,36.90121],[37.066761,36.623036],[36.739494,36.81752],[36.685389,36.259699],[36.41755,36.040617],[36.149763,35.821535],[35.782085,36.274995],[36.160822,36.650606],[35.550936,36.565443],[34.714553,36.795532],[34.026895,36.21996],[32.509158,36.107564],[31.699595,36.644275],[30.621625,36.677865],[30.391096,36.262981],[29.699976,36.144357],[28.732903,36.676831],[27.641187,36.658822],[27.048768,37.653361],[26.318218,38.208133],[26.8047,38.98576],[26.170785,39.463612],[27.28002,40.420014],[28.819978,40.460011],[29.240004,41.219991],[31.145934,41.087622],[32.347979,41.736264],[33.513283,42.01896],[35.167704,42.040225],[36.913127,41.335358]]],[[[27.192377,40.690566],[26.358009,40.151994],[26.043351,40.617754],[26.056942,40.824123],[26.294602,40.936261],[26.604196,41.562115],[26.117042,41.826905],[27.135739,42.141485],[27.99672,42.007359],[28.115525,41.622886],[28.988443,41.299934],[28.806438,41.054962],[27.619017,40.999823],[27.192377,40.690566]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TUR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              36.59788913\n            ],\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              28.125,\n              36.59788913\n            ],\n            [\n              22.5,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              40.97989807\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              22.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              31.95216224\n            ],\n            [\n              28.125,\n              36.59788913\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              28.125,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              36.59788913\n            ],\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              28.125,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              28.125,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              31.95216224\n            ],\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              31.95216224\n            ],\n            [\n              33.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              36.59788913\n            ],\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              33.75,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              33.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              36.59788913\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              45,\n              36.59788913\n            ],\n            [\n              39.375,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              45,\n              40.97989807\n            ],\n            [\n              39.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                36.913127,\n                41.335358\n              ],\n              [\n                38.347665,\n                40.948586\n              ],\n              [\n                39.512607,\n                41.102763\n              ],\n              [\n                40.373433,\n                41.013673\n              ],\n              [\n                41.554084,\n                41.535656\n              ],\n              [\n                42.619549,\n                41.583173\n              ],\n              [\n                43.582746,\n                41.092143\n              ],\n              [\n                43.752658,\n                40.740201\n              ],\n              [\n                43.656436,\n                40.253564\n              ],\n              [\n                44.400009,\n                40.005\n              ],\n              [\n                44.79399,\n                39.713003\n              ],\n              [\n                44.109225,\n                39.428136\n              ],\n              [\n                44.421403,\n                38.281281\n              ],\n              [\n                44.225756,\n                37.971584\n              ],\n              [\n                44.772699,\n                37.170445\n              ],\n              [\n                44.293452,\n                37.001514\n              ],\n              [\n                43.942259,\n                37.256228\n              ],\n              [\n                42.779126,\n                37.385264\n              ],\n              [\n                42.349591,\n                37.229873\n              ],\n              [\n                41.212089,\n                37.074352\n              ],\n              [\n                40.673259,\n                37.091276\n              ],\n              [\n                39.52258,\n                36.716054\n              ],\n              [\n                38.699891,\n                36.712927\n              ],\n              [\n                38.167727,\n                36.90121\n              ],\n              [\n                37.066761,\n                36.623036\n              ],\n              [\n                36.739494,\n                36.81752\n              ],\n              [\n                36.685389,\n                36.259699\n              ],\n              [\n                36.41755,\n                36.040617\n              ],\n              [\n                36.149763,\n                35.821535\n              ],\n              [\n                35.782085,\n                36.274995\n              ],\n              [\n                36.160822,\n                36.650606\n              ],\n              [\n                35.550936,\n                36.565443\n              ],\n              [\n                34.714553,\n                36.795532\n              ],\n              [\n                34.026895,\n                36.21996\n              ],\n              [\n                32.509158,\n                36.107564\n              ],\n              [\n                31.699595,\n                36.644275\n              ],\n              [\n                30.621625,\n                36.677865\n              ],\n              [\n                30.391096,\n                36.262981\n              ],\n              [\n                29.699976,\n                36.144357\n              ],\n              [\n                28.732903,\n                36.676831\n              ],\n              [\n                27.641187,\n                36.658822\n              ],\n              [\n                27.048768,\n                37.653361\n              ],\n              [\n                26.318218,\n                38.208133\n              ],\n              [\n                26.8047,\n                38.98576\n              ],\n              [\n                26.170785,\n                39.463612\n              ],\n              [\n                27.28002,\n                40.420014\n              ],\n              [\n                28.819978,\n                40.460011\n              ],\n              [\n                29.240004,\n                41.219991\n              ],\n              [\n                31.145934,\n                41.087622\n              ],\n              [\n                32.347979,\n                41.736264\n              ],\n              [\n                33.513283,\n                42.01896\n              ],\n              [\n                35.167704,\n                42.040225\n              ],\n              [\n                36.913127,\n                41.335358\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                27.192377,\n                40.690566\n              ],\n              [\n                26.358009,\n                40.151994\n              ],\n              [\n                26.043351,\n                40.617754\n              ],\n              [\n                26.056942,\n                40.824123\n              ],\n              [\n                26.294602,\n                40.936261\n              ],\n              [\n                26.604196,\n                41.562115\n              ],\n              [\n                26.117042,\n                41.826905\n              ],\n              [\n                27.135739,\n                42.141485\n              ],\n              [\n                27.99672,\n                42.007359\n              ],\n              [\n                28.115525,\n                41.622886\n              ],\n              [\n                28.988443,\n                41.299934\n              ],\n              [\n                28.806438,\n                41.054962\n              ],\n              [\n                27.619017,\n                40.999823\n              ],\n              [\n                27.192377,\n                40.690566\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TWN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TWN\",\"properties\":{\"name\":\"Taiwan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[121.777818,24.394274],[121.175632,22.790857],[120.74708,21.970571],[120.220083,22.814861],[120.106189,23.556263],[120.69468,24.538451],[121.495044,25.295459],[121.951244,24.997596],[121.777818,24.394274]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TWN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              118.125,\n              21.94304553\n            ],\n            [\n              118.125,\n              27.05912578\n            ],\n            [\n              123.75,\n              27.05912578\n            ],\n            [\n              123.75,\n              21.94304553\n            ],\n            [\n              118.125,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              121.777818,\n              24.394274\n            ],\n            [\n              121.175632,\n              22.790857\n            ],\n            [\n              120.74708,\n              21.970571\n            ],\n            [\n              120.220083,\n              22.814861\n            ],\n            [\n              120.106189,\n              23.556263\n            ],\n            [\n              120.69468,\n              24.538451\n            ],\n            [\n              121.495044,\n              25.295459\n            ],\n            [\n              121.951244,\n              24.997596\n            ],\n            [\n              121.777818,\n              24.394274\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/TZA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"TZA\",\"properties\":{\"name\":\"United Republic of Tanzania\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[33.903711,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.74054,-5.90895],[38.79977,-6.47566],[39.44,-6.84],[39.47,-7.1],[39.19469,-7.7039],[39.25203,-8.00781],[39.18652,-8.48551],[39.53574,-9.11237],[39.9496,-10.0984],[40.31659,-10.3171],[39.521,-10.89688],[38.427557,-11.285202],[37.82764,-11.26879],[37.47129,-11.56876],[36.775151,-11.594537],[36.514082,-11.720938],[35.312398,-11.439146],[34.559989,-11.52002],[34.28,-10.16],[33.940838,-9.693674],[33.73972,-9.41715],[32.759375,-9.230599],[32.191865,-8.930359],[31.556348,-8.762049],[31.157751,-8.594579],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.419993,-5.939999],[29.519987,-5.419979],[29.339998,-4.499983],[29.753512,-4.452389],[30.11632,-4.09012],[30.50554,-3.56858],[30.75224,-3.35931],[30.74301,-3.03431],[30.52766,-2.80762],[30.46967,-2.41383],[30.758309,-2.28725],[30.816135,-1.698914],[30.419105,-1.134659],[30.76986,-1.01455],[31.86617,-1.02736],[33.903711,-0.95]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/TZA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              28.125,\n              0\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              28.125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              39.375,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              39.375,\n              -11.17840187\n            ],\n            [\n              39.375,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              39.375,\n              0\n            ],\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              -11.17840187\n            ],\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              45,\n              -5.61598582\n            ],\n            [\n              45,\n              -11.17840187\n            ],\n            [\n              39.375,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.903711,\n              -0.95\n            ],\n            [\n              34.07262,\n              -1.05982\n            ],\n            [\n              37.69869,\n              -3.09699\n            ],\n            [\n              37.7669,\n              -3.67712\n            ],\n            [\n              39.20222,\n              -4.67677\n            ],\n            [\n              38.74054,\n              -5.90895\n            ],\n            [\n              38.79977,\n              -6.47566\n            ],\n            [\n              39.44,\n              -6.84\n            ],\n            [\n              39.47,\n              -7.1\n            ],\n            [\n              39.19469,\n              -7.7039\n            ],\n            [\n              39.25203,\n              -8.00781\n            ],\n            [\n              39.18652,\n              -8.48551\n            ],\n            [\n              39.53574,\n              -9.11237\n            ],\n            [\n              39.9496,\n              -10.0984\n            ],\n            [\n              40.31659,\n              -10.3171\n            ],\n            [\n              39.521,\n              -10.89688\n            ],\n            [\n              38.427557,\n              -11.285202\n            ],\n            [\n              37.82764,\n              -11.26879\n            ],\n            [\n              37.47129,\n              -11.56876\n            ],\n            [\n              36.775151,\n              -11.594537\n            ],\n            [\n              36.514082,\n              -11.720938\n            ],\n            [\n              35.312398,\n              -11.439146\n            ],\n            [\n              34.559989,\n              -11.52002\n            ],\n            [\n              34.28,\n              -10.16\n            ],\n            [\n              33.940838,\n              -9.693674\n            ],\n            [\n              33.73972,\n              -9.41715\n            ],\n            [\n              32.759375,\n              -9.230599\n            ],\n            [\n              32.191865,\n              -8.930359\n            ],\n            [\n              31.556348,\n              -8.762049\n            ],\n            [\n              31.157751,\n              -8.594579\n            ],\n            [\n              30.74,\n              -8.34\n            ],\n            [\n              30.2,\n              -7.08\n            ],\n            [\n              29.62,\n              -6.52\n            ],\n            [\n              29.419993,\n              -5.939999\n            ],\n            [\n              29.519987,\n              -5.419979\n            ],\n            [\n              29.339998,\n              -4.499983\n            ],\n            [\n              29.753512,\n              -4.452389\n            ],\n            [\n              30.11632,\n              -4.09012\n            ],\n            [\n              30.50554,\n              -3.56858\n            ],\n            [\n              30.75224,\n              -3.35931\n            ],\n            [\n              30.74301,\n              -3.03431\n            ],\n            [\n              30.52766,\n              -2.80762\n            ],\n            [\n              30.46967,\n              -2.41383\n            ],\n            [\n              30.758309,\n              -2.28725\n            ],\n            [\n              30.816135,\n              -1.698914\n            ],\n            [\n              30.419105,\n              -1.134659\n            ],\n            [\n              30.76986,\n              -1.01455\n            ],\n            [\n              31.86617,\n              -1.02736\n            ],\n            [\n              33.903711,\n              -0.95\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/UGA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"UGA\",\"properties\":{\"name\":\"Uganda\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[31.86617,-1.02736],[30.76986,-1.01455],[30.419105,-1.134659],[29.821519,-1.443322],[29.579466,-1.341313],[29.587838,-0.587406],[29.8195,-0.2053],[29.875779,0.59738],[30.086154,1.062313],[30.468508,1.583805],[30.85267,1.849396],[31.174149,2.204465],[30.77332,2.33989],[30.83385,3.50917],[31.24556,3.7819],[31.88145,3.55827],[32.68642,3.79232],[33.39,3.79],[34.005,4.249885],[34.47913,3.5556],[34.59607,3.05374],[35.03599,1.90584],[34.6721,1.17694],[34.18,0.515],[33.893569,0.109814],[33.903711,-0.95],[31.86617,-1.02736]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/UGA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              28.125,\n              0\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              28.125,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              0\n            ],\n            [\n              28.125,\n              5.61598582\n            ],\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              28.125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              33.75,\n              0\n            ],\n            [\n              39.375,\n              0\n            ],\n            [\n              39.375,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              0\n            ],\n            [\n              33.75,\n              5.61598582\n            ],\n            [\n              39.375,\n              5.61598582\n            ],\n            [\n              39.375,\n              0\n            ],\n            [\n              33.75,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              31.86617,\n              -1.02736\n            ],\n            [\n              30.76986,\n              -1.01455\n            ],\n            [\n              30.419105,\n              -1.134659\n            ],\n            [\n              29.821519,\n              -1.443322\n            ],\n            [\n              29.579466,\n              -1.341313\n            ],\n            [\n              29.587838,\n              -0.587406\n            ],\n            [\n              29.8195,\n              -0.2053\n            ],\n            [\n              29.875779,\n              0.59738\n            ],\n            [\n              30.086154,\n              1.062313\n            ],\n            [\n              30.468508,\n              1.583805\n            ],\n            [\n              30.85267,\n              1.849396\n            ],\n            [\n              31.174149,\n              2.204465\n            ],\n            [\n              30.77332,\n              2.33989\n            ],\n            [\n              30.83385,\n              3.50917\n            ],\n            [\n              31.24556,\n              3.7819\n            ],\n            [\n              31.88145,\n              3.55827\n            ],\n            [\n              32.68642,\n              3.79232\n            ],\n            [\n              33.39,\n              3.79\n            ],\n            [\n              34.005,\n              4.249885\n            ],\n            [\n              34.47913,\n              3.5556\n            ],\n            [\n              34.59607,\n              3.05374\n            ],\n            [\n              35.03599,\n              1.90584\n            ],\n            [\n              34.6721,\n              1.17694\n            ],\n            [\n              34.18,\n              0.515\n            ],\n            [\n              33.893569,\n              0.109814\n            ],\n            [\n              33.903711,\n              -0.95\n            ],\n            [\n              31.86617,\n              -1.02736\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/UKR.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"UKR\",\"properties\":{\"name\":\"Ukraine\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[31.785998,52.101678],[32.159412,52.061267],[32.412058,52.288695],[32.715761,52.238465],[33.7527,52.335075],[34.391731,51.768882],[34.141978,51.566413],[34.224816,51.255993],[35.022183,51.207572],[35.377924,50.773955],[35.356116,50.577197],[36.626168,50.225591],[37.39346,50.383953],[38.010631,49.915662],[38.594988,49.926462],[40.069058,49.601055],[40.080789,49.30743],[39.674664,48.783818],[39.895632,48.232405],[39.738278,47.898937],[38.770585,47.825608],[38.255112,47.5464],[38.223538,47.10219],[37.425137,47.022221],[36.759855,46.6987],[35.823685,46.645964],[34.962342,46.273197],[35.020788,45.651219],[35.510009,45.409993],[36.529998,45.46999],[36.334713,45.113216],[35.239999,44.939996],[33.882511,44.361479],[33.326421,44.564877],[33.546924,45.034771],[32.454174,45.327466],[32.630804,45.519186],[33.588162,45.851569],[33.298567,46.080598],[31.74414,46.333348],[31.675307,46.706245],[30.748749,46.5831],[30.377609,46.03241],[29.603289,45.293308],[29.149725,45.464925],[28.679779,45.304031],[28.233554,45.488283],[28.485269,45.596907],[28.659987,45.939987],[28.933717,46.25883],[28.862972,46.437889],[29.072107,46.517678],[29.170654,46.379262],[29.759972,46.349988],[30.024659,46.423937],[29.83821,46.525326],[29.908852,46.674361],[29.559674,46.928583],[29.415135,47.346645],[29.050868,47.510227],[29.122698,47.849095],[28.670891,48.118149],[28.259547,48.155562],[27.522537,48.467119],[26.857824,48.368211],[26.619337,48.220726],[26.19745,48.220881],[25.945941,47.987149],[25.207743,47.891056],[24.866317,47.737526],[24.402056,47.981878],[23.760958,47.985598],[23.142236,48.096341],[22.710531,47.882194],[22.64082,48.15024],[22.085608,48.422264],[22.280842,48.825392],[22.558138,49.085738],[22.776419,49.027395],[22.51845,49.476774],[23.426508,50.308506],[23.922757,50.424881],[24.029986,50.705407],[23.527071,51.578454],[24.005078,51.617444],[24.553106,51.888461],[25.327788,51.910656],[26.337959,51.832289],[27.454066,51.592303],[28.241615,51.572227],[28.617613,51.427714],[28.992835,51.602044],[29.254938,51.368234],[30.157364,51.416138],[30.555117,51.319503],[30.619454,51.822806],[30.927549,52.042353],[31.785998,52.101678]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/UKR_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              45.08903556\n            ],\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              16.875,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              48.92249926\n            ],\n            [\n              16.875,\n              52.48278022\n            ],\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              16.875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              45.08903556\n            ],\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              22.5,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              48.92249926\n            ],\n            [\n              22.5,\n              52.48278022\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              22.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              40.97989807\n            ],\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              28.125,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              45.08903556\n            ],\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              28.125,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              48.92249926\n            ],\n            [\n              28.125,\n              52.48278022\n            ],\n            [\n              33.75,\n              52.48278022\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              28.125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              40.97989807\n            ],\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              39.375,\n              40.97989807\n            ],\n            [\n              33.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              45.08903556\n            ],\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              39.375,\n              48.92249926\n            ],\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              33.75,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              33.75,\n              48.92249926\n            ],\n            [\n              33.75,\n              52.48278022\n            ],\n            [\n              39.375,\n              52.48278022\n            ],\n            [\n              39.375,\n              48.92249926\n            ],\n            [\n              33.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              45.08903556\n            ],\n            [\n              39.375,\n              48.92249926\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              45,\n              45.08903556\n            ],\n            [\n              39.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              48.92249926\n            ],\n            [\n              39.375,\n              52.48278022\n            ],\n            [\n              45,\n              52.48278022\n            ],\n            [\n              45,\n              48.92249926\n            ],\n            [\n              39.375,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              31.785998,\n              52.101678\n            ],\n            [\n              32.159412,\n              52.061267\n            ],\n            [\n              32.412058,\n              52.288695\n            ],\n            [\n              32.715761,\n              52.238465\n            ],\n            [\n              33.7527,\n              52.335075\n            ],\n            [\n              34.391731,\n              51.768882\n            ],\n            [\n              34.141978,\n              51.566413\n            ],\n            [\n              34.224816,\n              51.255993\n            ],\n            [\n              35.022183,\n              51.207572\n            ],\n            [\n              35.377924,\n              50.773955\n            ],\n            [\n              35.356116,\n              50.577197\n            ],\n            [\n              36.626168,\n              50.225591\n            ],\n            [\n              37.39346,\n              50.383953\n            ],\n            [\n              38.010631,\n              49.915662\n            ],\n            [\n              38.594988,\n              49.926462\n            ],\n            [\n              40.069058,\n              49.601055\n            ],\n            [\n              40.080789,\n              49.30743\n            ],\n            [\n              39.674664,\n              48.783818\n            ],\n            [\n              39.895632,\n              48.232405\n            ],\n            [\n              39.738278,\n              47.898937\n            ],\n            [\n              38.770585,\n              47.825608\n            ],\n            [\n              38.255112,\n              47.5464\n            ],\n            [\n              38.223538,\n              47.10219\n            ],\n            [\n              37.425137,\n              47.022221\n            ],\n            [\n              36.759855,\n              46.6987\n            ],\n            [\n              35.823685,\n              46.645964\n            ],\n            [\n              34.962342,\n              46.273197\n            ],\n            [\n              35.020788,\n              45.651219\n            ],\n            [\n              35.510009,\n              45.409993\n            ],\n            [\n              36.529998,\n              45.46999\n            ],\n            [\n              36.334713,\n              45.113216\n            ],\n            [\n              35.239999,\n              44.939996\n            ],\n            [\n              33.882511,\n              44.361479\n            ],\n            [\n              33.326421,\n              44.564877\n            ],\n            [\n              33.546924,\n              45.034771\n            ],\n            [\n              32.454174,\n              45.327466\n            ],\n            [\n              32.630804,\n              45.519186\n            ],\n            [\n              33.588162,\n              45.851569\n            ],\n            [\n              33.298567,\n              46.080598\n            ],\n            [\n              31.74414,\n              46.333348\n            ],\n            [\n              31.675307,\n              46.706245\n            ],\n            [\n              30.748749,\n              46.5831\n            ],\n            [\n              30.377609,\n              46.03241\n            ],\n            [\n              29.603289,\n              45.293308\n            ],\n            [\n              29.149725,\n              45.464925\n            ],\n            [\n              28.679779,\n              45.304031\n            ],\n            [\n              28.233554,\n              45.488283\n            ],\n            [\n              28.485269,\n              45.596907\n            ],\n            [\n              28.659987,\n              45.939987\n            ],\n            [\n              28.933717,\n              46.25883\n            ],\n            [\n              28.862972,\n              46.437889\n            ],\n            [\n              29.072107,\n              46.517678\n            ],\n            [\n              29.170654,\n              46.379262\n            ],\n            [\n              29.759972,\n              46.349988\n            ],\n            [\n              30.024659,\n              46.423937\n            ],\n            [\n              29.83821,\n              46.525326\n            ],\n            [\n              29.908852,\n              46.674361\n            ],\n            [\n              29.559674,\n              46.928583\n            ],\n            [\n              29.415135,\n              47.346645\n            ],\n            [\n              29.050868,\n              47.510227\n            ],\n            [\n              29.122698,\n              47.849095\n            ],\n            [\n              28.670891,\n              48.118149\n            ],\n            [\n              28.259547,\n              48.155562\n            ],\n            [\n              27.522537,\n              48.467119\n            ],\n            [\n              26.857824,\n              48.368211\n            ],\n            [\n              26.619337,\n              48.220726\n            ],\n            [\n              26.19745,\n              48.220881\n            ],\n            [\n              25.945941,\n              47.987149\n            ],\n            [\n              25.207743,\n              47.891056\n            ],\n            [\n              24.866317,\n              47.737526\n            ],\n            [\n              24.402056,\n              47.981878\n            ],\n            [\n              23.760958,\n              47.985598\n            ],\n            [\n              23.142236,\n              48.096341\n            ],\n            [\n              22.710531,\n              47.882194\n            ],\n            [\n              22.64082,\n              48.15024\n            ],\n            [\n              22.085608,\n              48.422264\n            ],\n            [\n              22.280842,\n              48.825392\n            ],\n            [\n              22.558138,\n              49.085738\n            ],\n            [\n              22.776419,\n              49.027395\n            ],\n            [\n              22.51845,\n              49.476774\n            ],\n            [\n              23.426508,\n              50.308506\n            ],\n            [\n              23.922757,\n              50.424881\n            ],\n            [\n              24.029986,\n              50.705407\n            ],\n            [\n              23.527071,\n              51.578454\n            ],\n            [\n              24.005078,\n              51.617444\n            ],\n            [\n              24.553106,\n              51.888461\n            ],\n            [\n              25.327788,\n              51.910656\n            ],\n            [\n              26.337959,\n              51.832289\n            ],\n            [\n              27.454066,\n              51.592303\n            ],\n            [\n              28.241615,\n              51.572227\n            ],\n            [\n              28.617613,\n              51.427714\n            ],\n            [\n              28.992835,\n              51.602044\n            ],\n            [\n              29.254938,\n              51.368234\n            ],\n            [\n              30.157364,\n              51.416138\n            ],\n            [\n              30.555117,\n              51.319503\n            ],\n            [\n              30.619454,\n              51.822806\n            ],\n            [\n              30.927549,\n              52.042353\n            ],\n            [\n              31.785998,\n              52.101678\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/URY.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"URY\",\"properties\":{\"name\":\"Uruguay\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-57.625133,-30.216295],[-56.976026,-30.109686],[-55.973245,-30.883076],[-55.60151,-30.853879],[-54.572452,-31.494511],[-53.787952,-32.047243],[-53.209589,-32.727666],[-53.650544,-33.202004],[-53.373662,-33.768378],[-53.806426,-34.396815],[-54.935866,-34.952647],[-55.67409,-34.752659],[-56.215297,-34.859836],[-57.139685,-34.430456],[-57.817861,-34.462547],[-58.427074,-33.909454],[-58.349611,-33.263189],[-58.132648,-33.040567],[-58.14244,-32.044504],[-57.874937,-31.016556],[-57.625133,-30.216295]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/URY_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -50.625,\n              -27.05912578\n            ],\n            [\n              -50.625,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -56.25,\n              -36.59788913\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -50.625,\n              -31.95216224\n            ],\n            [\n              -50.625,\n              -36.59788913\n            ],\n            [\n              -56.25,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -31.95216224\n            ],\n            [\n              -61.875,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -27.05912578\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -61.875,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -61.875,\n              -36.59788913\n            ],\n            [\n              -61.875,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -31.95216224\n            ],\n            [\n              -56.25,\n              -36.59788913\n            ],\n            [\n              -61.875,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -57.625133,\n              -30.216295\n            ],\n            [\n              -56.976026,\n              -30.109686\n            ],\n            [\n              -55.973245,\n              -30.883076\n            ],\n            [\n              -55.60151,\n              -30.853879\n            ],\n            [\n              -54.572452,\n              -31.494511\n            ],\n            [\n              -53.787952,\n              -32.047243\n            ],\n            [\n              -53.209589,\n              -32.727666\n            ],\n            [\n              -53.650544,\n              -33.202004\n            ],\n            [\n              -53.373662,\n              -33.768378\n            ],\n            [\n              -53.806426,\n              -34.396815\n            ],\n            [\n              -54.935866,\n              -34.952647\n            ],\n            [\n              -55.67409,\n              -34.752659\n            ],\n            [\n              -56.215297,\n              -34.859836\n            ],\n            [\n              -57.139685,\n              -34.430456\n            ],\n            [\n              -57.817861,\n              -34.462547\n            ],\n            [\n              -58.427074,\n              -33.909454\n            ],\n            [\n              -58.349611,\n              -33.263189\n            ],\n            [\n              -58.132648,\n              -33.040567\n            ],\n            [\n              -58.14244,\n              -32.044504\n            ],\n            [\n              -57.874937,\n              -31.016556\n            ],\n            [\n              -57.625133,\n              -30.216295\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/USA.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"USA\",\"properties\":{\"name\":\"United States of America\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-94.64,48.84],[-94.32914,48.67074],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.83,48.27],[-89.6,48.01],[-89.272917,48.019808],[-88.378114,48.302918],[-87.439793,47.94],[-86.461991,47.553338],[-85.652363,47.220219],[-84.87608,46.900083],[-84.779238,46.637102],[-84.543749,46.538684],[-84.6049,46.4396],[-84.3367,46.40877],[-84.14212,46.512226],[-84.091851,46.275419],[-83.890765,46.116927],[-83.616131,46.116927],[-83.469551,45.994686],[-83.592851,45.816894],[-82.550925,45.347517],[-82.337763,44.44],[-82.137642,43.571088],[-82.43,42.98],[-82.9,42.43],[-83.12,42.08],[-83.142,41.975681],[-83.02981,41.832796],[-82.690089,41.675105],[-82.439278,41.675105],[-81.277747,42.209026],[-80.247448,42.3662],[-78.939362,42.863611],[-78.92,42.965],[-79.01,43.27],[-79.171674,43.466339],[-78.72028,43.625089],[-77.737885,43.629056],[-76.820034,43.628784],[-76.5,44.018459],[-76.375,44.09631],[-75.31821,44.81645],[-74.867,45.00048],[-73.34783,45.00738],[-71.50506,45.0082],[-71.405,45.255],[-71.08482,45.30524],[-70.66,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-68.03252,44.3252],[-69.06,43.98],[-70.11617,43.68405],[-70.645476,43.090238],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283],[-69.96503,41.63717],[-70.64,41.475],[-71.12039,41.49445],[-71.86,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.931102],[-72.24126,41.11948],[-71.945,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.24845],[-75.52805,39.4985],[-75.32,38.96],[-75.071835,38.782032],[-75.05673,38.40412],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72205,37.93705],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.717615],[-76.32933,38.08326],[-76.989998,38.239992],[-76.30162,37.917945],[-76.25874,36.9664],[-75.9718,36.89726],[-75.86804,36.55125],[-75.72749,35.55074],[-76.36318,34.80854],[-77.397635,34.51201],[-78.05496,33.92547],[-78.55435,33.86133],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999],[-81.31371,30.03552],[-80.98,29.18],[-80.535585,28.47213],[-80.53,28.04],[-80.056539,26.88],[-80.088015,26.205765],[-80.13156,25.816775],[-80.38103,25.20616],[-80.68,25.08],[-81.17213,25.20126],[-81.33,25.64],[-81.71,25.87],[-82.24,26.73],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.55],[-82.93,29.1],[-83.70959,29.93656],[-84.1,30.09],[-85.10882,29.63615],[-85.28784,29.68612],[-85.7731,30.15261],[-86.4,30.4],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18049,30.31598],[-89.593831,30.159994],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.30714],[-90.15463,29.11743],[-90.880225,29.148535],[-91.626785,29.677],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.48],[-95.60026,28.73863],[-96.59404,28.30748],[-97.14,27.83],[-97.37,27.38],[-97.38,26.69],[-97.33,26.21],[-97.14,25.87],[-97.53,25.84],[-98.24,26.06],[-99.02,26.37],[-99.3,26.84],[-99.52,27.54],[-100.11,28.11],[-100.45584,28.69612],[-100.9576,29.38071],[-101.6624,29.7793],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45697,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383],[-106.1429,31.39995],[-106.50759,31.75452],[-108.24,31.754854],[-108.24194,31.34222],[-109.035,31.34194],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72139,32.72083],[-115.99135,32.61239],[-117.12776,32.53534],[-117.295938,33.046225],[-117.944,33.621236],[-118.410602,33.740909],[-118.519895,34.027782],[-119.081,34.078],[-119.438841,34.348477],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686],[-121.71457,36.16153],[-122.54747,37.55176],[-122.51201,37.78339],[-122.95319,38.11371],[-123.7272,38.95166],[-123.86517,39.76699],[-124.39807,40.3132],[-124.17886,41.14202],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017],[-124.68721,48.184433],[-124.566101,48.379715],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49],[-120,49],[-117.03121,49],[-116.04818,49],[-113,49],[-110.05,49],[-107.05,49],[-104.04826,48.99986],[-100.65,49],[-97.22872,49.0007],[-95.15907,49],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.006314,57.115842],[-154.00509,56.734677],[-154.516403,56.992749],[-154.670993,57.461196],[-153.76278,57.816575],[-153.228729,57.968968],[-152.564791,57.901427],[-152.141147,57.591059],[-153.006314,57.115842]]],[[[-165.579164,59.909987],[-166.19277,59.754441],[-166.848337,59.941406],[-167.455277,60.213069],[-166.467792,60.38417],[-165.67443,60.293607],[-165.579164,59.909987]]],[[[-171.731657,63.782515],[-171.114434,63.592191],[-170.491112,63.694975],[-169.682505,63.431116],[-168.689439,63.297506],[-168.771941,63.188598],[-169.52944,62.976931],[-170.290556,63.194438],[-170.671386,63.375822],[-171.553063,63.317789],[-171.791111,63.405846],[-171.731657,63.782515]]],[[[-155.06779,71.147776],[-154.344165,70.696409],[-153.900006,70.889989],[-152.210006,70.829992],[-152.270002,70.600006],[-150.739992,70.430017],[-149.720003,70.53001],[-147.613362,70.214035],[-145.68999,70.12001],[-144.920011,69.989992],[-143.589446,70.152514],[-142.07251,69.851938],[-140.985988,69.711998],[-140.992499,66.000029],[-140.99777,60.306397],[-140.012998,60.276838],[-139.039,60.000007],[-138.34089,59.56211],[-137.4525,58.905],[-136.47972,59.46389],[-135.47583,59.78778],[-134.945,59.27056],[-134.27111,58.86111],[-133.355549,58.410285],[-132.73042,57.69289],[-131.70781,56.55212],[-130.00778,55.91583],[-129.979994,55.284998],[-130.53611,54.802753],[-131.085818,55.178906],[-131.967211,55.497776],[-132.250011,56.369996],[-133.539181,57.178887],[-134.078063,58.123068],[-135.038211,58.187715],[-136.628062,58.212209],[-137.800006,58.499995],[-139.867787,59.537762],[-140.825274,59.727517],[-142.574444,60.084447],[-143.958881,59.99918],[-145.925557,60.45861],[-147.114374,60.884656],[-148.224306,60.672989],[-148.018066,59.978329],[-148.570823,59.914173],[-149.727858,59.705658],[-150.608243,59.368211],[-151.716393,59.155821],[-151.859433,59.744984],[-151.409719,60.725803],[-150.346941,61.033588],[-150.621111,61.284425],[-151.895839,60.727198],[-152.57833,60.061657],[-154.019172,59.350279],[-153.287511,58.864728],[-154.232492,58.146374],[-155.307491,57.727795],[-156.308335,57.422774],[-156.556097,56.979985],[-158.117217,56.463608],[-158.433321,55.994154],[-159.603327,55.566686],[-160.28972,55.643581],[-161.223048,55.364735],[-162.237766,55.024187],[-163.069447,54.689737],[-164.785569,54.404173],[-164.942226,54.572225],[-163.84834,55.039431],[-162.870001,55.348043],[-161.804175,55.894986],[-160.563605,56.008055],[-160.07056,56.418055],[-158.684443,57.016675],[-158.461097,57.216921],[-157.72277,57.570001],[-157.550274,58.328326],[-157.041675,58.918885],[-158.194731,58.615802],[-158.517218,58.787781],[-159.058606,58.424186],[-159.711667,58.93139],[-159.981289,58.572549],[-160.355271,59.071123],[-161.355003,58.670838],[-161.968894,58.671665],[-162.054987,59.266925],[-161.874171,59.633621],[-162.518059,59.989724],[-163.818341,59.798056],[-164.662218,60.267484],[-165.346388,60.507496],[-165.350832,61.073895],[-166.121379,61.500019],[-165.734452,62.074997],[-164.919179,62.633076],[-164.562508,63.146378],[-163.753332,63.219449],[-163.067224,63.059459],[-162.260555,63.541936],[-161.53445,63.455817],[-160.772507,63.766108],[-160.958335,64.222799],[-161.518068,64.402788],[-160.777778,64.788604],[-161.391926,64.777235],[-162.45305,64.559445],[-162.757786,64.338605],[-163.546394,64.55916],[-164.96083,64.446945],[-166.425288,64.686672],[-166.845004,65.088896],[-168.11056,65.669997],[-166.705271,66.088318],[-164.47471,66.57666],[-163.652512,66.57666],[-163.788602,66.077207],[-161.677774,66.11612],[-162.489715,66.735565],[-163.719717,67.116395],[-164.430991,67.616338],[-165.390287,68.042772],[-166.764441,68.358877],[-166.204707,68.883031],[-164.430811,68.915535],[-163.168614,69.371115],[-162.930566,69.858062],[-161.908897,70.33333],[-160.934797,70.44769],[-159.039176,70.891642],[-158.119723,70.824721],[-156.580825,71.357764],[-155.06779,71.147776]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/USA_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              21.94304553\n            ],\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -95.625,\n              21.94304553\n            ],\n            [\n              -101.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -95.625,\n              31.95216224\n            ],\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -101.25,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -101.25,\n              40.97989807\n            ],\n            [\n              -90,\n              40.97989807\n            ],\n            [\n              -90,\n              31.95216224\n            ],\n            [\n              -101.25,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              40.97989807\n            ],\n            [\n              -101.25,\n              48.92249926\n            ],\n            [\n              -90,\n              48.92249926\n            ],\n            [\n              -90,\n              40.97989807\n            ],\n            [\n              -101.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -101.25,\n              48.92249926\n            ],\n            [\n              -101.25,\n              52.48278022\n            ],\n            [\n              -95.625,\n              52.48278022\n            ],\n            [\n              -95.625,\n              48.92249926\n            ],\n            [\n              -101.25,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              27.05912578\n            ],\n            [\n              -106.875,\n              31.95216224\n            ],\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -101.25,\n              27.05912578\n            ],\n            [\n              -106.875,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -106.875,\n              48.92249926\n            ],\n            [\n              -106.875,\n              52.48278022\n            ],\n            [\n              -101.25,\n              52.48278022\n            ],\n            [\n              -101.25,\n              48.92249926\n            ],\n            [\n              -106.875,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              27.05912578\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -106.875,\n              31.95216224\n            ],\n            [\n              -106.875,\n              27.05912578\n            ],\n            [\n              -112.5,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -112.5,\n              40.97989807\n            ],\n            [\n              -101.25,\n              40.97989807\n            ],\n            [\n              -101.25,\n              31.95216224\n            ],\n            [\n              -112.5,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              40.97989807\n            ],\n            [\n              -112.5,\n              48.92249926\n            ],\n            [\n              -101.25,\n              48.92249926\n            ],\n            [\n              -101.25,\n              40.97989807\n            ],\n            [\n              -112.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -112.5,\n              48.92249926\n            ],\n            [\n              -112.5,\n              52.48278022\n            ],\n            [\n              -106.875,\n              52.48278022\n            ],\n            [\n              -106.875,\n              48.92249926\n            ],\n            [\n              -112.5,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              27.05912578\n            ],\n            [\n              -118.125,\n              31.95216224\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -112.5,\n              27.05912578\n            ],\n            [\n              -118.125,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -118.125,\n              48.92249926\n            ],\n            [\n              -118.125,\n              52.48278022\n            ],\n            [\n              -112.5,\n              52.48278022\n            ],\n            [\n              -112.5,\n              48.92249926\n            ],\n            [\n              -118.125,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              31.95216224\n            ],\n            [\n              -123.75,\n              40.97989807\n            ],\n            [\n              -112.5,\n              40.97989807\n            ],\n            [\n              -112.5,\n              31.95216224\n            ],\n            [\n              -123.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              40.97989807\n            ],\n            [\n              -123.75,\n              48.92249926\n            ],\n            [\n              -112.5,\n              48.92249926\n            ],\n            [\n              -112.5,\n              40.97989807\n            ],\n            [\n              -123.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -123.75,\n              48.92249926\n            ],\n            [\n              -123.75,\n              52.48278022\n            ],\n            [\n              -118.125,\n              52.48278022\n            ],\n            [\n              -118.125,\n              48.92249926\n            ],\n            [\n              -123.75,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -129.375,\n              36.59788913\n            ],\n            [\n              -129.375,\n              40.97989807\n            ],\n            [\n              -123.75,\n              40.97989807\n            ],\n            [\n              -123.75,\n              36.59788913\n            ],\n            [\n              -129.375,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -129.375,\n              40.97989807\n            ],\n            [\n              -129.375,\n              45.08903556\n            ],\n            [\n              -123.75,\n              45.08903556\n            ],\n            [\n              -123.75,\n              40.97989807\n            ],\n            [\n              -129.375,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -129.375,\n              45.08903556\n            ],\n            [\n              -129.375,\n              48.92249926\n            ],\n            [\n              -123.75,\n              48.92249926\n            ],\n            [\n              -123.75,\n              45.08903556\n            ],\n            [\n              -129.375,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -135,\n              52.48278022\n            ],\n            [\n              -135,\n              55.77657302\n            ],\n            [\n              -129.375,\n              55.77657302\n            ],\n            [\n              -129.375,\n              52.48278022\n            ],\n            [\n              -135,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -135,\n              55.77657302\n            ],\n            [\n              -135,\n              58.81374172\n            ],\n            [\n              -129.375,\n              58.81374172\n            ],\n            [\n              -129.375,\n              55.77657302\n            ],\n            [\n              -135,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -135,\n              58.81374172\n            ],\n            [\n              -135,\n              61.60639637\n            ],\n            [\n              -129.375,\n              61.60639637\n            ],\n            [\n              -129.375,\n              58.81374172\n            ],\n            [\n              -135,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -140.625,\n              55.77657302\n            ],\n            [\n              -140.625,\n              58.81374172\n            ],\n            [\n              -135,\n              58.81374172\n            ],\n            [\n              -135,\n              55.77657302\n            ],\n            [\n              -140.625,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -140.625,\n              58.81374172\n            ],\n            [\n              -140.625,\n              61.60639637\n            ],\n            [\n              -135,\n              61.60639637\n            ],\n            [\n              -135,\n              58.81374172\n            ],\n            [\n              -140.625,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -146.25,\n              58.81374172\n            ],\n            [\n              -146.25,\n              61.60639637\n            ],\n            [\n              -140.625,\n              61.60639637\n            ],\n            [\n              -140.625,\n              58.81374172\n            ],\n            [\n              -146.25,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -146.25,\n              61.60639637\n            ],\n            [\n              -146.25,\n              64.1681069\n            ],\n            [\n              -140.625,\n              64.1681069\n            ],\n            [\n              -140.625,\n              61.60639637\n            ],\n            [\n              -146.25,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -146.25,\n              64.1681069\n            ],\n            [\n              -146.25,\n              66.51326044\n            ],\n            [\n              -140.625,\n              66.51326044\n            ],\n            [\n              -140.625,\n              64.1681069\n            ],\n            [\n              -146.25,\n              64.1681069\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -146.25,\n              66.51326044\n            ],\n            [\n              -146.25,\n              68.65655498\n            ],\n            [\n              -140.625,\n              68.65655498\n            ],\n            [\n              -140.625,\n              66.51326044\n            ],\n            [\n              -146.25,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -146.25,\n              68.65655498\n            ],\n            [\n              -146.25,\n              70.61261424\n            ],\n            [\n              -140.625,\n              70.61261424\n            ],\n            [\n              -140.625,\n              68.65655498\n            ],\n            [\n              -146.25,\n              68.65655498\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -151.875,\n              58.81374172\n            ],\n            [\n              -151.875,\n              61.60639637\n            ],\n            [\n              -146.25,\n              61.60639637\n            ],\n            [\n              -146.25,\n              58.81374172\n            ],\n            [\n              -151.875,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -157.5,\n              16.63619188\n            ],\n            [\n              -157.5,\n              21.94304553\n            ],\n            [\n              -151.875,\n              21.94304553\n            ],\n            [\n              -151.875,\n              16.63619188\n            ],\n            [\n              -157.5,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -157.5,\n              55.77657302\n            ],\n            [\n              -157.5,\n              58.81374172\n            ],\n            [\n              -151.875,\n              58.81374172\n            ],\n            [\n              -151.875,\n              55.77657302\n            ],\n            [\n              -157.5,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -157.5,\n              58.81374172\n            ],\n            [\n              -157.5,\n              61.60639637\n            ],\n            [\n              -151.875,\n              61.60639637\n            ],\n            [\n              -151.875,\n              58.81374172\n            ],\n            [\n              -157.5,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -157.5,\n              61.60639637\n            ],\n            [\n              -157.5,\n              66.51326044\n            ],\n            [\n              -146.25,\n              66.51326044\n            ],\n            [\n              -146.25,\n              61.60639637\n            ],\n            [\n              -157.5,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -157.5,\n              66.51326044\n            ],\n            [\n              -157.5,\n              70.61261424\n            ],\n            [\n              -146.25,\n              70.61261424\n            ],\n            [\n              -146.25,\n              66.51326044\n            ],\n            [\n              -157.5,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -157.5,\n              70.61261424\n            ],\n            [\n              -157.5,\n              72.39570571\n            ],\n            [\n              -151.875,\n              72.39570571\n            ],\n            [\n              -151.875,\n              70.61261424\n            ],\n            [\n              -157.5,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -163.125,\n              16.63619188\n            ],\n            [\n              -163.125,\n              21.94304553\n            ],\n            [\n              -157.5,\n              21.94304553\n            ],\n            [\n              -157.5,\n              16.63619188\n            ],\n            [\n              -163.125,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -163.125,\n              21.94304553\n            ],\n            [\n              -163.125,\n              27.05912578\n            ],\n            [\n              -157.5,\n              27.05912578\n            ],\n            [\n              -157.5,\n              21.94304553\n            ],\n            [\n              -163.125,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -163.125,\n              52.48278022\n            ],\n            [\n              -163.125,\n              55.77657302\n            ],\n            [\n              -157.5,\n              55.77657302\n            ],\n            [\n              -157.5,\n              52.48278022\n            ],\n            [\n              -163.125,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -163.125,\n              55.77657302\n            ],\n            [\n              -163.125,\n              58.81374172\n            ],\n            [\n              -157.5,\n              58.81374172\n            ],\n            [\n              -157.5,\n              55.77657302\n            ],\n            [\n              -163.125,\n              55.77657302\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -163.125,\n              58.81374172\n            ],\n            [\n              -163.125,\n              61.60639637\n            ],\n            [\n              -157.5,\n              61.60639637\n            ],\n            [\n              -157.5,\n              58.81374172\n            ],\n            [\n              -163.125,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -163.125,\n              70.61261424\n            ],\n            [\n              -163.125,\n              72.39570571\n            ],\n            [\n              -157.5,\n              72.39570571\n            ],\n            [\n              -157.5,\n              70.61261424\n            ],\n            [\n              -163.125,\n              70.61261424\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -168.75,\n              52.48278022\n            ],\n            [\n              -168.75,\n              55.77657302\n            ],\n            [\n              -163.125,\n              55.77657302\n            ],\n            [\n              -163.125,\n              52.48278022\n            ],\n            [\n              -168.75,\n              52.48278022\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -168.75,\n              58.81374172\n            ],\n            [\n              -168.75,\n              61.60639637\n            ],\n            [\n              -163.125,\n              61.60639637\n            ],\n            [\n              -163.125,\n              58.81374172\n            ],\n            [\n              -168.75,\n              58.81374172\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -168.75,\n              61.60639637\n            ],\n            [\n              -168.75,\n              66.51326044\n            ],\n            [\n              -157.5,\n              66.51326044\n            ],\n            [\n              -157.5,\n              61.60639637\n            ],\n            [\n              -168.75,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -168.75,\n              66.51326044\n            ],\n            [\n              -168.75,\n              70.61261424\n            ],\n            [\n              -157.5,\n              70.61261424\n            ],\n            [\n              -157.5,\n              66.51326044\n            ],\n            [\n              -168.75,\n              66.51326044\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -174.375,\n              61.60639637\n            ],\n            [\n              -174.375,\n              64.1681069\n            ],\n            [\n              -168.75,\n              64.1681069\n            ],\n            [\n              -168.75,\n              61.60639637\n            ],\n            [\n              -174.375,\n              61.60639637\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              40.97989807\n            ],\n            [\n              -67.5,\n              45.08903556\n            ],\n            [\n              -61.875,\n              45.08903556\n            ],\n            [\n              -61.875,\n              40.97989807\n            ],\n            [\n              -67.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              45.08903556\n            ],\n            [\n              -67.5,\n              48.92249926\n            ],\n            [\n              -61.875,\n              48.92249926\n            ],\n            [\n              -61.875,\n              45.08903556\n            ],\n            [\n              -67.5,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              36.59788913\n            ],\n            [\n              -73.125,\n              40.97989807\n            ],\n            [\n              -67.5,\n              40.97989807\n            ],\n            [\n              -67.5,\n              36.59788913\n            ],\n            [\n              -73.125,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              40.97989807\n            ],\n            [\n              -73.125,\n              45.08903556\n            ],\n            [\n              -67.5,\n              45.08903556\n            ],\n            [\n              -67.5,\n              40.97989807\n            ],\n            [\n              -73.125,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              45.08903556\n            ],\n            [\n              -73.125,\n              48.92249926\n            ],\n            [\n              -67.5,\n              48.92249926\n            ],\n            [\n              -67.5,\n              45.08903556\n            ],\n            [\n              -73.125,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              31.95216224\n            ],\n            [\n              -78.75,\n              36.59788913\n            ],\n            [\n              -73.125,\n              36.59788913\n            ],\n            [\n              -73.125,\n              31.95216224\n            ],\n            [\n              -78.75,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              36.59788913\n            ],\n            [\n              -78.75,\n              40.97989807\n            ],\n            [\n              -73.125,\n              40.97989807\n            ],\n            [\n              -73.125,\n              36.59788913\n            ],\n            [\n              -78.75,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              40.97989807\n            ],\n            [\n              -78.75,\n              45.08903556\n            ],\n            [\n              -73.125,\n              45.08903556\n            ],\n            [\n              -73.125,\n              40.97989807\n            ],\n            [\n              -78.75,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              21.94304553\n            ],\n            [\n              -84.375,\n              27.05912578\n            ],\n            [\n              -78.75,\n              27.05912578\n            ],\n            [\n              -78.75,\n              21.94304553\n            ],\n            [\n              -84.375,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -84.375,\n              27.05912578\n            ],\n            [\n              -84.375,\n              31.95216224\n            ],\n            [\n              -78.75,\n              31.95216224\n            ],\n            [\n              -78.75,\n              27.05912578\n            ],\n            [\n              -84.375,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              27.05912578\n            ],\n            [\n              -90,\n              31.95216224\n            ],\n            [\n              -84.375,\n              31.95216224\n            ],\n            [\n              -84.375,\n              27.05912578\n            ],\n            [\n              -90,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              31.95216224\n            ],\n            [\n              -90,\n              40.97989807\n            ],\n            [\n              -78.75,\n              40.97989807\n            ],\n            [\n              -78.75,\n              31.95216224\n            ],\n            [\n              -90,\n              31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -90,\n              40.97989807\n            ],\n            [\n              -90,\n              48.92249926\n            ],\n            [\n              -78.75,\n              48.92249926\n            ],\n            [\n              -78.75,\n              40.97989807\n            ],\n            [\n              -90,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              27.05912578\n            ],\n            [\n              -95.625,\n              31.95216224\n            ],\n            [\n              -90,\n              31.95216224\n            ],\n            [\n              -90,\n              27.05912578\n            ],\n            [\n              -95.625,\n              27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -95.625,\n              48.92249926\n            ],\n            [\n              -95.625,\n              52.48278022\n            ],\n            [\n              -90,\n              52.48278022\n            ],\n            [\n              -90,\n              48.92249926\n            ],\n            [\n              -95.625,\n              48.92249926\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                -155.54211,\n                19.08348\n              ],\n              [\n                -155.68817,\n                18.91619\n              ],\n              [\n                -155.93665,\n                19.05939\n              ],\n              [\n                -155.90806,\n                19.33888\n              ],\n              [\n                -156.07347,\n                19.70294\n              ],\n              [\n                -156.02368,\n                19.81422\n              ],\n              [\n                -155.85008,\n                19.97729\n              ],\n              [\n                -155.91907,\n                20.17395\n              ],\n              [\n                -155.86108,\n                20.26721\n              ],\n              [\n                -155.78505,\n                20.2487\n              ],\n              [\n                -155.40214,\n                20.07975\n              ],\n              [\n                -155.22452,\n                19.99302\n              ],\n              [\n                -155.06226,\n                19.8591\n              ],\n              [\n                -154.80741,\n                19.50871\n              ],\n              [\n                -154.83147,\n                19.45328\n              ],\n              [\n                -155.22217,\n                19.23972\n              ],\n              [\n                -155.54211,\n                19.08348\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -156.07926,\n                20.64397\n              ],\n              [\n                -156.41445,\n                20.57241\n              ],\n              [\n                -156.58673,\n                20.783\n              ],\n              [\n                -156.70167,\n                20.8643\n              ],\n              [\n                -156.71055,\n                20.92676\n              ],\n              [\n                -156.61258,\n                21.01249\n              ],\n              [\n                -156.25711,\n                20.91745\n              ],\n              [\n                -155.99566,\n                20.76404\n              ],\n              [\n                -156.07926,\n                20.64397\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -156.75824,\n                21.17684\n              ],\n              [\n                -156.78933,\n                21.06873\n              ],\n              [\n                -157.32521,\n                21.09777\n              ],\n              [\n                -157.25027,\n                21.21958\n              ],\n              [\n                -156.75824,\n                21.17684\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -157.65283,\n                21.32217\n              ],\n              [\n                -157.70703,\n                21.26442\n              ],\n              [\n                -157.7786,\n                21.27729\n              ],\n              [\n                -158.12667,\n                21.31244\n              ],\n              [\n                -158.2538,\n                21.53919\n              ],\n              [\n                -158.29265,\n                21.57912\n              ],\n              [\n                -158.0252,\n                21.71696\n              ],\n              [\n                -157.94161,\n                21.65272\n              ],\n              [\n                -157.65283,\n                21.32217\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -159.34512,\n                21.982\n              ],\n              [\n                -159.46372,\n                21.88299\n              ],\n              [\n                -159.80051,\n                22.06533\n              ],\n              [\n                -159.74877,\n                22.1382\n              ],\n              [\n                -159.5962,\n                22.23618\n              ],\n              [\n                -159.36569,\n                22.21494\n              ],\n              [\n                -159.34512,\n                21.982\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -94.81758,\n                49.38905\n              ],\n              [\n                -94.64,\n                48.84\n              ],\n              [\n                -94.32914,\n                48.67074\n              ],\n              [\n                -93.63087,\n                48.60926\n              ],\n              [\n                -92.61,\n                48.45\n              ],\n              [\n                -91.64,\n                48.14\n              ],\n              [\n                -90.83,\n                48.27\n              ],\n              [\n                -89.6,\n                48.01\n              ],\n              [\n                -89.272917,\n                48.019808\n              ],\n              [\n                -88.378114,\n                48.302918\n              ],\n              [\n                -87.439793,\n                47.94\n              ],\n              [\n                -86.461991,\n                47.553338\n              ],\n              [\n                -85.652363,\n                47.220219\n              ],\n              [\n                -84.87608,\n                46.900083\n              ],\n              [\n                -84.779238,\n                46.637102\n              ],\n              [\n                -84.543749,\n                46.538684\n              ],\n              [\n                -84.6049,\n                46.4396\n              ],\n              [\n                -84.3367,\n                46.40877\n              ],\n              [\n                -84.14212,\n                46.512226\n              ],\n              [\n                -84.091851,\n                46.275419\n              ],\n              [\n                -83.890765,\n                46.116927\n              ],\n              [\n                -83.616131,\n                46.116927\n              ],\n              [\n                -83.469551,\n                45.994686\n              ],\n              [\n                -83.592851,\n                45.816894\n              ],\n              [\n                -82.550925,\n                45.347517\n              ],\n              [\n                -82.337763,\n                44.44\n              ],\n              [\n                -82.137642,\n                43.571088\n              ],\n              [\n                -82.43,\n                42.98\n              ],\n              [\n                -82.9,\n                42.43\n              ],\n              [\n                -83.12,\n                42.08\n              ],\n              [\n                -83.142,\n                41.975681\n              ],\n              [\n                -83.02981,\n                41.832796\n              ],\n              [\n                -82.690089,\n                41.675105\n              ],\n              [\n                -82.439278,\n                41.675105\n              ],\n              [\n                -81.277747,\n                42.209026\n              ],\n              [\n                -80.247448,\n                42.3662\n              ],\n              [\n                -78.939362,\n                42.863611\n              ],\n              [\n                -78.92,\n                42.965\n              ],\n              [\n                -79.01,\n                43.27\n              ],\n              [\n                -79.171674,\n                43.466339\n              ],\n              [\n                -78.72028,\n                43.625089\n              ],\n              [\n                -77.737885,\n                43.629056\n              ],\n              [\n                -76.820034,\n                43.628784\n              ],\n              [\n                -76.5,\n                44.018459\n              ],\n              [\n                -76.375,\n                44.09631\n              ],\n              [\n                -75.31821,\n                44.81645\n              ],\n              [\n                -74.867,\n                45.00048\n              ],\n              [\n                -73.34783,\n                45.00738\n              ],\n              [\n                -71.50506,\n                45.0082\n              ],\n              [\n                -71.405,\n                45.255\n              ],\n              [\n                -71.08482,\n                45.30524\n              ],\n              [\n                -70.66,\n                45.46\n              ],\n              [\n                -70.305,\n                45.915\n              ],\n              [\n                -69.99997,\n                46.69307\n              ],\n              [\n                -69.237216,\n                47.447781\n              ],\n              [\n                -68.905,\n                47.185\n              ],\n              [\n                -68.23444,\n                47.35486\n              ],\n              [\n                -67.79046,\n                47.06636\n              ],\n              [\n                -67.79134,\n                45.70281\n              ],\n              [\n                -67.13741,\n                45.13753\n              ],\n              [\n                -66.96466,\n                44.8097\n              ],\n              [\n                -68.03252,\n                44.3252\n              ],\n              [\n                -69.06,\n                43.98\n              ],\n              [\n                -70.11617,\n                43.68405\n              ],\n              [\n                -70.645476,\n                43.090238\n              ],\n              [\n                -70.81489,\n                42.8653\n              ],\n              [\n                -70.825,\n                42.335\n              ],\n              [\n                -70.495,\n                41.805\n              ],\n              [\n                -70.08,\n                41.78\n              ],\n              [\n                -70.185,\n                42.145\n              ],\n              [\n                -69.88497,\n                41.92283\n              ],\n              [\n                -69.96503,\n                41.63717\n              ],\n              [\n                -70.64,\n                41.475\n              ],\n              [\n                -71.12039,\n                41.49445\n              ],\n              [\n                -71.86,\n                41.32\n              ],\n              [\n                -72.295,\n                41.27\n              ],\n              [\n                -72.87643,\n                41.22065\n              ],\n              [\n                -73.71,\n                40.931102\n              ],\n              [\n                -72.24126,\n                41.11948\n              ],\n              [\n                -71.945,\n                40.93\n              ],\n              [\n                -73.345,\n                40.63\n              ],\n              [\n                -73.982,\n                40.628\n              ],\n              [\n                -73.952325,\n                40.75075\n              ],\n              [\n                -74.25671,\n                40.47351\n              ],\n              [\n                -73.96244,\n                40.42763\n              ],\n              [\n                -74.17838,\n                39.70926\n              ],\n              [\n                -74.90604,\n                38.93954\n              ],\n              [\n                -74.98041,\n                39.1964\n              ],\n              [\n                -75.20002,\n                39.24845\n              ],\n              [\n                -75.52805,\n                39.4985\n              ],\n              [\n                -75.32,\n                38.96\n              ],\n              [\n                -75.071835,\n                38.782032\n              ],\n              [\n                -75.05673,\n                38.40412\n              ],\n              [\n                -75.37747,\n                38.01551\n              ],\n              [\n                -75.94023,\n                37.21689\n              ],\n              [\n                -76.03127,\n                37.2566\n              ],\n              [\n                -75.72205,\n                37.93705\n              ],\n              [\n                -76.23287,\n                38.319215\n              ],\n              [\n                -76.35,\n                39.15\n              ],\n              [\n                -76.542725,\n                38.717615\n              ],\n              [\n                -76.32933,\n                38.08326\n              ],\n              [\n                -76.989998,\n                38.239992\n              ],\n              [\n                -76.30162,\n                37.917945\n              ],\n              [\n                -76.25874,\n                36.9664\n              ],\n              [\n                -75.9718,\n                36.89726\n              ],\n              [\n                -75.86804,\n                36.55125\n              ],\n              [\n                -75.72749,\n                35.55074\n              ],\n              [\n                -76.36318,\n                34.80854\n              ],\n              [\n                -77.397635,\n                34.51201\n              ],\n              [\n                -78.05496,\n                33.92547\n              ],\n              [\n                -78.55435,\n                33.86133\n              ],\n              [\n                -79.06067,\n                33.49395\n              ],\n              [\n                -79.20357,\n                33.15839\n              ],\n              [\n                -80.301325,\n                32.509355\n              ],\n              [\n                -80.86498,\n                32.0333\n              ],\n              [\n                -81.33629,\n                31.44049\n              ],\n              [\n                -81.49042,\n                30.72999\n              ],\n              [\n                -81.31371,\n                30.03552\n              ],\n              [\n                -80.98,\n                29.18\n              ],\n              [\n                -80.535585,\n                28.47213\n              ],\n              [\n                -80.53,\n                28.04\n              ],\n              [\n                -80.056539,\n                26.88\n              ],\n              [\n                -80.088015,\n                26.205765\n              ],\n              [\n                -80.13156,\n                25.816775\n              ],\n              [\n                -80.38103,\n                25.20616\n              ],\n              [\n                -80.68,\n                25.08\n              ],\n              [\n                -81.17213,\n                25.20126\n              ],\n              [\n                -81.33,\n                25.64\n              ],\n              [\n                -81.71,\n                25.87\n              ],\n              [\n                -82.24,\n                26.73\n              ],\n              [\n                -82.70515,\n                27.49504\n              ],\n              [\n                -82.85526,\n                27.88624\n              ],\n              [\n                -82.65,\n                28.55\n              ],\n              [\n                -82.93,\n                29.1\n              ],\n              [\n                -83.70959,\n                29.93656\n              ],\n              [\n                -84.1,\n                30.09\n              ],\n              [\n                -85.10882,\n                29.63615\n              ],\n              [\n                -85.28784,\n                29.68612\n              ],\n              [\n                -85.7731,\n                30.15261\n              ],\n              [\n                -86.4,\n                30.4\n              ],\n              [\n                -87.53036,\n                30.27433\n              ],\n              [\n                -88.41782,\n                30.3849\n              ],\n              [\n                -89.18049,\n                30.31598\n              ],\n              [\n                -89.593831,\n                30.159994\n              ],\n              [\n                -89.413735,\n                29.89419\n              ],\n              [\n                -89.43,\n                29.48864\n              ],\n              [\n                -89.21767,\n                29.29108\n              ],\n              [\n                -89.40823,\n                29.15961\n              ],\n              [\n                -89.77928,\n                29.30714\n              ],\n              [\n                -90.15463,\n                29.11743\n              ],\n              [\n                -90.880225,\n                29.148535\n              ],\n              [\n                -91.626785,\n                29.677\n              ],\n              [\n                -92.49906,\n                29.5523\n              ],\n              [\n                -93.22637,\n                29.78375\n              ],\n              [\n                -93.84842,\n                29.71363\n              ],\n              [\n                -94.69,\n                29.48\n              ],\n              [\n                -95.60026,\n                28.73863\n              ],\n              [\n                -96.59404,\n                28.30748\n              ],\n              [\n                -97.14,\n                27.83\n              ],\n              [\n                -97.37,\n                27.38\n              ],\n              [\n                -97.38,\n                26.69\n              ],\n              [\n                -97.33,\n                26.21\n              ],\n              [\n                -97.14,\n                25.87\n              ],\n              [\n                -97.53,\n                25.84\n              ],\n              [\n                -98.24,\n                26.06\n              ],\n              [\n                -99.02,\n                26.37\n              ],\n              [\n                -99.3,\n                26.84\n              ],\n              [\n                -99.52,\n                27.54\n              ],\n              [\n                -100.11,\n                28.11\n              ],\n              [\n                -100.45584,\n                28.69612\n              ],\n              [\n                -100.9576,\n                29.38071\n              ],\n              [\n                -101.6624,\n                29.7793\n              ],\n              [\n                -102.48,\n                29.76\n              ],\n              [\n                -103.11,\n                28.97\n              ],\n              [\n                -103.94,\n                29.27\n              ],\n              [\n                -104.45697,\n                29.57196\n              ],\n              [\n                -104.70575,\n                30.12173\n              ],\n              [\n                -105.03737,\n                30.64402\n              ],\n              [\n                -105.63159,\n                31.08383\n              ],\n              [\n                -106.1429,\n                31.39995\n              ],\n              [\n                -106.50759,\n                31.75452\n              ],\n              [\n                -108.24,\n                31.754854\n              ],\n              [\n                -108.24194,\n                31.34222\n              ],\n              [\n                -109.035,\n                31.34194\n              ],\n              [\n                -111.02361,\n                31.33472\n              ],\n              [\n                -113.30498,\n                32.03914\n              ],\n              [\n                -114.815,\n                32.52528\n              ],\n              [\n                -114.72139,\n                32.72083\n              ],\n              [\n                -115.99135,\n                32.61239\n              ],\n              [\n                -117.12776,\n                32.53534\n              ],\n              [\n                -117.295938,\n                33.046225\n              ],\n              [\n                -117.944,\n                33.621236\n              ],\n              [\n                -118.410602,\n                33.740909\n              ],\n              [\n                -118.519895,\n                34.027782\n              ],\n              [\n                -119.081,\n                34.078\n              ],\n              [\n                -119.438841,\n                34.348477\n              ],\n              [\n                -120.36778,\n                34.44711\n              ],\n              [\n                -120.62286,\n                34.60855\n              ],\n              [\n                -120.74433,\n                35.15686\n              ],\n              [\n                -121.71457,\n                36.16153\n              ],\n              [\n                -122.54747,\n                37.55176\n              ],\n              [\n                -122.51201,\n                37.78339\n              ],\n              [\n                -122.95319,\n                38.11371\n              ],\n              [\n                -123.7272,\n                38.95166\n              ],\n              [\n                -123.86517,\n                39.76699\n              ],\n              [\n                -124.39807,\n                40.3132\n              ],\n              [\n                -124.17886,\n                41.14202\n              ],\n              [\n                -124.2137,\n                41.99964\n              ],\n              [\n                -124.53284,\n                42.76599\n              ],\n              [\n                -124.14214,\n                43.70838\n              ],\n              [\n                -124.020535,\n                44.615895\n              ],\n              [\n                -123.89893,\n                45.52341\n              ],\n              [\n                -124.079635,\n                46.86475\n              ],\n              [\n                -124.39567,\n                47.72017\n              ],\n              [\n                -124.68721,\n                48.184433\n              ],\n              [\n                -124.566101,\n                48.379715\n              ],\n              [\n                -123.12,\n                48.04\n              ],\n              [\n                -122.58736,\n                47.096\n              ],\n              [\n                -122.34,\n                47.36\n              ],\n              [\n                -122.5,\n                48.18\n              ],\n              [\n                -122.84,\n                49\n              ],\n              [\n                -120,\n                49\n              ],\n              [\n                -117.03121,\n                49\n              ],\n              [\n                -116.04818,\n                49\n              ],\n              [\n                -113,\n                49\n              ],\n              [\n                -110.05,\n                49\n              ],\n              [\n                -107.05,\n                49\n              ],\n              [\n                -104.04826,\n                48.99986\n              ],\n              [\n                -100.65,\n                49\n              ],\n              [\n                -97.22872,\n                49.0007\n              ],\n              [\n                -95.15907,\n                49\n              ],\n              [\n                -95.15609,\n                49.38425\n              ],\n              [\n                -94.81758,\n                49.38905\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -153.006314,\n                57.115842\n              ],\n              [\n                -154.00509,\n                56.734677\n              ],\n              [\n                -154.516403,\n                56.992749\n              ],\n              [\n                -154.670993,\n                57.461196\n              ],\n              [\n                -153.76278,\n                57.816575\n              ],\n              [\n                -153.228729,\n                57.968968\n              ],\n              [\n                -152.564791,\n                57.901427\n              ],\n              [\n                -152.141147,\n                57.591059\n              ],\n              [\n                -153.006314,\n                57.115842\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -165.579164,\n                59.909987\n              ],\n              [\n                -166.19277,\n                59.754441\n              ],\n              [\n                -166.848337,\n                59.941406\n              ],\n              [\n                -167.455277,\n                60.213069\n              ],\n              [\n                -166.467792,\n                60.38417\n              ],\n              [\n                -165.67443,\n                60.293607\n              ],\n              [\n                -165.579164,\n                59.909987\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -171.731657,\n                63.782515\n              ],\n              [\n                -171.114434,\n                63.592191\n              ],\n              [\n                -170.491112,\n                63.694975\n              ],\n              [\n                -169.682505,\n                63.431116\n              ],\n              [\n                -168.689439,\n                63.297506\n              ],\n              [\n                -168.771941,\n                63.188598\n              ],\n              [\n                -169.52944,\n                62.976931\n              ],\n              [\n                -170.290556,\n                63.194438\n              ],\n              [\n                -170.671386,\n                63.375822\n              ],\n              [\n                -171.553063,\n                63.317789\n              ],\n              [\n                -171.791111,\n                63.405846\n              ],\n              [\n                -171.731657,\n                63.782515\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                -155.06779,\n                71.147776\n              ],\n              [\n                -154.344165,\n                70.696409\n              ],\n              [\n                -153.900006,\n                70.889989\n              ],\n              [\n                -152.210006,\n                70.829992\n              ],\n              [\n                -152.270002,\n                70.600006\n              ],\n              [\n                -150.739992,\n                70.430017\n              ],\n              [\n                -149.720003,\n                70.53001\n              ],\n              [\n                -147.613362,\n                70.214035\n              ],\n              [\n                -145.68999,\n                70.12001\n              ],\n              [\n                -144.920011,\n                69.989992\n              ],\n              [\n                -143.589446,\n                70.152514\n              ],\n              [\n                -142.07251,\n                69.851938\n              ],\n              [\n                -140.985988,\n                69.711998\n              ],\n              [\n                -140.992499,\n                66.000029\n              ],\n              [\n                -140.99777,\n                60.306397\n              ],\n              [\n                -140.012998,\n                60.276838\n              ],\n              [\n                -139.039,\n                60.000007\n              ],\n              [\n                -138.34089,\n                59.56211\n              ],\n              [\n                -137.4525,\n                58.905\n              ],\n              [\n                -136.47972,\n                59.46389\n              ],\n              [\n                -135.47583,\n                59.78778\n              ],\n              [\n                -134.945,\n                59.27056\n              ],\n              [\n                -134.27111,\n                58.86111\n              ],\n              [\n                -133.355549,\n                58.410285\n              ],\n              [\n                -132.73042,\n                57.69289\n              ],\n              [\n                -131.70781,\n                56.55212\n              ],\n              [\n                -130.00778,\n                55.91583\n              ],\n              [\n                -129.979994,\n                55.284998\n              ],\n              [\n                -130.53611,\n                54.802753\n              ],\n              [\n                -131.085818,\n                55.178906\n              ],\n              [\n                -131.967211,\n                55.497776\n              ],\n              [\n                -132.250011,\n                56.369996\n              ],\n              [\n                -133.539181,\n                57.178887\n              ],\n              [\n                -134.078063,\n                58.123068\n              ],\n              [\n                -135.038211,\n                58.187715\n              ],\n              [\n                -136.628062,\n                58.212209\n              ],\n              [\n                -137.800006,\n                58.499995\n              ],\n              [\n                -139.867787,\n                59.537762\n              ],\n              [\n                -140.825274,\n                59.727517\n              ],\n              [\n                -142.574444,\n                60.084447\n              ],\n              [\n                -143.958881,\n                59.99918\n              ],\n              [\n                -145.925557,\n                60.45861\n              ],\n              [\n                -147.114374,\n                60.884656\n              ],\n              [\n                -148.224306,\n                60.672989\n              ],\n              [\n                -148.018066,\n                59.978329\n              ],\n              [\n                -148.570823,\n                59.914173\n              ],\n              [\n                -149.727858,\n                59.705658\n              ],\n              [\n                -150.608243,\n                59.368211\n              ],\n              [\n                -151.716393,\n                59.155821\n              ],\n              [\n                -151.859433,\n                59.744984\n              ],\n              [\n                -151.409719,\n                60.725803\n              ],\n              [\n                -150.346941,\n                61.033588\n              ],\n              [\n                -150.621111,\n                61.284425\n              ],\n              [\n                -151.895839,\n                60.727198\n              ],\n              [\n                -152.57833,\n                60.061657\n              ],\n              [\n                -154.019172,\n                59.350279\n              ],\n              [\n                -153.287511,\n                58.864728\n              ],\n              [\n                -154.232492,\n                58.146374\n              ],\n              [\n                -155.307491,\n                57.727795\n              ],\n              [\n                -156.308335,\n                57.422774\n              ],\n              [\n                -156.556097,\n                56.979985\n              ],\n              [\n                -158.117217,\n                56.463608\n              ],\n              [\n                -158.433321,\n                55.994154\n              ],\n              [\n                -159.603327,\n                55.566686\n              ],\n              [\n                -160.28972,\n                55.643581\n              ],\n              [\n                -161.223048,\n                55.364735\n              ],\n              [\n                -162.237766,\n                55.024187\n              ],\n              [\n                -163.069447,\n                54.689737\n              ],\n              [\n                -164.785569,\n                54.404173\n              ],\n              [\n                -164.942226,\n                54.572225\n              ],\n              [\n                -163.84834,\n                55.039431\n              ],\n              [\n                -162.870001,\n                55.348043\n              ],\n              [\n                -161.804175,\n                55.894986\n              ],\n              [\n                -160.563605,\n                56.008055\n              ],\n              [\n                -160.07056,\n                56.418055\n              ],\n              [\n                -158.684443,\n                57.016675\n              ],\n              [\n                -158.461097,\n                57.216921\n              ],\n              [\n                -157.72277,\n                57.570001\n              ],\n              [\n                -157.550274,\n                58.328326\n              ],\n              [\n                -157.041675,\n                58.918885\n              ],\n              [\n                -158.194731,\n                58.615802\n              ],\n              [\n                -158.517218,\n                58.787781\n              ],\n              [\n                -159.058606,\n                58.424186\n              ],\n              [\n                -159.711667,\n                58.93139\n              ],\n              [\n                -159.981289,\n                58.572549\n              ],\n              [\n                -160.355271,\n                59.071123\n              ],\n              [\n                -161.355003,\n                58.670838\n              ],\n              [\n                -161.968894,\n                58.671665\n              ],\n              [\n                -162.054987,\n                59.266925\n              ],\n              [\n                -161.874171,\n                59.633621\n              ],\n              [\n                -162.518059,\n                59.989724\n              ],\n              [\n                -163.818341,\n                59.798056\n              ],\n              [\n                -164.662218,\n                60.267484\n              ],\n              [\n                -165.346388,\n                60.507496\n              ],\n              [\n                -165.350832,\n                61.073895\n              ],\n              [\n                -166.121379,\n                61.500019\n              ],\n              [\n                -165.734452,\n                62.074997\n              ],\n              [\n                -164.919179,\n                62.633076\n              ],\n              [\n                -164.562508,\n                63.146378\n              ],\n              [\n                -163.753332,\n                63.219449\n              ],\n              [\n                -163.067224,\n                63.059459\n              ],\n              [\n                -162.260555,\n                63.541936\n              ],\n              [\n                -161.53445,\n                63.455817\n              ],\n              [\n                -160.772507,\n                63.766108\n              ],\n              [\n                -160.958335,\n                64.222799\n              ],\n              [\n                -161.518068,\n                64.402788\n              ],\n              [\n                -160.777778,\n                64.788604\n              ],\n              [\n                -161.391926,\n                64.777235\n              ],\n              [\n                -162.45305,\n                64.559445\n              ],\n              [\n                -162.757786,\n                64.338605\n              ],\n              [\n                -163.546394,\n                64.55916\n              ],\n              [\n                -164.96083,\n                64.446945\n              ],\n              [\n                -166.425288,\n                64.686672\n              ],\n              [\n                -166.845004,\n                65.088896\n              ],\n              [\n                -168.11056,\n                65.669997\n              ],\n              [\n                -166.705271,\n                66.088318\n              ],\n              [\n                -164.47471,\n                66.57666\n              ],\n              [\n                -163.652512,\n                66.57666\n              ],\n              [\n                -163.788602,\n                66.077207\n              ],\n              [\n                -161.677774,\n                66.11612\n              ],\n              [\n                -162.489715,\n                66.735565\n              ],\n              [\n                -163.719717,\n                67.116395\n              ],\n              [\n                -164.430991,\n                67.616338\n              ],\n              [\n                -165.390287,\n                68.042772\n              ],\n              [\n                -166.764441,\n                68.358877\n              ],\n              [\n                -166.204707,\n                68.883031\n              ],\n              [\n                -164.430811,\n                68.915535\n              ],\n              [\n                -163.168614,\n                69.371115\n              ],\n              [\n                -162.930566,\n                69.858062\n              ],\n              [\n                -161.908897,\n                70.33333\n              ],\n              [\n                -160.934797,\n                70.44769\n              ],\n              [\n                -159.039176,\n                70.891642\n              ],\n              [\n                -158.119723,\n                70.824721\n              ],\n              [\n                -156.580825,\n                71.357764\n              ],\n              [\n                -155.06779,\n                71.147776\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/UZB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"UZB\",\"properties\":{\"name\":\"Uzbekistan\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[66.518607,37.362784],[66.54615,37.974685],[65.215999,38.402695],[64.170223,38.892407],[63.518015,39.363257],[62.37426,40.053886],[61.882714,41.084857],[61.547179,41.26637],[60.465953,41.220327],[60.083341,41.425146],[59.976422,42.223082],[58.629011,42.751551],[57.78653,42.170553],[56.932215,41.826026],[57.096391,41.32231],[55.968191,41.308642],[55.928917,44.995858],[58.503127,45.586804],[58.689989,45.500014],[60.239972,44.784037],[61.05832,44.405817],[62.0133,43.504477],[63.185787,43.650075],[64.900824,43.728081],[66.098012,42.99766],[66.023392,41.994646],[66.510649,41.987644],[66.714047,41.168444],[67.985856,41.135991],[68.259896,40.662325],[68.632483,40.668681],[69.070027,41.384244],[70.388965,42.081308],[70.962315,42.266154],[71.259248,42.167711],[70.420022,41.519998],[71.157859,41.143587],[71.870115,41.3929],[73.055417,40.866033],[71.774875,40.145844],[71.014198,40.244366],[70.601407,40.218527],[70.45816,40.496495],[70.666622,40.960213],[69.329495,40.727824],[69.011633,40.086158],[68.536416,39.533453],[67.701429,39.580478],[67.44222,39.140144],[68.176025,38.901553],[68.392033,38.157025],[67.83,37.144994],[67.075782,37.356144],[66.518607,37.362784]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/UZB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              50.625,\n              40.97989807\n            ],\n            [\n              50.625,\n              45.08903556\n            ],\n            [\n              56.25,\n              45.08903556\n            ],\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              50.625,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              40.97989807\n            ],\n            [\n              56.25,\n              45.08903556\n            ],\n            [\n              61.875,\n              45.08903556\n            ],\n            [\n              61.875,\n              40.97989807\n            ],\n            [\n              56.25,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              56.25,\n              45.08903556\n            ],\n            [\n              56.25,\n              48.92249926\n            ],\n            [\n              61.875,\n              48.92249926\n            ],\n            [\n              61.875,\n              45.08903556\n            ],\n            [\n              56.25,\n              45.08903556\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              36.59788913\n            ],\n            [\n              61.875,\n              40.97989807\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              61.875,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              61.875,\n              40.97989807\n            ],\n            [\n              61.875,\n              45.08903556\n            ],\n            [\n              67.5,\n              45.08903556\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              61.875,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              36.59788913\n            ],\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              73.125,\n              36.59788913\n            ],\n            [\n              67.5,\n              36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              67.5,\n              40.97989807\n            ],\n            [\n              67.5,\n              45.08903556\n            ],\n            [\n              73.125,\n              45.08903556\n            ],\n            [\n              73.125,\n              40.97989807\n            ],\n            [\n              67.5,\n              40.97989807\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              66.518607,\n              37.362784\n            ],\n            [\n              66.54615,\n              37.974685\n            ],\n            [\n              65.215999,\n              38.402695\n            ],\n            [\n              64.170223,\n              38.892407\n            ],\n            [\n              63.518015,\n              39.363257\n            ],\n            [\n              62.37426,\n              40.053886\n            ],\n            [\n              61.882714,\n              41.084857\n            ],\n            [\n              61.547179,\n              41.26637\n            ],\n            [\n              60.465953,\n              41.220327\n            ],\n            [\n              60.083341,\n              41.425146\n            ],\n            [\n              59.976422,\n              42.223082\n            ],\n            [\n              58.629011,\n              42.751551\n            ],\n            [\n              57.78653,\n              42.170553\n            ],\n            [\n              56.932215,\n              41.826026\n            ],\n            [\n              57.096391,\n              41.32231\n            ],\n            [\n              55.968191,\n              41.308642\n            ],\n            [\n              55.928917,\n              44.995858\n            ],\n            [\n              58.503127,\n              45.586804\n            ],\n            [\n              58.689989,\n              45.500014\n            ],\n            [\n              60.239972,\n              44.784037\n            ],\n            [\n              61.05832,\n              44.405817\n            ],\n            [\n              62.0133,\n              43.504477\n            ],\n            [\n              63.185787,\n              43.650075\n            ],\n            [\n              64.900824,\n              43.728081\n            ],\n            [\n              66.098012,\n              42.99766\n            ],\n            [\n              66.023392,\n              41.994646\n            ],\n            [\n              66.510649,\n              41.987644\n            ],\n            [\n              66.714047,\n              41.168444\n            ],\n            [\n              67.985856,\n              41.135991\n            ],\n            [\n              68.259896,\n              40.662325\n            ],\n            [\n              68.632483,\n              40.668681\n            ],\n            [\n              69.070027,\n              41.384244\n            ],\n            [\n              70.388965,\n              42.081308\n            ],\n            [\n              70.962315,\n              42.266154\n            ],\n            [\n              71.259248,\n              42.167711\n            ],\n            [\n              70.420022,\n              41.519998\n            ],\n            [\n              71.157859,\n              41.143587\n            ],\n            [\n              71.870115,\n              41.3929\n            ],\n            [\n              73.055417,\n              40.866033\n            ],\n            [\n              71.774875,\n              40.145844\n            ],\n            [\n              71.014198,\n              40.244366\n            ],\n            [\n              70.601407,\n              40.218527\n            ],\n            [\n              70.45816,\n              40.496495\n            ],\n            [\n              70.666622,\n              40.960213\n            ],\n            [\n              69.329495,\n              40.727824\n            ],\n            [\n              69.011633,\n              40.086158\n            ],\n            [\n              68.536416,\n              39.533453\n            ],\n            [\n              67.701429,\n              39.580478\n            ],\n            [\n              67.44222,\n              39.140144\n            ],\n            [\n              68.176025,\n              38.901553\n            ],\n            [\n              68.392033,\n              38.157025\n            ],\n            [\n              67.83,\n              37.144994\n            ],\n            [\n              67.075782,\n              37.356144\n            ],\n            [\n              66.518607,\n              37.362784\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/VEN.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"VEN\",\"properties\":{\"name\":\"Venezuela\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.331584,11.776284],[-71.360006,11.539994],[-71.94705,11.423282],[-71.620868,10.96946],[-71.633064,10.446494],[-72.074174,9.865651],[-71.695644,9.072263],[-71.264559,9.137195],[-71.039999,9.859993],[-71.350084,10.211935],[-71.400623,10.968969],[-70.155299,11.375482],[-70.293843,11.846822],[-69.943245,12.162307],[-69.5843,11.459611],[-68.882999,11.443385],[-68.233271,10.885744],[-68.194127,10.554653],[-67.296249,10.545868],[-66.227864,10.648627],[-65.655238,10.200799],[-64.890452,10.077215],[-64.329479,10.389599],[-64.318007,10.641418],[-63.079322,10.701724],[-61.880946,10.715625],[-62.730119,10.420269],[-62.388512,9.948204],[-61.588767,9.873067],[-60.830597,9.38134],[-60.671252,8.580174],[-60.150096,8.602757],[-59.758285,8.367035],[-60.550588,7.779603],[-60.637973,7.415],[-60.295668,7.043911],[-60.543999,6.856584],[-61.159336,6.696077],[-61.139415,6.234297],[-61.410303,5.959068],[-60.733574,5.200277],[-60.601179,4.918098],[-60.966893,4.536468],[-62.08543,4.162124],[-62.804533,4.006965],[-63.093198,3.770571],[-63.888343,4.02053],[-64.628659,4.148481],[-64.816064,4.056445],[-64.368494,3.79721],[-64.408828,3.126786],[-64.269999,2.497006],[-63.422867,2.411068],[-63.368788,2.2009],[-64.083085,1.916369],[-64.199306,1.492855],[-64.611012,1.328731],[-65.354713,1.095282],[-65.548267,0.789254],[-66.325765,0.724452],[-66.876326,1.253361],[-67.181294,2.250638],[-67.447092,2.600281],[-67.809938,2.820655],[-67.303173,3.318454],[-67.337564,3.542342],[-67.621836,3.839482],[-67.823012,4.503937],[-67.744697,5.221129],[-67.521532,5.55687],[-67.34144,6.095468],[-67.695087,6.267318],[-68.265052,6.153268],[-68.985319,6.206805],[-69.38948,6.099861],[-70.093313,6.960376],[-70.674234,7.087785],[-71.960176,6.991615],[-72.198352,7.340431],[-72.444487,7.423785],[-72.479679,7.632506],[-72.360901,8.002638],[-72.439862,8.405275],[-72.660495,8.625288],[-72.78873,9.085027],[-73.304952,9.152],[-73.027604,9.73677],[-72.905286,10.450344],[-72.614658,10.821975],[-72.227575,11.108702],[-71.973922,11.608672],[-71.331584,11.776284]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/VEN_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -67.5,\n              0\n            ],\n            [\n              -67.5,\n              11.17840187\n            ],\n            [\n              -56.25,\n              11.17840187\n            ],\n            [\n              -56.25,\n              0\n            ],\n            [\n              -67.5,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              0\n            ],\n            [\n              -73.125,\n              5.61598582\n            ],\n            [\n              -67.5,\n              5.61598582\n            ],\n            [\n              -67.5,\n              0\n            ],\n            [\n              -73.125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              11.17840187\n            ],\n            [\n              -73.125,\n              16.63619188\n            ],\n            [\n              -67.5,\n              16.63619188\n            ],\n            [\n              -67.5,\n              11.17840187\n            ],\n            [\n              -73.125,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -73.125,\n              5.61598582\n            ],\n            [\n              -73.125,\n              11.17840187\n            ],\n            [\n              -67.5,\n              11.17840187\n            ],\n            [\n              -67.5,\n              5.61598582\n            ],\n            [\n              -73.125,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -78.75,\n              5.61598582\n            ],\n            [\n              -78.75,\n              11.17840187\n            ],\n            [\n              -73.125,\n              11.17840187\n            ],\n            [\n              -73.125,\n              5.61598582\n            ],\n            [\n              -78.75,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              -71.331584,\n              11.776284\n            ],\n            [\n              -71.360006,\n              11.539994\n            ],\n            [\n              -71.94705,\n              11.423282\n            ],\n            [\n              -71.620868,\n              10.96946\n            ],\n            [\n              -71.633064,\n              10.446494\n            ],\n            [\n              -72.074174,\n              9.865651\n            ],\n            [\n              -71.695644,\n              9.072263\n            ],\n            [\n              -71.264559,\n              9.137195\n            ],\n            [\n              -71.039999,\n              9.859993\n            ],\n            [\n              -71.350084,\n              10.211935\n            ],\n            [\n              -71.400623,\n              10.968969\n            ],\n            [\n              -70.155299,\n              11.375482\n            ],\n            [\n              -70.293843,\n              11.846822\n            ],\n            [\n              -69.943245,\n              12.162307\n            ],\n            [\n              -69.5843,\n              11.459611\n            ],\n            [\n              -68.882999,\n              11.443385\n            ],\n            [\n              -68.233271,\n              10.885744\n            ],\n            [\n              -68.194127,\n              10.554653\n            ],\n            [\n              -67.296249,\n              10.545868\n            ],\n            [\n              -66.227864,\n              10.648627\n            ],\n            [\n              -65.655238,\n              10.200799\n            ],\n            [\n              -64.890452,\n              10.077215\n            ],\n            [\n              -64.329479,\n              10.389599\n            ],\n            [\n              -64.318007,\n              10.641418\n            ],\n            [\n              -63.079322,\n              10.701724\n            ],\n            [\n              -61.880946,\n              10.715625\n            ],\n            [\n              -62.730119,\n              10.420269\n            ],\n            [\n              -62.388512,\n              9.948204\n            ],\n            [\n              -61.588767,\n              9.873067\n            ],\n            [\n              -60.830597,\n              9.38134\n            ],\n            [\n              -60.671252,\n              8.580174\n            ],\n            [\n              -60.150096,\n              8.602757\n            ],\n            [\n              -59.758285,\n              8.367035\n            ],\n            [\n              -60.550588,\n              7.779603\n            ],\n            [\n              -60.637973,\n              7.415\n            ],\n            [\n              -60.295668,\n              7.043911\n            ],\n            [\n              -60.543999,\n              6.856584\n            ],\n            [\n              -61.159336,\n              6.696077\n            ],\n            [\n              -61.139415,\n              6.234297\n            ],\n            [\n              -61.410303,\n              5.959068\n            ],\n            [\n              -60.733574,\n              5.200277\n            ],\n            [\n              -60.601179,\n              4.918098\n            ],\n            [\n              -60.966893,\n              4.536468\n            ],\n            [\n              -62.08543,\n              4.162124\n            ],\n            [\n              -62.804533,\n              4.006965\n            ],\n            [\n              -63.093198,\n              3.770571\n            ],\n            [\n              -63.888343,\n              4.02053\n            ],\n            [\n              -64.628659,\n              4.148481\n            ],\n            [\n              -64.816064,\n              4.056445\n            ],\n            [\n              -64.368494,\n              3.79721\n            ],\n            [\n              -64.408828,\n              3.126786\n            ],\n            [\n              -64.269999,\n              2.497006\n            ],\n            [\n              -63.422867,\n              2.411068\n            ],\n            [\n              -63.368788,\n              2.2009\n            ],\n            [\n              -64.083085,\n              1.916369\n            ],\n            [\n              -64.199306,\n              1.492855\n            ],\n            [\n              -64.611012,\n              1.328731\n            ],\n            [\n              -65.354713,\n              1.095282\n            ],\n            [\n              -65.548267,\n              0.789254\n            ],\n            [\n              -66.325765,\n              0.724452\n            ],\n            [\n              -66.876326,\n              1.253361\n            ],\n            [\n              -67.181294,\n              2.250638\n            ],\n            [\n              -67.447092,\n              2.600281\n            ],\n            [\n              -67.809938,\n              2.820655\n            ],\n            [\n              -67.303173,\n              3.318454\n            ],\n            [\n              -67.337564,\n              3.542342\n            ],\n            [\n              -67.621836,\n              3.839482\n            ],\n            [\n              -67.823012,\n              4.503937\n            ],\n            [\n              -67.744697,\n              5.221129\n            ],\n            [\n              -67.521532,\n              5.55687\n            ],\n            [\n              -67.34144,\n              6.095468\n            ],\n            [\n              -67.695087,\n              6.267318\n            ],\n            [\n              -68.265052,\n              6.153268\n            ],\n            [\n              -68.985319,\n              6.206805\n            ],\n            [\n              -69.38948,\n              6.099861\n            ],\n            [\n              -70.093313,\n              6.960376\n            ],\n            [\n              -70.674234,\n              7.087785\n            ],\n            [\n              -71.960176,\n              6.991615\n            ],\n            [\n              -72.198352,\n              7.340431\n            ],\n            [\n              -72.444487,\n              7.423785\n            ],\n            [\n              -72.479679,\n              7.632506\n            ],\n            [\n              -72.360901,\n              8.002638\n            ],\n            [\n              -72.439862,\n              8.405275\n            ],\n            [\n              -72.660495,\n              8.625288\n            ],\n            [\n              -72.78873,\n              9.085027\n            ],\n            [\n              -73.304952,\n              9.152\n            ],\n            [\n              -73.027604,\n              9.73677\n            ],\n            [\n              -72.905286,\n              10.450344\n            ],\n            [\n              -72.614658,\n              10.821975\n            ],\n            [\n              -72.227575,\n              11.108702\n            ],\n            [\n              -71.973922,\n              11.608672\n            ],\n            [\n              -71.331584,\n              11.776284\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/VNM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"VNM\",\"properties\":{\"name\":\"Vietnam\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[108.05018,21.55238],[106.715068,20.696851],[105.881682,19.75205],[105.662006,19.058165],[106.426817,18.004121],[107.361954,16.697457],[108.269495,16.079742],[108.877107,15.276691],[109.33527,13.426028],[109.200136,11.666859],[108.36613,11.008321],[107.220929,10.364484],[106.405113,9.53084],[105.158264,8.59976],[104.795185,9.241038],[105.076202,9.918491],[104.334335,10.486544],[105.199915,10.88931],[106.24967,10.961812],[105.810524,11.567615],[107.491403,12.337206],[107.614548,13.535531],[107.382727,14.202441],[107.564525,15.202173],[107.312706,15.908538],[106.556008,16.604284],[105.925762,17.485315],[105.094598,18.666975],[103.896532,19.265181],[104.183388,19.624668],[104.822574,19.886642],[104.435,20.758733],[103.203861,20.766562],[102.754896,21.675137],[102.170436,22.464753],[102.706992,22.708795],[103.504515,22.703757],[104.476858,22.81915],[105.329209,23.352063],[105.811247,22.976892],[106.725403,22.794268],[106.567273,22.218205],[107.04342,21.811899],[108.05018,21.55238]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/VNM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              112.5,\n              21.94304553\n            ],\n            [\n              112.5,\n              11.17840187\n            ],\n            [\n              101.25,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              21.94304553\n            ],\n            [\n              101.25,\n              27.05912578\n            ],\n            [\n              106.875,\n              27.05912578\n            ],\n            [\n              106.875,\n              21.94304553\n            ],\n            [\n              101.25,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              101.25,\n              5.61598582\n            ],\n            [\n              101.25,\n              11.17840187\n            ],\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              101.25,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              21.94304553\n            ],\n            [\n              106.875,\n              27.05912578\n            ],\n            [\n              112.5,\n              27.05912578\n            ],\n            [\n              112.5,\n              21.94304553\n            ],\n            [\n              106.875,\n              21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              106.875,\n              5.61598582\n            ],\n            [\n              106.875,\n              11.17840187\n            ],\n            [\n              112.5,\n              11.17840187\n            ],\n            [\n              112.5,\n              5.61598582\n            ],\n            [\n              106.875,\n              5.61598582\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              108.05018,\n              21.55238\n            ],\n            [\n              106.715068,\n              20.696851\n            ],\n            [\n              105.881682,\n              19.75205\n            ],\n            [\n              105.662006,\n              19.058165\n            ],\n            [\n              106.426817,\n              18.004121\n            ],\n            [\n              107.361954,\n              16.697457\n            ],\n            [\n              108.269495,\n              16.079742\n            ],\n            [\n              108.877107,\n              15.276691\n            ],\n            [\n              109.33527,\n              13.426028\n            ],\n            [\n              109.200136,\n              11.666859\n            ],\n            [\n              108.36613,\n              11.008321\n            ],\n            [\n              107.220929,\n              10.364484\n            ],\n            [\n              106.405113,\n              9.53084\n            ],\n            [\n              105.158264,\n              8.59976\n            ],\n            [\n              104.795185,\n              9.241038\n            ],\n            [\n              105.076202,\n              9.918491\n            ],\n            [\n              104.334335,\n              10.486544\n            ],\n            [\n              105.199915,\n              10.88931\n            ],\n            [\n              106.24967,\n              10.961812\n            ],\n            [\n              105.810524,\n              11.567615\n            ],\n            [\n              107.491403,\n              12.337206\n            ],\n            [\n              107.614548,\n              13.535531\n            ],\n            [\n              107.382727,\n              14.202441\n            ],\n            [\n              107.564525,\n              15.202173\n            ],\n            [\n              107.312706,\n              15.908538\n            ],\n            [\n              106.556008,\n              16.604284\n            ],\n            [\n              105.925762,\n              17.485315\n            ],\n            [\n              105.094598,\n              18.666975\n            ],\n            [\n              103.896532,\n              19.265181\n            ],\n            [\n              104.183388,\n              19.624668\n            ],\n            [\n              104.822574,\n              19.886642\n            ],\n            [\n              104.435,\n              20.758733\n            ],\n            [\n              103.203861,\n              20.766562\n            ],\n            [\n              102.754896,\n              21.675137\n            ],\n            [\n              102.170436,\n              22.464753\n            ],\n            [\n              102.706992,\n              22.708795\n            ],\n            [\n              103.504515,\n              22.703757\n            ],\n            [\n              104.476858,\n              22.81915\n            ],\n            [\n              105.329209,\n              23.352063\n            ],\n            [\n              105.811247,\n              22.976892\n            ],\n            [\n              106.725403,\n              22.794268\n            ],\n            [\n              106.567273,\n              22.218205\n            ],\n            [\n              107.04342,\n              21.811899\n            ],\n            [\n              108.05018,\n              21.55238\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/VUT.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"VUT\",\"properties\":{\"name\":\"Vanuatu\"},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[167.844877,-16.466333],[167.515181,-16.59785],[167.180008,-16.159995],[167.216801,-15.891846],[167.844877,-16.466333]]],[[[167.107712,-14.93392],[167.270028,-15.740021],[167.001207,-15.614602],[166.793158,-15.668811],[166.649859,-15.392704],[166.629137,-14.626497],[167.107712,-14.93392]]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/VUT_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              163.125,\n              -16.63619188\n            ],\n            [\n              163.125,\n              -11.17840187\n            ],\n            [\n              168.75,\n              -11.17840187\n            ],\n            [\n              168.75,\n              -16.63619188\n            ],\n            [\n              163.125,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [\n                167.844877,\n                -16.466333\n              ],\n              [\n                167.515181,\n                -16.59785\n              ],\n              [\n                167.180008,\n                -16.159995\n              ],\n              [\n                167.216801,\n                -15.891846\n              ],\n              [\n                167.844877,\n                -16.466333\n              ]\n            ]\n          ],\n          [\n            [\n              [\n                167.107712,\n                -14.93392\n              ],\n              [\n                167.270028,\n                -15.740021\n              ],\n              [\n                167.001207,\n                -15.614602\n              ],\n              [\n                166.793158,\n                -15.668811\n              ],\n              [\n                166.649859,\n                -15.392704\n              ],\n              [\n                166.629137,\n                -14.626497\n              ],\n              [\n                167.107712,\n                -14.93392\n              ]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/YEM.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"YEM\",\"properties\":{\"name\":\"Yemen\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[53.108573,16.651051],[52.385206,16.382411],[52.191729,15.938433],[52.168165,15.59742],[51.172515,15.17525],[49.574576,14.708767],[48.679231,14.003202],[48.238947,13.94809],[47.938914,14.007233],[47.354454,13.59222],[46.717076,13.399699],[45.877593,13.347764],[45.62505,13.290946],[45.406459,13.026905],[45.144356,12.953938],[44.989533,12.699587],[44.494576,12.721653],[44.175113,12.58595],[43.482959,12.6368],[43.222871,13.22095],[43.251448,13.767584],[43.087944,14.06263],[42.892245,14.802249],[42.604873,15.213335],[42.805015,15.261963],[42.702438,15.718886],[42.823671,15.911742],[42.779332,16.347891],[43.218375,16.66689],[43.115798,17.08844],[43.380794,17.579987],[43.791519,17.319977],[44.062613,17.410359],[45.216651,17.433329],[45.399999,17.333335],[46.366659,17.233315],[46.749994,17.283338],[47.000005,16.949999],[47.466695,17.116682],[48.183344,18.166669],[49.116672,18.616668],[52.00001,19.000003],[52.782184,17.349742],[53.108573,16.651051]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/YEM_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              11.17840187\n            ],\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              45,\n              16.63619188\n            ],\n            [\n              45,\n              11.17840187\n            ],\n            [\n              39.375,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              39.375,\n              16.63619188\n            ],\n            [\n              39.375,\n              21.94304553\n            ],\n            [\n              45,\n              21.94304553\n            ],\n            [\n              45,\n              16.63619188\n            ],\n            [\n              39.375,\n              16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              45,\n              11.17840187\n            ],\n            [\n              45,\n              21.94304553\n            ],\n            [\n              56.25,\n              21.94304553\n            ],\n            [\n              56.25,\n              11.17840187\n            ],\n            [\n              45,\n              11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              53.108573,\n              16.651051\n            ],\n            [\n              52.385206,\n              16.382411\n            ],\n            [\n              52.191729,\n              15.938433\n            ],\n            [\n              52.168165,\n              15.59742\n            ],\n            [\n              51.172515,\n              15.17525\n            ],\n            [\n              49.574576,\n              14.708767\n            ],\n            [\n              48.679231,\n              14.003202\n            ],\n            [\n              48.238947,\n              13.94809\n            ],\n            [\n              47.938914,\n              14.007233\n            ],\n            [\n              47.354454,\n              13.59222\n            ],\n            [\n              46.717076,\n              13.399699\n            ],\n            [\n              45.877593,\n              13.347764\n            ],\n            [\n              45.62505,\n              13.290946\n            ],\n            [\n              45.406459,\n              13.026905\n            ],\n            [\n              45.144356,\n              12.953938\n            ],\n            [\n              44.989533,\n              12.699587\n            ],\n            [\n              44.494576,\n              12.721653\n            ],\n            [\n              44.175113,\n              12.58595\n            ],\n            [\n              43.482959,\n              12.6368\n            ],\n            [\n              43.222871,\n              13.22095\n            ],\n            [\n              43.251448,\n              13.767584\n            ],\n            [\n              43.087944,\n              14.06263\n            ],\n            [\n              42.892245,\n              14.802249\n            ],\n            [\n              42.604873,\n              15.213335\n            ],\n            [\n              42.805015,\n              15.261963\n            ],\n            [\n              42.702438,\n              15.718886\n            ],\n            [\n              42.823671,\n              15.911742\n            ],\n            [\n              42.779332,\n              16.347891\n            ],\n            [\n              43.218375,\n              16.66689\n            ],\n            [\n              43.115798,\n              17.08844\n            ],\n            [\n              43.380794,\n              17.579987\n            ],\n            [\n              43.791519,\n              17.319977\n            ],\n            [\n              44.062613,\n              17.410359\n            ],\n            [\n              45.216651,\n              17.433329\n            ],\n            [\n              45.399999,\n              17.333335\n            ],\n            [\n              46.366659,\n              17.233315\n            ],\n            [\n              46.749994,\n              17.283338\n            ],\n            [\n              47.000005,\n              16.949999\n            ],\n            [\n              47.466695,\n              17.116682\n            ],\n            [\n              48.183344,\n              18.166669\n            ],\n            [\n              49.116672,\n              18.616668\n            ],\n            [\n              52.00001,\n              19.000003\n            ],\n            [\n              52.782184,\n              17.349742\n            ],\n            [\n              53.108573,\n              16.651051\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ZAF.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ZAF\",\"properties\":{\"name\":\"South Africa\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[31.521001,-29.257387],[31.325561,-29.401978],[30.901763,-29.909957],[30.622813,-30.423776],[30.055716,-31.140269],[28.925553,-32.172041],[28.219756,-32.771953],[27.464608,-33.226964],[26.419452,-33.61495],[25.909664,-33.66704],[25.780628,-33.944646],[25.172862,-33.796851],[24.677853,-33.987176],[23.594043,-33.794474],[22.988189,-33.916431],[22.574157,-33.864083],[21.542799,-34.258839],[20.689053,-34.417175],[20.071261,-34.795137],[19.616405,-34.819166],[19.193278,-34.462599],[18.855315,-34.444306],[18.424643,-33.997873],[18.377411,-34.136521],[18.244499,-33.867752],[18.25008,-33.281431],[17.92519,-32.611291],[18.24791,-32.429131],[18.221762,-31.661633],[17.566918,-30.725721],[17.064416,-29.878641],[17.062918,-29.875954],[16.344977,-28.576705],[16.824017,-28.082162],[17.218929,-28.355943],[17.387497,-28.783514],[17.836152,-28.856378],[18.464899,-29.045462],[19.002127,-28.972443],[19.894734,-28.461105],[19.895768,-24.76779],[20.165726,-24.917962],[20.758609,-25.868136],[20.66647,-26.477453],[20.889609,-26.828543],[21.605896,-26.726534],[22.105969,-26.280256],[22.579532,-25.979448],[22.824271,-25.500459],[23.312097,-25.26869],[23.73357,-25.390129],[24.211267,-25.670216],[25.025171,-25.71967],[25.664666,-25.486816],[25.765849,-25.174845],[25.941652,-24.696373],[26.485753,-24.616327],[26.786407,-24.240691],[27.11941,-23.574323],[28.017236,-22.827754],[29.432188,-22.091313],[29.839037,-22.102216],[30.322883,-22.271612],[30.659865,-22.151567],[31.191409,-22.25151],[31.670398,-23.658969],[31.930589,-24.369417],[31.752408,-25.484284],[31.837778,-25.843332],[31.333158,-25.660191],[31.04408,-25.731452],[30.949667,-26.022649],[30.676609,-26.398078],[30.685962,-26.743845],[31.282773,-27.285879],[31.86806,-27.177927],[32.071665,-26.73382],[32.83012,-26.742192],[32.580265,-27.470158],[32.462133,-28.301011],[32.203389,-28.752405],[31.521001,-29.257387]],[[28.978263,-28.955597],[28.5417,-28.647502],[28.074338,-28.851469],[27.532511,-29.242711],[26.999262,-29.875954],[27.749397,-30.645106],[28.107205,-30.545732],[28.291069,-30.226217],[28.8484,-30.070051],[29.018415,-29.743766],[29.325166,-29.257387],[28.978263,-28.955597]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ZAF_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              11.25,\n              -31.95216224\n            ],\n            [\n              11.25,\n              -27.05912578\n            ],\n            [\n              16.875,\n              -27.05912578\n            ],\n            [\n              16.875,\n              -31.95216224\n            ],\n            [\n              11.25,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -27.05912578\n            ],\n            [\n              16.875,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -27.05912578\n            ],\n            [\n              16.875,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -31.95216224\n            ],\n            [\n              16.875,\n              -27.05912578\n            ],\n            [\n              22.5,\n              -27.05912578\n            ],\n            [\n              22.5,\n              -31.95216224\n            ],\n            [\n              16.875,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -36.59788913\n            ],\n            [\n              16.875,\n              -31.95216224\n            ],\n            [\n              22.5,\n              -31.95216224\n            ],\n            [\n              22.5,\n              -36.59788913\n            ],\n            [\n              16.875,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -31.95216224\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -31.95216224\n            ],\n            [\n              22.5,\n              -31.95216224\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -36.59788913\n            ],\n            [\n              22.5,\n              -31.95216224\n            ],\n            [\n              28.125,\n              -31.95216224\n            ],\n            [\n              28.125,\n              -36.59788913\n            ],\n            [\n              22.5,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -36.59788913\n            ],\n            [\n              28.125,\n              -31.95216224\n            ],\n            [\n              33.75,\n              -31.95216224\n            ],\n            [\n              33.75,\n              -36.59788913\n            ],\n            [\n              28.125,\n              -36.59788913\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              31.521001,\n              -29.257387\n            ],\n            [\n              31.325561,\n              -29.401978\n            ],\n            [\n              30.901763,\n              -29.909957\n            ],\n            [\n              30.622813,\n              -30.423776\n            ],\n            [\n              30.055716,\n              -31.140269\n            ],\n            [\n              28.925553,\n              -32.172041\n            ],\n            [\n              28.219756,\n              -32.771953\n            ],\n            [\n              27.464608,\n              -33.226964\n            ],\n            [\n              26.419452,\n              -33.61495\n            ],\n            [\n              25.909664,\n              -33.66704\n            ],\n            [\n              25.780628,\n              -33.944646\n            ],\n            [\n              25.172862,\n              -33.796851\n            ],\n            [\n              24.677853,\n              -33.987176\n            ],\n            [\n              23.594043,\n              -33.794474\n            ],\n            [\n              22.988189,\n              -33.916431\n            ],\n            [\n              22.574157,\n              -33.864083\n            ],\n            [\n              21.542799,\n              -34.258839\n            ],\n            [\n              20.689053,\n              -34.417175\n            ],\n            [\n              20.071261,\n              -34.795137\n            ],\n            [\n              19.616405,\n              -34.819166\n            ],\n            [\n              19.193278,\n              -34.462599\n            ],\n            [\n              18.855315,\n              -34.444306\n            ],\n            [\n              18.424643,\n              -33.997873\n            ],\n            [\n              18.377411,\n              -34.136521\n            ],\n            [\n              18.244499,\n              -33.867752\n            ],\n            [\n              18.25008,\n              -33.281431\n            ],\n            [\n              17.92519,\n              -32.611291\n            ],\n            [\n              18.24791,\n              -32.429131\n            ],\n            [\n              18.221762,\n              -31.661633\n            ],\n            [\n              17.566918,\n              -30.725721\n            ],\n            [\n              17.064416,\n              -29.878641\n            ],\n            [\n              17.062918,\n              -29.875954\n            ],\n            [\n              16.344977,\n              -28.576705\n            ],\n            [\n              16.824017,\n              -28.082162\n            ],\n            [\n              17.218929,\n              -28.355943\n            ],\n            [\n              17.387497,\n              -28.783514\n            ],\n            [\n              17.836152,\n              -28.856378\n            ],\n            [\n              18.464899,\n              -29.045462\n            ],\n            [\n              19.002127,\n              -28.972443\n            ],\n            [\n              19.894734,\n              -28.461105\n            ],\n            [\n              19.895768,\n              -24.76779\n            ],\n            [\n              20.165726,\n              -24.917962\n            ],\n            [\n              20.758609,\n              -25.868136\n            ],\n            [\n              20.66647,\n              -26.477453\n            ],\n            [\n              20.889609,\n              -26.828543\n            ],\n            [\n              21.605896,\n              -26.726534\n            ],\n            [\n              22.105969,\n              -26.280256\n            ],\n            [\n              22.579532,\n              -25.979448\n            ],\n            [\n              22.824271,\n              -25.500459\n            ],\n            [\n              23.312097,\n              -25.26869\n            ],\n            [\n              23.73357,\n              -25.390129\n            ],\n            [\n              24.211267,\n              -25.670216\n            ],\n            [\n              25.025171,\n              -25.71967\n            ],\n            [\n              25.664666,\n              -25.486816\n            ],\n            [\n              25.765849,\n              -25.174845\n            ],\n            [\n              25.941652,\n              -24.696373\n            ],\n            [\n              26.485753,\n              -24.616327\n            ],\n            [\n              26.786407,\n              -24.240691\n            ],\n            [\n              27.11941,\n              -23.574323\n            ],\n            [\n              28.017236,\n              -22.827754\n            ],\n            [\n              29.432188,\n              -22.091313\n            ],\n            [\n              29.839037,\n              -22.102216\n            ],\n            [\n              30.322883,\n              -22.271612\n            ],\n            [\n              30.659865,\n              -22.151567\n            ],\n            [\n              31.191409,\n              -22.25151\n            ],\n            [\n              31.670398,\n              -23.658969\n            ],\n            [\n              31.930589,\n              -24.369417\n            ],\n            [\n              31.752408,\n              -25.484284\n            ],\n            [\n              31.837778,\n              -25.843332\n            ],\n            [\n              31.333158,\n              -25.660191\n            ],\n            [\n              31.04408,\n              -25.731452\n            ],\n            [\n              30.949667,\n              -26.022649\n            ],\n            [\n              30.676609,\n              -26.398078\n            ],\n            [\n              30.685962,\n              -26.743845\n            ],\n            [\n              31.282773,\n              -27.285879\n            ],\n            [\n              31.86806,\n              -27.177927\n            ],\n            [\n              32.071665,\n              -26.73382\n            ],\n            [\n              32.83012,\n              -26.742192\n            ],\n            [\n              32.580265,\n              -27.470158\n            ],\n            [\n              32.462133,\n              -28.301011\n            ],\n            [\n              32.203389,\n              -28.752405\n            ],\n            [\n              31.521001,\n              -29.257387\n            ]\n          ],\n          [\n            [\n              28.978263,\n              -28.955597\n            ],\n            [\n              28.5417,\n              -28.647502\n            ],\n            [\n              28.074338,\n              -28.851469\n            ],\n            [\n              27.532511,\n              -29.242711\n            ],\n            [\n              26.999262,\n              -29.875954\n            ],\n            [\n              27.749397,\n              -30.645106\n            ],\n            [\n              28.107205,\n              -30.545732\n            ],\n            [\n              28.291069,\n              -30.226217\n            ],\n            [\n              28.8484,\n              -30.070051\n            ],\n            [\n              29.018415,\n              -29.743766\n            ],\n            [\n              29.325166,\n              -29.257387\n            ],\n            [\n              28.978263,\n              -28.955597\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ZMB.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ZMB\",\"properties\":{\"name\":\"Zambia\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[32.759375,-9.230599],[33.231388,-9.676722],[33.485688,-10.525559],[33.31531,-10.79655],[33.114289,-11.607198],[33.306422,-12.435778],[32.991764,-12.783871],[32.688165,-13.712858],[33.214025,-13.97186],[30.179481,-14.796099],[30.274256,-15.507787],[29.516834,-15.644678],[28.947463,-16.043051],[28.825869,-16.389749],[28.467906,-16.4684],[27.598243,-17.290831],[27.044427,-17.938026],[26.706773,-17.961229],[26.381935,-17.846042],[25.264226,-17.73654],[25.084443,-17.661816],[25.07695,-17.578823],[24.682349,-17.353411],[24.033862,-17.295843],[23.215048,-17.523116],[22.562478,-16.898451],[21.887843,-16.08031],[21.933886,-12.898437],[24.016137,-12.911046],[23.930922,-12.565848],[24.079905,-12.191297],[23.904154,-11.722282],[24.017894,-11.237298],[23.912215,-10.926826],[24.257155,-10.951993],[24.314516,-11.262826],[24.78317,-11.238694],[25.418118,-11.330936],[25.75231,-11.784965],[26.553088,-11.92444],[27.16442,-11.608748],[27.388799,-12.132747],[28.155109,-12.272481],[28.523562,-12.698604],[28.934286,-13.248958],[29.699614,-13.257227],[29.616001,-12.178895],[29.341548,-12.360744],[28.642417,-11.971569],[28.372253,-11.793647],[28.49607,-10.789884],[28.673682,-9.605925],[28.449871,-9.164918],[28.734867,-8.526559],[29.002912,-8.407032],[30.346086,-8.238257],[30.740015,-8.340007],[31.157751,-8.594579],[31.556348,-8.762049],[32.191865,-8.930359],[32.759375,-9.230599]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ZMB_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -16.63619188\n            ],\n            [\n              16.875,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              16.875,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              16.875,\n              -21.94304553\n            ],\n            [\n              16.875,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              16.875,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -5.61598582\n            ],\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              22.5,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -5.61598582\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              28.125,\n              -11.17840187\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              32.759375,\n              -9.230599\n            ],\n            [\n              33.231388,\n              -9.676722\n            ],\n            [\n              33.485688,\n              -10.525559\n            ],\n            [\n              33.31531,\n              -10.79655\n            ],\n            [\n              33.114289,\n              -11.607198\n            ],\n            [\n              33.306422,\n              -12.435778\n            ],\n            [\n              32.991764,\n              -12.783871\n            ],\n            [\n              32.688165,\n              -13.712858\n            ],\n            [\n              33.214025,\n              -13.97186\n            ],\n            [\n              30.179481,\n              -14.796099\n            ],\n            [\n              30.274256,\n              -15.507787\n            ],\n            [\n              29.516834,\n              -15.644678\n            ],\n            [\n              28.947463,\n              -16.043051\n            ],\n            [\n              28.825869,\n              -16.389749\n            ],\n            [\n              28.467906,\n              -16.4684\n            ],\n            [\n              27.598243,\n              -17.290831\n            ],\n            [\n              27.044427,\n              -17.938026\n            ],\n            [\n              26.706773,\n              -17.961229\n            ],\n            [\n              26.381935,\n              -17.846042\n            ],\n            [\n              25.264226,\n              -17.73654\n            ],\n            [\n              25.084443,\n              -17.661816\n            ],\n            [\n              25.07695,\n              -17.578823\n            ],\n            [\n              24.682349,\n              -17.353411\n            ],\n            [\n              24.033862,\n              -17.295843\n            ],\n            [\n              23.215048,\n              -17.523116\n            ],\n            [\n              22.562478,\n              -16.898451\n            ],\n            [\n              21.887843,\n              -16.08031\n            ],\n            [\n              21.933886,\n              -12.898437\n            ],\n            [\n              24.016137,\n              -12.911046\n            ],\n            [\n              23.930922,\n              -12.565848\n            ],\n            [\n              24.079905,\n              -12.191297\n            ],\n            [\n              23.904154,\n              -11.722282\n            ],\n            [\n              24.017894,\n              -11.237298\n            ],\n            [\n              23.912215,\n              -10.926826\n            ],\n            [\n              24.257155,\n              -10.951993\n            ],\n            [\n              24.314516,\n              -11.262826\n            ],\n            [\n              24.78317,\n              -11.238694\n            ],\n            [\n              25.418118,\n              -11.330936\n            ],\n            [\n              25.75231,\n              -11.784965\n            ],\n            [\n              26.553088,\n              -11.92444\n            ],\n            [\n              27.16442,\n              -11.608748\n            ],\n            [\n              27.388799,\n              -12.132747\n            ],\n            [\n              28.155109,\n              -12.272481\n            ],\n            [\n              28.523562,\n              -12.698604\n            ],\n            [\n              28.934286,\n              -13.248958\n            ],\n            [\n              29.699614,\n              -13.257227\n            ],\n            [\n              29.616001,\n              -12.178895\n            ],\n            [\n              29.341548,\n              -12.360744\n            ],\n            [\n              28.642417,\n              -11.971569\n            ],\n            [\n              28.372253,\n              -11.793647\n            ],\n            [\n              28.49607,\n              -10.789884\n            ],\n            [\n              28.673682,\n              -9.605925\n            ],\n            [\n              28.449871,\n              -9.164918\n            ],\n            [\n              28.734867,\n              -8.526559\n            ],\n            [\n              29.002912,\n              -8.407032\n            ],\n            [\n              30.346086,\n              -8.238257\n            ],\n            [\n              30.740015,\n              -8.340007\n            ],\n            [\n              31.157751,\n              -8.594579\n            ],\n            [\n              31.556348,\n              -8.762049\n            ],\n            [\n              32.191865,\n              -8.930359\n            ],\n            [\n              32.759375,\n              -9.230599\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world/ZWE.geo.json",
    "content": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"ZWE\",\"properties\":{\"name\":\"Zimbabwe\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[31.191409,-22.25151],[30.659865,-22.151567],[30.322883,-22.271612],[29.839037,-22.102216],[29.432188,-22.091313],[28.794656,-21.639454],[28.02137,-21.485975],[27.727228,-20.851802],[27.724747,-20.499059],[27.296505,-20.39152],[26.164791,-19.293086],[25.850391,-18.714413],[25.649163,-18.536026],[25.264226,-17.73654],[26.381935,-17.846042],[26.706773,-17.961229],[27.044427,-17.938026],[27.598243,-17.290831],[28.467906,-16.4684],[28.825869,-16.389749],[28.947463,-16.043051],[29.516834,-15.644678],[30.274256,-15.507787],[30.338955,-15.880839],[31.173064,-15.860944],[31.636498,-16.07199],[31.852041,-16.319417],[32.328239,-16.392074],[32.847639,-16.713398],[32.849861,-17.979057],[32.654886,-18.67209],[32.611994,-19.419383],[32.772708,-19.715592],[32.659743,-20.30429],[32.508693,-20.395292],[32.244988,-21.116489],[31.191409,-22.25151]]]}}\n]}\n"
  },
  {
    "path": "test/fixtures/world/ZWE_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              22.5,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              22.5,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -11.17840187\n            ],\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              28.125,\n              -16.63619188\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              28.125,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -16.63619188\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              28.125,\n              -21.94304553\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              28.125,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -21.94304553\n            ],\n            [\n              33.75,\n              -27.05912578\n            ],\n            [\n              28.125,\n              -27.05912578\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              31.191409,\n              -22.25151\n            ],\n            [\n              30.659865,\n              -22.151567\n            ],\n            [\n              30.322883,\n              -22.271612\n            ],\n            [\n              29.839037,\n              -22.102216\n            ],\n            [\n              29.432188,\n              -22.091313\n            ],\n            [\n              28.794656,\n              -21.639454\n            ],\n            [\n              28.02137,\n              -21.485975\n            ],\n            [\n              27.727228,\n              -20.851802\n            ],\n            [\n              27.724747,\n              -20.499059\n            ],\n            [\n              27.296505,\n              -20.39152\n            ],\n            [\n              26.164791,\n              -19.293086\n            ],\n            [\n              25.850391,\n              -18.714413\n            ],\n            [\n              25.649163,\n              -18.536026\n            ],\n            [\n              25.264226,\n              -17.73654\n            ],\n            [\n              26.381935,\n              -17.846042\n            ],\n            [\n              26.706773,\n              -17.961229\n            ],\n            [\n              27.044427,\n              -17.938026\n            ],\n            [\n              27.598243,\n              -17.290831\n            ],\n            [\n              28.467906,\n              -16.4684\n            ],\n            [\n              28.825869,\n              -16.389749\n            ],\n            [\n              28.947463,\n              -16.043051\n            ],\n            [\n              29.516834,\n              -15.644678\n            ],\n            [\n              30.274256,\n              -15.507787\n            ],\n            [\n              30.338955,\n              -15.880839\n            ],\n            [\n              31.173064,\n              -15.860944\n            ],\n            [\n              31.636498,\n              -16.07199\n            ],\n            [\n              31.852041,\n              -16.319417\n            ],\n            [\n              32.328239,\n              -16.392074\n            ],\n            [\n              32.847639,\n              -16.713398\n            ],\n            [\n              32.849861,\n              -17.979057\n            ],\n            [\n              32.654886,\n              -18.67209\n            ],\n            [\n              32.611994,\n              -19.419383\n            ],\n            [\n              32.772708,\n              -19.715592\n            ],\n            [\n              32.659743,\n              -20.30429\n            ],\n            [\n              32.508693,\n              -20.395292\n            ],\n            [\n              32.244988,\n              -21.116489\n            ],\n            [\n              31.191409,\n              -22.25151\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/fixtures/world.geojson",
    "content": "{\n\"type\": \"FeatureCollection\",\n                                                                                \n\"features\": [\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Afghanistan\", \"sov_a3\": \"AFG\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Afghanistan\", \"adm0_a3\": \"AFG\", \"geou_dif\": 0.000000, \"geounit\": \"Afghanistan\", \"gu_a3\": \"AFG\", \"su_dif\": 0.000000, \"subunit\": \"Afghanistan\", \"su_a3\": \"AFG\", \"brk_diff\": 0.000000, \"name\": \"Afghanistan\", \"name_long\": \"Afghanistan\", \"brk_a3\": \"AFG\", \"brk_name\": \"Afghanistan\", \"brk_group\": null, \"abbrev\": \"Afg.\", \"postal\": \"AF\", \"formal_en\": \"Islamic State of Afghanistan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Afghanistan\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 8.000000, \"mapcolor13\": 7.000000, \"pop_est\": 28400000.000000, \"gdp_md_est\": 22270.000000, \"pop_year\": -99.000000, \"lastcensus\": 1979.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AF\", \"iso_a3\": \"AFG\", \"iso_n3\": \"004\", \"un_a3\": \"004\", \"wb_a2\": \"AF\", \"wb_a3\": \"AFG\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"AFG\", \"adm0_a3_us\": \"AFG\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Southern Asia\", \"region_wb\": \"South Asia\", \"name_len\": 11.000000, \"long_len\": 11.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 61.210817091725744, 35.650072333309225 ], [ 62.230651483005886, 35.270663967422294 ], [ 62.98466230657661, 35.404040839167621 ], [ 63.193538445900352, 35.857165635718914 ], [ 63.98289594915871, 36.007957465146603 ], [ 64.546479119733903, 36.312073269184268 ], [ 64.746105177677407, 37.111817735333304 ], [ 65.588947788357842, 37.305216783185642 ], [ 65.745630731066825, 37.661164048812068 ], [ 66.217384881459338, 37.39379018813392 ], [ 66.51860680528867, 37.362784328758792 ], [ 67.075782098259623, 37.356143907209287 ], [ 67.829999627559516, 37.144994004864685 ], [ 68.135562371701383, 37.023115139304309 ], [ 68.859445835245936, 37.344335842430596 ], [ 69.196272820924378, 37.151143500307427 ], [ 69.518785434857961, 37.60899669041342 ], [ 70.116578403610333, 37.588222764632093 ], [ 70.270574171840138, 37.735164699854025 ], [ 70.376304152309302, 38.138395901027522 ], [ 70.806820509732887, 38.486281643216415 ], [ 71.348131137990265, 38.258905341132163 ], [ 71.239403924448169, 37.953265082341886 ], [ 71.541917759084782, 37.905774441065645 ], [ 71.448693475230243, 37.06564484308052 ], [ 71.844638299450594, 36.738171291646921 ], [ 72.193040805962397, 36.948287665345674 ], [ 72.636889682917285, 37.047558091778356 ], [ 73.260055779925011, 37.495256862939002 ], [ 73.9486959166465, 37.4215662704908 ], [ 74.980002475895418, 37.419990139305895 ], [ 75.158027785140916, 37.133030910789117 ], [ 74.575892775372978, 37.020841376283457 ], [ 74.067551710917826, 36.836175645488453 ], [ 72.920024855444467, 36.720007025696319 ], [ 71.846291945283923, 36.509942328429858 ], [ 71.26234826038575, 36.074387518857804 ], [ 71.498767938121091, 35.650563259416003 ], [ 71.613076206350712, 35.153203436822864 ], [ 71.115018751921639, 34.733125718722235 ], [ 71.156773309213463, 34.348911444632151 ], [ 70.881803012988399, 33.98885590263852 ], [ 69.930543247359594, 34.02012014417511 ], [ 70.323594191371598, 33.358532619758392 ], [ 69.687147251264861, 33.105498969041236 ], [ 69.262522007122556, 32.5019440780883 ], [ 69.317764113242561, 31.901412258424443 ], [ 68.926676873657669, 31.620189113892067 ], [ 68.556932000609322, 31.713310044882018 ], [ 67.792689243444784, 31.582930406209631 ], [ 67.683393589147471, 31.303154201781421 ], [ 66.938891229118468, 31.304911200479353 ], [ 66.381457553986024, 30.738899237586452 ], [ 66.346472609324422, 29.887943427036177 ], [ 65.046862013616106, 29.472180691031905 ], [ 64.350418735618518, 29.560030625928093 ], [ 64.148002150331251, 29.340819200145972 ], [ 63.550260858011171, 29.468330796826166 ], [ 62.549856805272782, 29.318572496044311 ], [ 60.874248488208792, 29.829238999952608 ], [ 61.781221551363444, 30.735850328081238 ], [ 61.699314406180832, 31.379506130492672 ], [ 60.941944614511129, 31.548074652628753 ], [ 60.863654819588966, 32.182919623334428 ], [ 60.536077915290775, 32.981268825811568 ], [ 60.963700392506006, 33.528832302376259 ], [ 60.528429803311582, 33.676446031218006 ], [ 60.803193393807447, 34.404101874319863 ], [ 61.210817091725744, 35.650072333309225 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Angola\", \"sov_a3\": \"AGO\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Angola\", \"adm0_a3\": \"AGO\", \"geou_dif\": 0.000000, \"geounit\": \"Angola\", \"gu_a3\": \"AGO\", \"su_dif\": 0.000000, \"subunit\": \"Angola\", \"su_a3\": \"AGO\", \"brk_diff\": 0.000000, \"name\": \"Angola\", \"name_long\": \"Angola\", \"brk_a3\": \"AGO\", \"brk_name\": \"Angola\", \"brk_group\": null, \"abbrev\": \"Ang.\", \"postal\": \"AO\", \"formal_en\": \"People's Republic of Angola\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Angola\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 1.000000, \"pop_est\": 12799293.000000, \"gdp_md_est\": 110300.000000, \"pop_year\": -99.000000, \"lastcensus\": 1970.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AO\", \"iso_a3\": \"AGO\", \"iso_n3\": \"024\", \"un_a3\": \"024\", \"wb_a2\": \"AO\", \"wb_a3\": \"AGO\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"AGO\", \"adm0_a3_us\": \"AGO\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Middle Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 16.326528354567046, -5.877470391466218 ], [ 16.573179965896145, -6.622644545115094 ], [ 16.86019087084523, -7.222297865429979 ], [ 17.089995965247169, -7.545688978712477 ], [ 17.472970004962292, -8.068551120641658 ], [ 18.134221632569052, -7.987677504104866 ], [ 18.464175652752687, -7.847014255406478 ], [ 19.016751743249671, -7.98824594486014 ], [ 19.166613396896082, -7.738183688999726 ], [ 19.417502475673217, -7.155428562044278 ], [ 20.037723016040218, -7.11636117923166 ], [ 20.09162153492062, -6.943090101756951 ], [ 20.601822950938327, -6.939317722199689 ], [ 20.51474816252653, -7.299605808138665 ], [ 21.728110792739756, -7.290872491081316 ], [ 21.746455926203367, -7.920084730667114 ], [ 21.94913089365204, -8.305900974158305 ], [ 21.801801385187957, -8.908706556842986 ], [ 21.875181919042404, -9.523707777548566 ], [ 22.208753289486424, -9.89479623783653 ], [ 22.155268182064333, -11.084801120653779 ], [ 22.402798292742432, -10.993075453335692 ], [ 22.837345411884769, -11.017621758674338 ], [ 23.456790805767469, -10.867863457892483 ], [ 23.912215203555746, -10.926826267137542 ], [ 24.017893507592618, -11.237298272347118 ], [ 23.904153680118242, -11.722281589406336 ], [ 24.079905226342902, -12.191296888887308 ], [ 23.930922072045377, -12.565847670138822 ], [ 24.016136508894704, -12.911046237848552 ], [ 21.933886346125945, -12.898437188369357 ], [ 21.887842644953878, -16.080310153876894 ], [ 22.56247846852429, -16.898451429921835 ], [ 23.215048455506093, -17.523116143465955 ], [ 21.377176141045595, -17.93063648851971 ], [ 18.956186964603631, -17.789094740472237 ], [ 18.263309360434221, -17.309950860262006 ], [ 14.209706658595053, -17.353100681225712 ], [ 14.058501417709039, -17.423380629142656 ], [ 13.462362094789967, -16.971211846588744 ], [ 12.814081251688407, -16.941342868724078 ], [ 12.215461460019384, -17.111668389558062 ], [ 11.73419884608515, -17.301889336824502 ], [ 11.640096062881611, -16.673142185129208 ], [ 11.778537224991567, -15.793816013250691 ], [ 12.123580763404448, -14.878316338767931 ], [ 12.175618930722266, -14.449143568583892 ], [ 12.500095249083017, -13.547699883684402 ], [ 12.738478631245442, -13.137905775609937 ], [ 13.312913852601838, -12.483630466362513 ], [ 13.633721144269828, -12.038644707897191 ], [ 13.738727654686926, -11.297863050993143 ], [ 13.686379428775297, -10.731075941615842 ], [ 13.387327915102162, -10.373578383020728 ], [ 13.120987583069876, -9.766897067914115 ], [ 12.875369500386569, -9.166933689005489 ], [ 12.929061313537801, -8.959091078327575 ], [ 13.236432732809874, -8.562629489784342 ], [ 12.933040398824318, -7.596538588087753 ], [ 12.72829837408392, -6.927122084178805 ], [ 12.227347039446443, -6.294447523629373 ], [ 12.322431674863566, -6.100092461779653 ], [ 12.735171339578699, -5.965682061388478 ], [ 13.02486941900699, -5.984388929878108 ], [ 13.375597364971895, -5.864241224799557 ], [ 16.326528354567046, -5.877470391466218 ] ] ], [ [ [ 12.436688266660923, -5.684303887559224 ], [ 12.182336866920281, -5.789930515163803 ], [ 11.914963006242118, -5.037986748884734 ], [ 12.318607618873926, -4.606230157086159 ], [ 12.62075971848455, -4.438023369976122 ], [ 12.995517205465205, -4.781103203961919 ], [ 12.631611769265845, -4.991271254092936 ], [ 12.468004184629763, -5.248361504744992 ], [ 12.436688266660923, -5.684303887559224 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Albania\", \"sov_a3\": \"ALB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Albania\", \"adm0_a3\": \"ALB\", \"geou_dif\": 0.000000, \"geounit\": \"Albania\", \"gu_a3\": \"ALB\", \"su_dif\": 0.000000, \"subunit\": \"Albania\", \"su_a3\": \"ALB\", \"brk_diff\": 0.000000, \"name\": \"Albania\", \"name_long\": \"Albania\", \"brk_a3\": \"ALB\", \"brk_name\": \"Albania\", \"brk_group\": null, \"abbrev\": \"Alb.\", \"postal\": \"AL\", \"formal_en\": \"Republic of Albania\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Albania\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 6.000000, \"pop_est\": 3639453.000000, \"gdp_md_est\": 21810.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AL\", \"iso_a3\": \"ALB\", \"iso_n3\": \"008\", \"un_a3\": \"008\", \"wb_a2\": \"AL\", \"wb_a3\": \"ALB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ALB\", \"adm0_a3_us\": \"ALB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 20.59024743010491, 41.855404161133606 ], [ 20.463175083099202, 41.51508901627534 ], [ 20.605181919037364, 41.086226304685226 ], [ 21.020040317476401, 40.84272695572588 ], [ 20.999989861747224, 40.580003973953978 ], [ 20.674996779063633, 40.434999904943027 ], [ 20.615000441172754, 40.110006822259379 ], [ 20.15001590341052, 39.624997666983973 ], [ 19.980000441170148, 39.694993394523408 ], [ 19.960001661873207, 39.915005805006047 ], [ 19.406081984136733, 40.250773423822466 ], [ 19.319058872157143, 40.727230129553561 ], [ 19.403549838954291, 41.409565741535459 ], [ 19.540027296637106, 41.719986070312757 ], [ 19.371768833094961, 41.877547512370654 ], [ 19.304486118250793, 42.19574514420782 ], [ 19.738051385179631, 42.688247382165571 ], [ 19.801613396898688, 42.500093492190842 ], [ 20.0707, 42.58863 ], [ 20.283754510181893, 42.320259507815081 ], [ 20.52295, 42.21787 ], [ 20.59024743010491, 41.855404161133606 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"United Arab Emirates\", \"sov_a3\": \"ARE\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"United Arab Emirates\", \"adm0_a3\": \"ARE\", \"geou_dif\": 0.000000, \"geounit\": \"United Arab Emirates\", \"gu_a3\": \"ARE\", \"su_dif\": 0.000000, \"subunit\": \"United Arab Emirates\", \"su_a3\": \"ARE\", \"brk_diff\": 0.000000, \"name\": \"United Arab Emirates\", \"name_long\": \"United Arab Emirates\", \"brk_a3\": \"ARE\", \"brk_name\": \"United Arab Emirates\", \"brk_group\": null, \"abbrev\": \"U.A.E.\", \"postal\": \"AE\", \"formal_en\": \"United Arab Emirates\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"United Arab Emirates\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 3.000000, \"pop_est\": 4798491.000000, \"gdp_md_est\": 184300.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AE\", \"iso_a3\": \"ARE\", \"iso_n3\": \"784\", \"un_a3\": \"784\", \"wb_a2\": \"AE\", \"wb_a3\": \"ARE\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ARE\", \"adm0_a3_us\": \"ARE\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 20.000000, \"long_len\": 20.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 51.579518670463273, 24.245497137951105 ], [ 51.757440626844186, 24.294072984305469 ], [ 51.794389275932872, 24.019826158132506 ], [ 52.577080519425607, 24.177439276622707 ], [ 53.404006788960146, 24.15131684009917 ], [ 54.008000929587581, 24.121757920828216 ], [ 54.693023716048629, 24.797892360935091 ], [ 55.43902469261414, 25.439145209244941 ], [ 56.070820753814559, 26.055464178973981 ], [ 56.261041701080956, 25.714606431576769 ], [ 56.396847365144005, 24.924732163995486 ], [ 55.886232537668008, 24.920830593357447 ], [ 55.804118686756226, 24.269604193615265 ], [ 55.981213820220461, 24.130542914317829 ], [ 55.528631626208238, 23.933604030853502 ], [ 55.525841098864475, 23.524869289640932 ], [ 55.234489373602884, 23.110992743415324 ], [ 55.208341098863194, 22.708329982997046 ], [ 55.006803012924905, 22.496947536707136 ], [ 52.000733270074335, 23.00115448657894 ], [ 51.617707553926977, 24.014219265228832 ], [ 51.579518670463273, 24.245497137951105 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Argentina\", \"sov_a3\": \"ARG\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Argentina\", \"adm0_a3\": \"ARG\", \"geou_dif\": 0.000000, \"geounit\": \"Argentina\", \"gu_a3\": \"ARG\", \"su_dif\": 0.000000, \"subunit\": \"Argentina\", \"su_a3\": \"ARG\", \"brk_diff\": 0.000000, \"name\": \"Argentina\", \"name_long\": \"Argentina\", \"brk_a3\": \"ARG\", \"brk_name\": \"Argentina\", \"brk_group\": null, \"abbrev\": \"Arg.\", \"postal\": \"AR\", \"formal_en\": \"Argentine Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Argentina\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 13.000000, \"pop_est\": 40913584.000000, \"gdp_md_est\": 573900.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AR\", \"iso_a3\": \"ARG\", \"iso_n3\": \"032\", \"un_a3\": \"032\", \"wb_a2\": \"AR\", \"wb_a3\": \"ARG\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ARG\", \"adm0_a3_us\": \"ARG\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -65.5, -55.2 ], [ -66.45, -55.25 ], [ -66.95992, -54.89681 ], [ -67.56244, -54.87001 ], [ -68.63335, -54.8695 ], [ -68.634010227583161, -52.63637045887446 ], [ -68.25, -53.1 ], [ -67.75, -53.85 ], [ -66.45, -54.45 ], [ -65.05, -54.7 ], [ -65.5, -55.2 ] ] ], [ [ [ -64.964892137294584, -22.075861504812352 ], [ -64.377021043542271, -22.798091322523547 ], [ -63.986838141522469, -21.993644301035957 ], [ -62.846468471921554, -22.034985446869456 ], [ -62.6850571356579, -22.249029229422405 ], [ -60.84656470400995, -23.880712579038303 ], [ -60.028966030503994, -24.032796319273245 ], [ -58.807128465394953, -24.771459242453275 ], [ -57.777217169817959, -25.16233977630904 ], [ -57.633660040911138, -25.60365650808167 ], [ -58.618173590719721, -27.123718763947124 ], [ -57.609759690976148, -27.395898532828426 ], [ -56.486701626192996, -27.54849903738625 ], [ -55.6958455063982, -27.387837009390822 ], [ -54.788794928595053, -26.621785577096091 ], [ -54.625290696823555, -25.739255466415486 ], [ -54.130049607954419, -25.54763925547725 ], [ -53.62834896504873, -26.124865004177437 ], [ -53.648735317587892, -26.923472588816111 ], [ -54.490725267135531, -27.47475676850577 ], [ -55.162286342984601, -27.881915378533421 ], [ -56.290899624239103, -28.852760512000856 ], [ -57.625133429582917, -30.216294854454247 ], [ -57.874937303281911, -31.016556084926165 ], [ -58.142440355040748, -32.044503676076189 ], [ -58.132647671121418, -33.040566908502015 ], [ -58.349611172098832, -33.263188978815435 ], [ -58.427074144104381, -33.909454441057548 ], [ -58.495442064026548, -34.431489760070107 ], [ -57.225829637263644, -35.288026625307893 ], [ -57.362358771378751, -35.977390232081504 ], [ -56.737487352105461, -36.413125909166581 ], [ -56.788285285048346, -36.901571547189334 ], [ -57.749156867083428, -38.183870538079915 ], [ -59.231857062401872, -38.720220228837206 ], [ -61.237445237865614, -38.928424574541154 ], [ -62.335956997310149, -38.827707208004369 ], [ -62.125763108962929, -39.424104913084875 ], [ -62.330530971919444, -40.172586358400324 ], [ -62.145994432205242, -40.676896661136738 ], [ -62.745802781816991, -41.028761488612091 ], [ -63.770494757732536, -41.166789239263665 ], [ -64.732089809819712, -40.802677097335135 ], [ -65.118035244391592, -41.064314874028881 ], [ -64.978560553635845, -42.058000990569326 ], [ -64.30340796574248, -42.359016208669502 ], [ -63.75594784204236, -42.043686618824509 ], [ -63.45805904809589, -42.563138116222362 ], [ -64.378803880456303, -42.873558444999645 ], [ -65.181803961839705, -43.495380954767796 ], [ -65.328823411710147, -44.501366062193696 ], [ -65.565268927661606, -45.036785577169795 ], [ -66.509965786389358, -45.03962778094585 ], [ -67.293793911392441, -45.551896254255198 ], [ -67.580546434180093, -46.301772963242541 ], [ -66.597066413017274, -47.033924655953811 ], [ -65.641026577401448, -47.236134535511894 ], [ -65.985088263600744, -48.133289076531142 ], [ -67.166178961847663, -48.697337334996945 ], [ -67.816087612566463, -49.869668877970419 ], [ -68.728745083273168, -50.264218438518867 ], [ -69.138539191347803, -50.732510267947802 ], [ -68.815561489523532, -51.771104011594105 ], [ -68.149994879820412, -52.349983406127706 ], [ -68.571545376241346, -52.299443855346262 ], [ -69.49836218939609, -52.14276091263725 ], [ -71.914803839796349, -52.009022305865926 ], [ -72.329403856074038, -51.425956312872408 ], [ -72.30997351753237, -50.677009779666356 ], [ -72.975746832964631, -50.741450290734313 ], [ -73.328050910114484, -50.378785088909872 ], [ -73.415435757120036, -49.318436374712959 ], [ -72.648247443314943, -48.878618259476788 ], [ -72.331160854771952, -48.244238376661826 ], [ -72.447355312780275, -47.738532810253531 ], [ -71.917258470330211, -46.8848381487918 ], [ -71.552009446891248, -45.560732924177131 ], [ -71.65931555854533, -44.973688653341441 ], [ -71.222778896759735, -44.784242852559416 ], [ -71.329800788036209, -44.407521661151691 ], [ -71.793622606071949, -44.207172133156106 ], [ -71.464056159130507, -43.787611179378331 ], [ -71.915423956983915, -43.408564548517418 ], [ -72.148898078078531, -42.254888197601389 ], [ -71.746803758415467, -42.051386407235995 ], [ -71.915734015577556, -40.832339369470731 ], [ -71.680761277946459, -39.808164157878068 ], [ -71.413516608349056, -38.916022230791114 ], [ -70.814664272734717, -38.552995293940739 ], [ -71.118625047475433, -37.576827487947199 ], [ -71.121880662709799, -36.658123874662337 ], [ -70.364769253201672, -36.005088799789945 ], [ -70.388049485949097, -35.169687595359449 ], [ -69.817309129501467, -34.193571465798286 ], [ -69.814776984319224, -33.273886000299854 ], [ -70.074399380153636, -33.091209812148037 ], [ -70.535068935819453, -31.365010267870289 ], [ -69.919008348251936, -30.336339206668313 ], [ -70.013550381129875, -29.367922865518551 ], [ -69.656130337183157, -28.459141127233693 ], [ -69.001234910748281, -27.521213881136134 ], [ -68.295541551370405, -26.89933969493579 ], [ -68.594799770772681, -26.506908868111267 ], [ -68.386001146097357, -26.185016371365236 ], [ -68.417652960876126, -24.518554782816878 ], [ -67.328442959244143, -24.025303236590915 ], [ -66.985233934177643, -22.986348565362832 ], [ -67.106673550063618, -22.7359245744764 ], [ -66.273339402924847, -21.832310479420684 ], [ -64.964892137294584, -22.075861504812352 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Armenia\", \"sov_a3\": \"ARM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Armenia\", \"adm0_a3\": \"ARM\", \"geou_dif\": 0.000000, \"geounit\": \"Armenia\", \"gu_a3\": \"ARM\", \"su_dif\": 0.000000, \"subunit\": \"Armenia\", \"su_a3\": \"ARM\", \"brk_diff\": 0.000000, \"name\": \"Armenia\", \"name_long\": \"Armenia\", \"brk_a3\": \"ARM\", \"brk_name\": \"Armenia\", \"brk_group\": null, \"abbrev\": \"Arm.\", \"postal\": \"ARM\", \"formal_en\": \"Republic of Armenia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Armenia\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 10.000000, \"pop_est\": 2967004.000000, \"gdp_md_est\": 18770.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AM\", \"iso_a3\": \"ARM\", \"iso_n3\": \"051\", \"un_a3\": \"051\", \"wb_a2\": \"AM\", \"wb_a3\": \"ARM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ARM\", \"adm0_a3_us\": \"ARM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 43.582745802592733, 41.092143256182567 ], [ 44.972480096218078, 41.248128567055595 ], [ 45.179495883979342, 40.985353908851408 ], [ 45.560351189970447, 40.812289537105926 ], [ 45.35917483905817, 40.561503811193461 ], [ 45.891907179555091, 40.218475653639999 ], [ 45.610012241402927, 39.899993801425182 ], [ 46.034534132680676, 39.628020738273065 ], [ 46.483498976432458, 39.464154771475535 ], [ 46.505719842317973, 38.770605373686294 ], [ 46.143623081248819, 38.741201483712217 ], [ 45.735379266143013, 39.319719143219743 ], [ 45.739978468616982, 39.473999131827128 ], [ 45.298144972521463, 39.471751207022436 ], [ 45.001987339056747, 39.740003567049555 ], [ 44.793989699081948, 39.713002631177048 ], [ 44.400008579288702, 40.005000311842281 ], [ 43.656436395040942, 40.253563951166186 ], [ 43.752657911968413, 40.740200914058761 ], [ 43.582745802592733, 41.092143256182567 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Antarctica\", \"sov_a3\": \"ATA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Indeterminate\", \"admin\": \"Antarctica\", \"adm0_a3\": \"ATA\", \"geou_dif\": 0.000000, \"geounit\": \"Antarctica\", \"gu_a3\": \"ATA\", \"su_dif\": 0.000000, \"subunit\": \"Antarctica\", \"su_a3\": \"ATA\", \"brk_diff\": 0.000000, \"name\": \"Antarctica\", \"name_long\": \"Antarctica\", \"brk_a3\": \"ATA\", \"brk_name\": \"Antarctica\", \"brk_group\": null, \"abbrev\": \"Ant.\", \"postal\": \"AQ\", \"formal_en\": null, \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": \"Multiple claims held in abeyance\", \"name_sort\": \"Antarctica\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": -99.000000, \"pop_est\": 3802.000000, \"gdp_md_est\": 760.400000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AQ\", \"iso_a3\": \"ATA\", \"iso_n3\": \"010\", \"un_a3\": \"-099\", \"wb_a2\": \"-99\", \"wb_a3\": \"-99\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ATA\", \"adm0_a3_us\": \"ATA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Antarctica\", \"region_un\": \"Antarctica\", \"subregion\": \"Antarctica\", \"region_wb\": \"Antarctica\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -59.572094692611529, -80.040178725096297 ], [ -59.865849371974718, -80.549656671061854 ], [ -60.1596557277702, -81.000326837079314 ], [ -62.255393439367083, -80.863177585776654 ], [ -64.488125372969762, -80.921933689292558 ], [ -65.741666429289836, -80.588827406739142 ], [ -65.741666429289836, -80.549656671061854 ], [ -66.29003089055513, -80.25577280061799 ], [ -64.037687750897646, -80.294943536295179 ], [ -61.883245612217138, -80.392870375488286 ], [ -61.138975796133451, -79.9813709451481 ], [ -60.610119188058405, -79.628679294756125 ], [ -59.572094692611529, -80.040178725096297 ] ] ], [ [ [ -159.208183560197654, -79.497059421708727 ], [ -161.127601284814659, -79.634208673011301 ], [ -162.439846768218388, -79.281465346187019 ], [ -163.027407803376974, -78.928773695794959 ], [ -163.066604377270323, -78.869965915846763 ], [ -163.712895677728739, -78.595667413241529 ], [ -163.712895677728739, -78.595666605797277 ], [ -163.105800951163815, -78.223337911134294 ], [ -161.245113491846382, -78.380175883140168 ], [ -160.246208055644502, -78.693645121422662 ], [ -159.482404548154477, -79.046337579258989 ], [ -159.208183560197654, -79.497059421708727 ] ] ], [ [ [ -45.154757656421026, -78.047069600586738 ], [ -43.920827806155756, -78.478102722333261 ], [ -43.489949713706096, -79.085559991368456 ], [ -43.372437506674373, -79.516644789547271 ], [ -43.333266770997085, -80.026122735512928 ], [ -44.880536668464288, -80.339643650227714 ], [ -46.506173875502014, -80.594356784994318 ], [ -48.386420864441789, -80.829484551922349 ], [ -50.482106899606464, -81.025441583173119 ], [ -52.851988084511788, -80.966685479657301 ], [ -54.164259406131606, -80.633527520671578 ], [ -53.98799109558405, -80.222028090331406 ], [ -51.8531343247422, -79.947729587726087 ], [ -50.991326463410587, -79.614623305172657 ], [ -50.364594692574741, -79.183486830561634 ], [ -49.914131232286508, -78.811209004886692 ], [ -49.306958991073117, -78.458569030926924 ], [ -48.660616014182523, -78.047017924154446 ], [ -48.660616014182523, -78.047018731598683 ], [ -48.1513964503784, -78.047069600586738 ], [ -46.662856818211026, -77.831475525065031 ], [ -45.154757656421026, -78.047069600586738 ] ] ], [ [ [ -121.211511393857123, -73.500990499006036 ], [ -119.918851278292053, -73.65772511814734 ], [ -118.724143032691913, -73.481353454735199 ], [ -119.292118700011955, -73.834096781559481 ], [ -120.232217163709976, -74.088809916326156 ], [ -121.622829956684257, -74.010468444971607 ], [ -122.621734585441899, -73.657777602023884 ], [ -122.621735392886137, -73.657776794579632 ], [ -122.406244670229029, -73.32461883559391 ], [ -121.211511393857123, -73.500990499006036 ] ] ], [ [ [ -125.559566406895314, -73.481353454735199 ], [ -124.031881877266855, -73.873267517236741 ], [ -124.619468750641531, -73.834096781559481 ], [ -125.912180542638907, -73.736118265934095 ], [ -127.28312964568191, -73.461768894340821 ], [ -127.283130453126162, -73.461768086896569 ], [ -126.558471843097209, -73.246225687807168 ], [ -125.559566406895314, -73.481353454735199 ] ] ], [ [ [ -98.981549648823901, -71.933334248999785 ], [ -97.884743211645031, -72.070535176734737 ], [ -96.787936774466232, -71.952971293270707 ], [ -96.200349901091442, -72.521205342752182 ], [ -96.983764614636215, -72.442863871397634 ], [ -98.19808325884685, -72.482034607074922 ], [ -99.432013109112205, -72.442863871397634 ], [ -100.783455166409212, -72.501619974913552 ], [ -101.80186845580134, -72.305662943662782 ], [ -102.330725063876386, -71.894164320766848 ], [ -102.330725063876386, -71.89416351332261 ], [ -101.703967454824436, -71.717791849910384 ], [ -100.4309185453141, -71.854992777645322 ], [ -98.981549648823901, -71.933334248999785 ] ] ], [ [ [ -68.451345994730417, -70.955822855766741 ], [ -68.333833787698694, -71.406493021784186 ], [ -68.510127936462425, -71.798407084285728 ], [ -68.784297247986984, -72.170735778948625 ], [ -69.959470994736421, -72.307885030251299 ], [ -71.075888637970138, -72.50384206150207 ], [ -72.388134121373781, -72.484256693663426 ], [ -71.898499925408288, -72.092342631161884 ], [ -73.073621995725432, -72.229491882464544 ], [ -74.190039638959064, -72.366692810199496 ], [ -74.953894822881381, -72.07275726332324 ], [ -75.01262508818121, -71.661257832983068 ], [ -73.915818651002326, -71.269344577925779 ], [ -73.915818651002326, -71.269343770481527 ], [ -73.230330776650561, -71.151779887017511 ], [ -72.074716559523551, -71.190950622694771 ], [ -71.780961880160362, -70.681472676729129 ], [ -71.72217993842844, -70.30919565849851 ], [ -71.741791144483187, -69.505782165656797 ], [ -71.173815477163146, -69.035474955368414 ], [ -70.253251512315728, -68.878740336227196 ], [ -69.72444658067306, -69.251017354457815 ], [ -69.489422166609586, -69.623346049120727 ], [ -69.058518235943808, -70.074016215138187 ], [ -68.725541144471066, -70.505152689749281 ], [ -68.451345994730417, -70.955822855766741 ] ] ], [ [ [ -58.614142829000912, -64.152467130133147 ], [ -59.045072597882864, -64.368009529222633 ], [ -59.789342413966551, -64.211223233649051 ], [ -60.611927863188697, -64.309201749274436 ], [ -61.297415737540376, -64.544329516202566 ], [ -62.022100185785433, -64.799094327401363 ], [ -62.511760219966902, -65.093029874277519 ], [ -62.648857794837369, -65.484942321890657 ], [ -62.590127529537739, -65.857219340121361 ], [ -62.120078701410705, -66.190325622674706 ], [ -62.805566575762384, -66.425505066034958 ], [ -63.745690070232371, -66.503846537389592 ], [ -64.294106207929957, -66.837004496375215 ], [ -64.881693081304633, -67.150473734657723 ], [ -65.508424852140564, -67.581610209268916 ], [ -65.665081956633287, -67.95388722749945 ], [ -65.31254533553809, -68.365334981407415 ], [ -64.783714565679333, -68.678907572554493 ], [ -63.961103278241097, -68.913983663050175 ], [ -63.197299770751044, -69.227556254197253 ], [ -62.78595536970775, -69.619418640266503 ], [ -62.570516323482906, -69.991747334929499 ], [ -62.276735805903542, -70.383661397431041 ], [ -61.806661139560589, -70.716767679984471 ], [ -61.512906460197399, -71.089044698215076 ], [ -61.375808885327132, -72.010073750953126 ], [ -61.081976691315532, -72.38235076918383 ], [ -61.003661058177187, -72.774264831685372 ], [ -60.69026933454316, -73.166178894187084 ], [ -60.827366909413428, -73.695242207991186 ], [ -61.375808885327132, -74.106741638331371 ], [ -61.96336992048569, -74.439847920884887 ], [ -63.295200771727963, -74.576997172187376 ], [ -63.745690070232371, -74.929740499011729 ], [ -64.352836473229587, -75.262846781565159 ], [ -65.860987311451765, -75.635123799795778 ], [ -67.192818162694124, -75.791910095369445 ], [ -68.446281704365759, -76.007452494458761 ], [ -69.797723761662837, -76.222994893548176 ], [ -70.600723843046239, -76.634494323888447 ], [ -72.206775682245365, -76.673665059565721 ], [ -73.969536302369676, -76.634494323888447 ], [ -75.555976935514025, -76.712887471675202 ], [ -77.240370246067613, -76.712887471675202 ], [ -76.926978522433586, -77.104801534176744 ], [ -75.399293992804928, -77.281069844724385 ], [ -74.28287634957141, -77.555420023761812 ], [ -73.656118740519446, -77.908111674153957 ], [ -74.772536383753078, -78.221632588868673 ], [ -76.496100429984011, -78.123654073243287 ], [ -77.925858120419264, -78.378418884442254 ], [ -77.984665900367474, -78.789918314782341 ], [ -78.02378495961247, -79.18183318472822 ], [ -76.848637051079123, -79.51493946728165 ], [ -76.633223843070397, -79.887216485512269 ], [ -75.360097418911749, -80.259545180175252 ], [ -73.244851854124619, -80.416331475748763 ], [ -71.442946336539222, -80.690629978353982 ], [ -70.013162807887767, -81.004150893068783 ], [ -68.191646084247537, -81.317671807783569 ], [ -65.704278530526665, -81.47445810335725 ], [ -63.256030036050703, -81.748756605962484 ], [ -61.55202551944231, -82.042692152838541 ], [ -59.691415574773458, -82.375850111824349 ], [ -58.712121344626212, -82.846105645680353 ], [ -58.222487148660917, -83.21843434034335 ], [ -57.008116828017819, -82.865691013519083 ], [ -55.362894253141548, -82.571755466642827 ], [ -53.619770677288244, -82.258234551928041 ], [ -51.543644171746024, -82.003521417161352 ], [ -49.761349860215461, -81.729171238123755 ], [ -47.27393063006221, -81.709585870285295 ], [ -44.825707973802508, -81.84673512158777 ], [ -42.808363409992381, -82.081914564948107 ], [ -42.162020433101787, -81.650829766769291 ], [ -40.771433478343596, -81.356894219893221 ], [ -38.244817674297053, -81.337308852054591 ], [ -36.266669684380219, -81.121714776532983 ], [ -34.386396857224355, -80.906172377443482 ], [ -32.31029618989831, -80.769023126140738 ], [ -30.097097947701997, -80.592651462728696 ], [ -28.549802212018704, -80.337938327962007 ], [ -29.254901292425131, -79.985195001137654 ], [ -29.685805223090966, -79.632503350745679 ], [ -29.685805223090966, -79.260226332514975 ], [ -31.62480831554663, -79.299397068192235 ], [ -33.681323615033961, -79.456131687333453 ], [ -35.639912075328255, -79.456131687333453 ], [ -35.914107225069017, -79.083854669102919 ], [ -35.777009650198721, -78.33924814876498 ], [ -35.326546189910431, -78.123654073243287 ], [ -33.896762661258862, -77.888526306315242 ], [ -32.212369350705302, -77.653450215819575 ], [ -30.99805070649461, -77.359514668943319 ], [ -29.783732062284059, -77.065579122067263 ], [ -28.882779303491361, -76.673665059565721 ], [ -27.511751878355653, -76.497345072585787 ], [ -26.16033565927475, -76.36014414485075 ], [ -25.474821946706868, -76.281802673496287 ], [ -23.927552049239779, -76.242580261386735 ], [ -22.45859778491095, -76.105431010084246 ], [ -21.22469377286177, -75.909473978833475 ], [ -20.010375128651077, -75.67434621190543 ], [ -18.91354285325616, -75.439218444977286 ], [ -17.522981736714172, -75.125697530262499 ], [ -16.641588507544014, -74.792539571276876 ], [ -15.701490851290259, -74.498604024400635 ], [ -15.407710333710867, -74.106741638331371 ], [ -16.465320196996373, -73.871613871403412 ], [ -16.112783575901261, -73.460114441063155 ], [ -15.446855231171952, -73.146541849916076 ], [ -14.408804897508986, -72.950584818665305 ], [ -13.311972622113984, -72.715457051737332 ], [ -12.293507656289563, -72.401936137022545 ], [ -11.510067104528588, -72.010073750953126 ], [ -11.020432908563038, -71.539766540664829 ], [ -10.295774298534155, -71.265416361627302 ], [ -9.101015183946089, -71.324224141575513 ], [ -8.611380987980596, -71.657330424128844 ], [ -7.416621873392415, -71.696501159806033 ], [ -7.377451137715241, -71.324224141575513 ], [ -6.868231573911117, -70.932310079073972 ], [ -5.790984666354774, -71.030288594699272 ], [ -5.53637488445267, -71.402617289362254 ], [ -4.341667446296867, -71.461373392878073 ], [ -3.048981492515594, -71.28505340589814 ], [ -1.795492112627784, -71.167437846001832 ], [ -0.659489101555522, -71.226245625950042 ], [ -0.228636847322065, -71.637745056290299 ], [ 0.868195428072937, -71.304638773736784 ], [ 1.886686232113533, -71.128267110324742 ], [ 3.022637566753417, -70.991117859022069 ], [ 4.139055209987049, -70.853916931287046 ], [ 5.157546014027673, -70.618789164359086 ], [ 6.273911980828927, -70.462054545217796 ], [ 7.135719842160626, -70.246512146128381 ], [ 7.742866245157842, -69.893768819304029 ], [ 8.487110223025326, -70.148533630502996 ], [ 9.525134718472202, -70.011332702768215 ], [ 10.249845004933434, -70.481639913056512 ], [ 10.81782067225339, -70.834331563448501 ], [ 11.953823683325652, -70.63837453219773 ], [ 12.404287143613942, -70.246512146128381 ], [ 13.422777947654396, -69.972161967090955 ], [ 14.734997592842006, -70.030918070606774 ], [ 15.126756626046586, -70.403246765269756 ], [ 15.949342075268646, -70.030918070606774 ], [ 17.02658898282516, -69.913354187142744 ], [ 18.201711053142333, -69.874183451465484 ], [ 19.259372592860046, -69.893768819304029 ], [ 20.375738559661471, -70.011332702768215 ], [ 21.452985467217815, -70.070140482716255 ], [ 21.923034295344735, -70.403246765269756 ], [ 22.569403110451447, -70.697182312145827 ], [ 23.666183709414213, -70.520810648733701 ], [ 24.841357456163593, -70.481639913056512 ], [ 25.977308790803647, -70.481639913056512 ], [ 27.093726434037279, -70.462054545217796 ], [ 28.092580193806867, -70.32485361748293 ], [ 29.150241733524581, -70.207289734018985 ], [ 30.031583286262531, -69.932939554981289 ], [ 30.971732618948607, -69.756619568001454 ], [ 31.990171746556854, -69.658641052376069 ], [ 32.754052768695288, -69.384290873338458 ], [ 33.302443068176757, -68.835642191695712 ], [ 33.8704187354966, -68.50258758557456 ], [ 34.908494907375854, -68.659270528283486 ], [ 35.300202264148226, -69.012013855107938 ], [ 36.162010125479782, -69.247141622035969 ], [ 37.200034620926573, -69.168748474249043 ], [ 37.905107863116797, -69.521440124641202 ], [ 38.649403517416914, -69.776204935840184 ], [ 39.667894321457339, -69.541077168912039 ], [ 40.020430942552565, -69.109940694300946 ], [ 40.921357863129089, -68.933620707321182 ], [ 41.959434035008229, -68.600514424767667 ], [ 42.938702426939102, -68.463313497032715 ], [ 44.113876173688624, -68.267408142214236 ], [ 44.897290887233424, -68.051865743124921 ], [ 45.719928012887834, -67.816737976196777 ], [ 46.503342726432635, -67.601195577107461 ], [ 47.443440382686305, -67.718759460571476 ], [ 48.344418979695121, -67.366067810179416 ], [ 48.990736118369597, -67.091717631141904 ], [ 49.930885451055673, -67.111302998980449 ], [ 50.753470900277733, -66.876175232052404 ], [ 50.949324578663919, -66.523483581660429 ], [ 51.791547072157044, -66.249133402622903 ], [ 52.614132521378934, -66.053176371372132 ], [ 53.613037957580815, -65.89639007579855 ], [ 54.533550245996054, -65.818048604444002 ], [ 55.414943475166211, -65.876804707959906 ], [ 56.355041131419881, -65.974783223585376 ], [ 57.158092889235689, -66.249133402622903 ], [ 57.255968051996462, -66.680218200801633 ], [ 58.137361281166619, -67.013324483355149 ], [ 58.744507684163949, -67.287674662392675 ], [ 59.939318475184251, -67.40523854585669 ], [ 60.605220981697443, -67.679588724894217 ], [ 61.427806430919333, -67.95388722749945 ], [ 62.387489455011661, -68.012695007447547 ], [ 63.190489536395233, -67.816737976196777 ], [ 64.052349074159025, -67.40523854585669 ], [ 64.992446730412922, -67.620729268513713 ], [ 65.971715122343966, -67.738344828410035 ], [ 66.911864455029757, -67.85590871187415 ], [ 67.891132846960915, -67.934301859660806 ], [ 68.890038283162909, -67.934301859660806 ], [ 69.712623732384742, -68.972791442998371 ], [ 69.673452996707482, -69.227556254197253 ], [ 69.555940789675816, -69.678226420214713 ], [ 68.596257765583488, -69.932939554981289 ], [ 67.812739699174159, -70.305268249644286 ], [ 67.949888950476662, -70.697182312145827 ], [ 69.066306593710266, -70.67754526787499 ], [ 68.929157342407763, -71.069459330376532 ], [ 68.41998945503596, -71.441788025039529 ], [ 67.949888950476662, -71.853287455379615 ], [ 68.713769972615154, -72.166808370094415 ], [ 69.869306675093952, -72.264786885719801 ], [ 71.024895054004588, -72.088415222307759 ], [ 71.573285353486057, -71.696501159806033 ], [ 71.906288283174916, -71.324224141575513 ], [ 72.454626906224036, -71.010703226860628 ], [ 73.081410353492089, -70.716767679984471 ], [ 73.336020135394193, -70.364024353160204 ], [ 73.864876743469239, -69.874183451465484 ], [ 74.491556837872707, -69.776204935840184 ], [ 75.627559848944969, -69.73703420016281 ], [ 76.62646528514685, -69.619418640266503 ], [ 77.644904412755267, -69.462684021125298 ], [ 78.13453860872059, -69.070769958623757 ], [ 78.428370802732246, -68.698441263960675 ], [ 79.113858677083925, -68.326215922162433 ], [ 80.093127069014855, -68.071502787395758 ], [ 80.935349562507753, -67.875545756144987 ], [ 81.483791538421457, -67.542387797159265 ], [ 82.05176720574147, -67.366067810179416 ], [ 82.776425815770409, -67.209281514605919 ], [ 83.775331251972403, -67.30726003023122 ], [ 84.676206496116635, -67.209281514605919 ], [ 85.65552656447997, -67.091717631141904 ], [ 86.752358839874859, -67.150473734657723 ], [ 87.477017449903798, -66.876175232052404 ], [ 87.986288690140242, -66.20991099051335 ], [ 88.358410679073955, -66.484261169550862 ], [ 88.828407830768555, -66.95456837983923 ], [ 89.670630324261566, -67.150473734657723 ], [ 90.6303650247863, -67.228866882444464 ], [ 91.590099725310807, -67.111302998980449 ], [ 92.608538852919054, -67.189696146767204 ], [ 93.548636509172951, -67.209281514605919 ], [ 94.175419956441004, -67.111302998980449 ], [ 95.017590773501666, -67.170110778928645 ], [ 95.781471795640272, -67.385653178017975 ], [ 96.682398716216795, -67.248503926715486 ], [ 97.759645623773139, -67.248503926715486 ], [ 98.680209588620556, -67.111302998980449 ], [ 99.718182407635055, -67.248503926715486 ], [ 100.384188267012775, -66.915345967729678 ], [ 100.893356154384691, -66.582239685176248 ], [ 101.578895705168549, -66.307889506138636 ], [ 102.832410923272647, -65.56328379324512 ], [ 103.478676385514774, -65.700484720979972 ], [ 104.242557407653095, -65.974783223585376 ], [ 104.90845991416623, -66.327526550409658 ], [ 106.181560500108759, -66.934931335568393 ], [ 107.160880568472095, -66.95456837983923 ], [ 108.081392856887163, -66.95456837983923 ], [ 109.158639764443677, -66.837004496375215 ], [ 110.235834995567842, -66.699803568640363 ], [ 111.058472121222081, -66.425505066034958 ], [ 111.743959995573931, -66.131569519158887 ], [ 112.860377638807478, -66.092347107049321 ], [ 113.604673293107368, -65.876804707959906 ], [ 114.388088006652055, -66.072761739210677 ], [ 114.897307570456263, -66.386282653925477 ], [ 115.602380812646544, -66.699803568640363 ], [ 116.699161411609424, -66.660632832962989 ], [ 117.384700962393225, -66.915345967729678 ], [ 118.579460076981292, -67.170110778928645 ], [ 119.832923618653098, -67.268089294553945 ], [ 120.870999790532181, -67.189696146767204 ], [ 121.654414504077096, -66.876175232052404 ], [ 122.320368687022352, -66.562654317337689 ], [ 123.221295607598933, -66.484261169550862 ], [ 124.122274204607635, -66.6214620972859 ], [ 125.160247023622247, -66.719388936478907 ], [ 126.10039635630838, -66.562654317337689 ], [ 127.001426629749318, -66.562654317337689 ], [ 127.88276818248724, -66.660632832962989 ], [ 128.803280470902422, -66.75861134858846 ], [ 129.704259067911181, -66.582239685176248 ], [ 130.78145429903546, -66.425505066034958 ], [ 131.799945103075885, -66.386282653925477 ], [ 132.935896437716139, -66.386282653925477 ], [ 133.856460402563386, -66.288304138300091 ], [ 134.757387323139909, -66.209962666945628 ], [ 135.031582472880729, -65.720070088818616 ], [ 135.070753208557818, -65.30857065847843 ], [ 135.697484979393579, -65.582869161083664 ], [ 135.873804966373513, -66.033591003533417 ], [ 136.206704543197787, -66.445090433873673 ], [ 136.61804894424111, -66.778196716427018 ], [ 137.460271437733951, -66.95456837983923 ], [ 138.596222772374148, -66.895760599891133 ], [ 139.908442417561474, -66.876175232052404 ], [ 140.80942101457029, -66.817367452104378 ], [ 142.121692336190193, -66.817367452104378 ], [ 143.061841668876156, -66.797782084265663 ], [ 144.374061314063709, -66.837004496375215 ], [ 145.490427280865021, -66.915345967729678 ], [ 146.195552199487821, -67.228866882444464 ], [ 145.999698521101521, -67.601195577107461 ], [ 146.646067336208233, -67.895131123983703 ], [ 147.723262567332341, -68.130258890911662 ], [ 148.839628534133709, -68.385023702110544 ], [ 150.132314487914897, -68.561292012658186 ], [ 151.483704868779597, -68.718129984663975 ], [ 152.502247349252485, -68.874812927372986 ], [ 153.638198683892568, -68.894501648076101 ], [ 154.28456749899928, -68.561292012658186 ], [ 155.165857375304853, -68.835642191695712 ], [ 155.929790073875466, -69.14921478284279 ], [ 156.811131626613388, -69.384290873338458 ], [ 158.025527785472406, -69.482269388963942 ], [ 159.181012811518741, -69.599833272427958 ], [ 159.670698683916527, -69.991747334929499 ], [ 160.806650018556496, -70.226875101857544 ], [ 161.570479364262809, -70.579618428681812 ], [ 162.686897007496356, -70.736353047823201 ], [ 163.842433709974927, -70.716767679984471 ], [ 164.919680617531213, -70.77552378350029 ], [ 166.11443973211945, -70.755938415661745 ], [ 167.309095493842989, -70.834331563448501 ], [ 168.425616489941177, -70.971480814751061 ], [ 169.46358930895596, -71.206660258111398 ], [ 170.501665480835044, -71.402617289362254 ], [ 171.206790399457617, -71.696501159806033 ], [ 171.089226515993772, -72.088415222307759 ], [ 170.560421584350735, -72.441158549132112 ], [ 170.109958124062388, -72.891828715149387 ], [ 169.757369826535154, -73.244520365541547 ], [ 169.287320998408319, -73.656019795881633 ], [ 167.975101353220765, -73.81280609145513 ], [ 167.387488641629744, -74.16549774184719 ], [ 166.094802687848443, -74.381040140936605 ], [ 165.644390903992445, -74.772954203438147 ], [ 164.958851353208587, -75.145282898101229 ], [ 164.234192743179705, -75.45880381281593 ], [ 163.822796665703919, -75.870303243156201 ], [ 163.568238560234278, -76.242580261386735 ], [ 163.470260044608978, -76.693302103836558 ], [ 163.489897088879758, -77.065579122067263 ], [ 164.057872756199771, -77.457441508136426 ], [ 164.273363478856965, -77.829770202799324 ], [ 164.743463983416149, -78.182513529623776 ], [ 166.60412560451735, -78.319611104494058 ], [ 166.995781284857429, -78.750747579105251 ], [ 165.193875767272033, -78.907483005690693 ], [ 163.666217075859578, -79.123025404780023 ], [ 161.766384719081117, -79.162247816889675 ], [ 160.924162225588333, -79.73048186637098 ], [ 160.747893915040748, -80.200737400227155 ], [ 160.31696414615871, -80.573066094889967 ], [ 159.78821089094842, -80.945394789553049 ], [ 161.120015903974405, -81.278501072106479 ], [ 161.629287144210906, -81.690000502446566 ], [ 162.490991652678048, -82.06227752067727 ], [ 163.705336135104773, -82.395435479662893 ], [ 165.095948928078855, -82.708956394377779 ], [ 166.60412560451735, -83.022477309092579 ], [ 168.895665318067955, -83.335998223807366 ], [ 169.404781529007579, -83.825890801934378 ], [ 172.283933954149376, -84.041433201023708 ], [ 172.477048781624177, -84.117914320815672 ], [ 173.224083286835395, -84.413710219254412 ], [ 175.985671828513119, -84.158997084487638 ], [ 178.277211542064066, -84.472517999202438 ], [ 180.000000000000142, -84.71338 ], [ 180.000000000000142, -90.0 ], [ -179.9999999999, -90.0 ], [ -179.9999999999, -84.71338 ], [ -179.942499356178928, -84.721443373552489 ], [ -179.058677334691197, -84.139411716649093 ], [ -177.256771817105744, -84.452932631363879 ], [ -177.140806673265786, -84.417941227148319 ], [ -176.084672818077593, -84.099259128758419 ], [ -175.947234613627757, -84.110448710216616 ], [ -175.829882168662522, -84.117914320815672 ], [ -174.382502814815695, -84.534323012223567 ], [ -173.116559414745467, -84.117914320815672 ], [ -172.889105598012804, -84.061018568862337 ], [ -169.951222907571434, -83.884646905450126 ], [ -168.999988980158633, -84.117914320815672 ], [ -168.530198534193232, -84.237390232274478 ], [ -167.022099372403318, -84.570496514827909 ], [ -164.182143521155069, -84.825209649594584 ], [ -161.929774543281383, -85.138730564309384 ], [ -158.071379564424944, -85.373910007669707 ], [ -155.192252977499294, -85.09955982863211 ], [ -150.942098965438021, -85.295516859882881 ], [ -148.533072883071497, -85.609037774597667 ], [ -145.888918226332976, -85.31510222772161 ], [ -143.107718478600447, -85.040752048683913 ], [ -142.892279432375631, -84.570496514827909 ], [ -146.829068366463304, -84.531274102718342 ], [ -150.060731574483952, -84.296146335790382 ], [ -150.902928229760732, -83.904232273288841 ], [ -153.586201138300197, -83.688689874199355 ], [ -153.409906989536466, -83.238019708182065 ], [ -153.037759162386408, -82.826520277841809 ], [ -152.665637173452751, -82.454191583178812 ], [ -152.861516690055055, -82.042692152838541 ], [ -154.526298794553895, -81.768393650233321 ], [ -155.290179816692387, -81.415650323409039 ], [ -156.837449714159504, -81.102129408694253 ], [ -154.408786587522229, -81.16093718864245 ], [ -152.097661506132823, -81.004150893068783 ], [ -150.648292609642624, -81.337308852054591 ], [ -148.865998298112061, -81.043373305178335 ], [ -147.220749885019501, -80.671044610515438 ], [ -146.417748996191847, -80.337938327962007 ], [ -146.770286424731182, -79.926438897621921 ], [ -148.062946540296366, -79.652088718584224 ], [ -149.53190080462511, -79.358204848140446 ], [ -151.588416104112412, -79.299397068192235 ], [ -153.390321621697808, -79.162247816889675 ], [ -155.329376390585765, -79.064269301264204 ], [ -155.97566769104418, -78.691939799157041 ], [ -157.268301968393047, -78.378418884442254 ], [ -158.051768358370111, -78.025675557617902 ], [ -158.365134243787963, -76.889207458654951 ], [ -157.875474209606352, -76.987237650712615 ], [ -156.974573127245947, -77.300758565427515 ], [ -155.329376390585765, -77.202728373369752 ], [ -153.742832404576745, -77.065579122067263 ], [ -152.92024695535477, -77.496663920245993 ], [ -151.333780483994303, -77.398737081052801 ], [ -150.001949632751945, -77.183143005531193 ], [ -148.748486091080338, -76.908844502925973 ], [ -147.612483080008076, -76.575738220372529 ], [ -146.104408948989999, -76.477759704747058 ], [ -146.143528008234995, -76.105431010084246 ], [ -146.496091274990476, -75.733153991853541 ], [ -146.202309949967002, -75.380410665029189 ], [ -144.909623996185758, -75.204039001616962 ], [ -144.322037122811082, -75.53719696060277 ], [ -142.794352593182623, -75.341239929352 ], [ -141.638764214271617, -75.086475118152947 ], [ -140.209006523836166, -75.066889750314388 ], [ -138.857590304755348, -74.968911234688917 ], [ -137.506199923890449, -74.733783467760958 ], [ -136.428901339901927, -74.518241068671642 ], [ -135.214582695691291, -74.302698669582142 ], [ -134.431193820362608, -74.361454773097961 ], [ -133.745654269578552, -74.439847920884887 ], [ -132.257167928732059, -74.302698669582142 ], [ -130.925311239273583, -74.47901865656199 ], [ -129.554283814137762, -74.459433288723432 ], [ -128.24203833073426, -74.322284037420701 ], [ -126.890622111653244, -74.420262553046172 ], [ -125.402082479485784, -74.518241068671642 ], [ -124.011495524727607, -74.47901865656199 ], [ -122.562152466453611, -74.498604024400635 ], [ -121.073612834286237, -74.518241068671642 ], [ -119.702559570934227, -74.47901865656199 ], [ -118.684145474097932, -74.185083109685834 ], [ -117.469800991671207, -74.02834849054463 ], [ -116.216311611783411, -74.243890889633946 ], [ -115.021552497195415, -74.06751922622189 ], [ -113.944331427855076, -73.71482757582983 ], [ -113.297988450964482, -74.02834849054463 ], [ -112.94545182986937, -74.381040140936605 ], [ -112.299083014762587, -74.714198099922413 ], [ -111.261058519315625, -74.420262553046172 ], [ -110.066325242943734, -74.792539571276876 ], [ -108.714909023862731, -74.910103454740891 ], [ -107.559346483168113, -75.184453633778418 ], [ -106.149148322355018, -75.125697530262499 ], [ -104.876073574628663, -74.949325866850458 ], [ -103.367948574622659, -74.988496602527647 ], [ -102.016506517325652, -75.125697530262499 ], [ -100.645530768622308, -75.302017517242433 ], [ -100.116699998763266, -74.870932719063532 ], [ -100.763042975653946, -74.537826436510187 ], [ -101.252703009835528, -74.185083109685834 ], [ -102.545337287184509, -74.106741638331371 ], [ -103.113312954504536, -73.734412943668389 ], [ -103.328752000729281, -73.362084249005562 ], [ -103.681288621824393, -72.617530212544153 ], [ -102.917485114334355, -72.754679463846813 ], [ -101.605239630930726, -72.813435567362632 ], [ -100.312527838933448, -72.754679463846813 ], [ -99.137379930400101, -72.911414082988102 ], [ -98.118889126359477, -73.205349629864173 ], [ -97.688036872126105, -73.558041280256333 ], [ -96.336594814828914, -73.616849060204359 ], [ -95.043960537479848, -73.47969980890187 ], [ -93.672907274128107, -73.283742777650929 ], [ -92.439003262078955, -73.166178894187084 ], [ -91.420564134470709, -73.401306661115129 ], [ -90.088733283228436, -73.322913513328203 ], [ -89.226951260112941, -72.558722432595957 ], [ -88.42395117872951, -73.009392598613402 ], [ -87.268336961602614, -73.185764262025629 ], [ -86.01482174349843, -73.087785746400158 ], [ -85.192236294276569, -73.47969980890187 ], [ -83.879990810872755, -73.518870544578974 ], [ -82.66564632844603, -73.636434428043088 ], [ -81.470913052074138, -73.851976827132404 ], [ -80.687446662096988, -73.47969980890187 ], [ -80.295790981756994, -73.126956482077432 ], [ -79.296885545555, -73.518870544578974 ], [ -77.925858120419264, -73.420892028953588 ], [ -76.907367316378753, -73.636434428043088 ], [ -76.221879442027074, -73.969540710596419 ], [ -74.890048590784801, -73.871613871403412 ], [ -73.852024095337924, -73.656019795881633 ], [ -72.833533291297414, -73.401306661115129 ], [ -71.619214647086864, -73.264157409812384 ], [ -70.209042324489957, -73.146541849916076 ], [ -68.935915900331224, -73.009392598613402 ], [ -67.956621670184091, -72.793850199524087 ], [ -67.36906063502559, -72.480329284809301 ], [ -67.134036220962031, -72.049244486630386 ], [ -67.251548427993669, -71.637745056290299 ], [ -67.564940151627894, -71.245830993788758 ], [ -67.917476772723006, -70.853916931287046 ], [ -68.230842658140915, -70.462054545217796 ], [ -68.485452440043019, -70.109311218393515 ], [ -68.544208543558938, -69.717397155891973 ], [ -68.446281704365759, -69.325534769822724 ], [ -67.976232876238896, -68.953206075159727 ], [ -67.584499681250321, -68.54170664481947 ], [ -67.427842576757513, -68.149844258750221 ], [ -67.623670416927695, -67.718759460571476 ], [ -67.741182623959332, -67.326845398069935 ], [ -67.251548427993669, -66.876175232052404 ], [ -66.703183966728574, -66.582239685176248 ], [ -66.056815151621862, -66.209962666945628 ], [ -65.371327277270098, -65.89639007579855 ], [ -64.568275519454403, -65.602506205354672 ], [ -64.176542324465828, -65.171423022064445 ], [ -63.62815202498453, -64.897072843026749 ], [ -63.001394415932566, -64.642308031827866 ], [ -62.041685553623978, -64.583551928311948 ], [ -61.414927944572014, -64.270031013597162 ], [ -60.709854702381705, -64.074073982346391 ], [ -59.887269253159559, -63.956510098882369 ], [ -59.16258480491453, -63.701745287683572 ], [ -58.594557461162282, -63.388224372968601 ], [ -57.811142747617509, -63.270660489504579 ], [ -57.223581712458838, -63.525425300703638 ], [ -57.595729539608868, -63.858531583257069 ], [ -58.614142829000912, -64.152467130133147 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 3, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"France\", \"sov_a3\": \"FR1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Dependency\", \"admin\": \"French Southern and Antarctic Lands\", \"adm0_a3\": \"ATF\", \"geou_dif\": 0.000000, \"geounit\": \"French Southern and Antarctic Lands\", \"gu_a3\": \"ATF\", \"su_dif\": 0.000000, \"subunit\": \"French Southern and Antarctic Lands\", \"su_a3\": \"ATF\", \"brk_diff\": 0.000000, \"name\": \"Fr. S. Antarctic Lands\", \"name_long\": \"French Southern and Antarctic Lands\", \"brk_a3\": \"ATF\", \"brk_name\": \"Fr. S. and Antarctic Lands\", \"brk_group\": null, \"abbrev\": \"Fr. S.A.L.\", \"postal\": \"TF\", \"formal_en\": \"Territory of the French Southern and Antarctic Lands\", \"formal_fr\": null, \"note_adm0\": \"Fr.\", \"note_brk\": null, \"name_sort\": \"French Southern and Antarctic Lands\", \"name_alt\": null, \"mapcolor7\": 7.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 9.000000, \"mapcolor13\": 11.000000, \"pop_est\": 140.000000, \"gdp_md_est\": 16.000000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TF\", \"iso_a3\": \"ATF\", \"iso_n3\": \"260\", \"un_a3\": \"-099\", \"wb_a2\": \"-99\", \"wb_a3\": \"-99\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ATF\", \"adm0_a3_us\": \"ATF\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Seven seas (open ocean)\", \"region_un\": \"Seven seas (open ocean)\", \"subregion\": \"Seven seas (open ocean)\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 22.000000, \"long_len\": 35.000000, \"abbrev_len\": 10.000000, \"tiny\": 2.000000, \"homepart\": -99.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 68.935, -48.625 ], [ 69.58, -48.94 ], [ 70.525, -49.065 ], [ 70.56, -49.255 ], [ 70.28, -49.71 ], [ 68.745, -49.775 ], [ 68.72, -49.2425 ], [ 68.8675, -48.83 ], [ 68.935, -48.625 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Australia\", \"sov_a3\": \"AU1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"Australia\", \"adm0_a3\": \"AUS\", \"geou_dif\": 0.000000, \"geounit\": \"Australia\", \"gu_a3\": \"AUS\", \"su_dif\": 0.000000, \"subunit\": \"Australia\", \"su_a3\": \"AUS\", \"brk_diff\": 0.000000, \"name\": \"Australia\", \"name_long\": \"Australia\", \"brk_a3\": \"AUS\", \"brk_name\": \"Australia\", \"brk_group\": null, \"abbrev\": \"Auz.\", \"postal\": \"AU\", \"formal_en\": \"Commonwealth of Australia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Australia\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 7.000000, \"pop_est\": 21262641.000000, \"gdp_md_est\": 800200.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AU\", \"iso_a3\": \"AUS\", \"iso_n3\": \"036\", \"un_a3\": \"036\", \"wb_a2\": \"AU\", \"wb_a3\": \"AUS\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"AUS\", \"adm0_a3_us\": \"AUS\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Oceania\", \"region_un\": \"Oceania\", \"subregion\": \"Australia and New Zealand\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 145.397978143494839, -40.792548516605891 ], [ 146.364120721623721, -41.137695407883342 ], [ 146.908583612250851, -41.000546156580683 ], [ 147.689259474884153, -40.808258152022688 ], [ 148.289067824496016, -40.87543751400213 ], [ 148.359864536735842, -42.062445163746446 ], [ 148.017301467073111, -42.407023614268624 ], [ 147.914051955353813, -43.211522312188492 ], [ 147.564564243764011, -42.937688897473862 ], [ 146.870343052354968, -43.634597263362096 ], [ 146.663327264593676, -43.580853773778557 ], [ 146.048377720320417, -43.549744561538887 ], [ 145.431929559510564, -42.693776137056275 ], [ 145.295090366801702, -42.033609714527557 ], [ 144.718071323830628, -41.162551771815714 ], [ 144.743754510679679, -40.703975111657712 ], [ 145.397978143494839, -40.792548516605891 ] ] ], [ [ [ 143.561811151299963, -13.763655694232213 ], [ 143.922099237238939, -14.548310642152003 ], [ 144.563713820574861, -14.171176039285882 ], [ 144.894908075133543, -14.594457696188627 ], [ 145.374723748963476, -14.984976495018287 ], [ 145.271991001567272, -15.428205254785695 ], [ 145.485259637635778, -16.285672295804773 ], [ 145.637033319276981, -16.784918308176614 ], [ 145.8889042502677, -16.90692636481765 ], [ 146.160308872664501, -17.761654554925244 ], [ 146.06367394427869, -18.280072523677319 ], [ 146.387478469019612, -18.958274021075908 ], [ 147.471081577747924, -19.480722751546679 ], [ 148.177601760042506, -19.955939222902771 ], [ 148.848413527623251, -20.391209812097259 ], [ 148.717465448195611, -20.633468926681516 ], [ 149.289420200802084, -21.260510756111103 ], [ 149.678337030230665, -22.342511895438392 ], [ 150.077382440388618, -22.122783705333319 ], [ 150.482939081015189, -22.556142266533016 ], [ 150.727265252891215, -22.402404880464658 ], [ 150.899554478152282, -23.462236830338682 ], [ 151.60917524638424, -24.076256198830762 ], [ 152.073539666959078, -24.457886651306197 ], [ 152.855197381805937, -25.267501316023015 ], [ 153.13616214417678, -26.07117319102619 ], [ 153.161948683890415, -26.641319268502443 ], [ 153.092908970348589, -27.26029957449451 ], [ 153.569469028944212, -28.110066827102102 ], [ 153.512108189100246, -28.995077406532758 ], [ 153.339095493787084, -29.458201592732451 ], [ 153.069241164358885, -30.350240166954819 ], [ 153.089601678681817, -30.923641859665452 ], [ 152.891577590139406, -31.640445651985956 ], [ 152.450002476205356, -32.550002536755244 ], [ 151.709117466436822, -33.041342054986345 ], [ 151.343971795862416, -33.816023451473853 ], [ 151.01055545471516, -34.310360202777886 ], [ 150.714139439089053, -35.17345997491681 ], [ 150.328219842733262, -35.67187916437193 ], [ 150.075212030232279, -36.420205580390515 ], [ 149.946124302367167, -37.109052422841231 ], [ 149.997283970336156, -37.425260512035138 ], [ 149.423882277625552, -37.77268116633347 ], [ 148.304622430615922, -37.809061374666882 ], [ 147.381733026315288, -38.21921721776755 ], [ 146.922122837511353, -38.606532077795123 ], [ 146.317921991154805, -39.03575652441144 ], [ 145.489652134380577, -38.59376799901905 ], [ 144.876976353128185, -38.417448012039117 ], [ 145.03221235573298, -37.896187839510986 ], [ 144.485682407814039, -38.085323581699271 ], [ 143.609973586196105, -38.809465427405328 ], [ 142.745426873952994, -38.538267510737526 ], [ 142.178329705982009, -38.380034275059842 ], [ 141.606581659104705, -38.308514092767879 ], [ 140.63857872941324, -38.019332777662555 ], [ 139.992158237874349, -37.402936293285109 ], [ 139.806588169514072, -36.643602797188279 ], [ 139.574147577065247, -36.138362318670673 ], [ 139.082808058834104, -35.732754001611781 ], [ 138.120747918856324, -35.612296237939404 ], [ 138.449461704665026, -35.127261244447894 ], [ 138.207564325106688, -34.384722588845932 ], [ 137.719170363516156, -35.076825046531027 ], [ 136.829405552314739, -35.260534763328621 ], [ 137.352371047108505, -34.7073385556441 ], [ 137.503886346588359, -34.130267836240776 ], [ 137.890116001537677, -33.640478610978334 ], [ 137.81032759007914, -32.900007012668112 ], [ 136.996837192940376, -33.752771498348636 ], [ 136.37206912653167, -34.094766127256193 ], [ 135.989043410384369, -34.890118096660487 ], [ 135.208212518454133, -34.478670342752608 ], [ 135.239218377829189, -33.947953383114978 ], [ 134.613416782774635, -33.222778008763143 ], [ 134.085903761939136, -32.848072198214766 ], [ 134.273902622617044, -32.617233575166964 ], [ 132.990776808809841, -32.011224053680195 ], [ 132.288080682504898, -31.982646986622768 ], [ 131.326330601120929, -31.495803318001052 ], [ 129.535793898639696, -31.590422865527486 ], [ 128.240937534702226, -31.948488864877859 ], [ 127.102867466338324, -32.282266941051049 ], [ 126.148713820501172, -32.215966078420607 ], [ 125.088623488465629, -32.728751316052836 ], [ 124.221647983904944, -32.959486586236068 ], [ 124.028946567888539, -33.483847344701715 ], [ 123.659666782730739, -33.890179131812729 ], [ 122.811036411633637, -33.914467054989842 ], [ 122.183064406422858, -34.003402194964224 ], [ 121.299190708502607, -33.821036065406133 ], [ 120.580268182458127, -33.930176690406626 ], [ 119.89369510302825, -33.976065362281815 ], [ 119.29889936734881, -34.509366143533967 ], [ 119.00734093635802, -34.464149265278536 ], [ 118.505717808100798, -34.7468193499151 ], [ 118.024971958489544, -35.064732761374714 ], [ 117.295507440257467, -35.025458672832869 ], [ 116.625109084134948, -35.025096937806836 ], [ 115.564346958479717, -34.386427911111554 ], [ 115.026808709779544, -34.196517022438925 ], [ 115.048616164206777, -33.623425388322033 ], [ 115.545123325667106, -33.487257989232958 ], [ 115.714673700016675, -33.259571628554951 ], [ 115.679378696761404, -32.900368747694131 ], [ 115.801645135563973, -32.205062351207033 ], [ 115.689610630355133, -31.612437025683789 ], [ 115.160909051576965, -30.601594333622458 ], [ 114.997043084779449, -30.030724786094169 ], [ 115.040037876446291, -29.461095472940798 ], [ 114.641974318502008, -28.810230808224716 ], [ 114.616497837382184, -28.516398614213045 ], [ 114.173579136208474, -28.118076674107328 ], [ 114.048883905088161, -27.334765313427127 ], [ 113.477497593236905, -26.543134047147902 ], [ 113.338953078262506, -26.116545098578484 ], [ 113.778357782040274, -26.549025160429181 ], [ 113.440962355606615, -25.621278171493159 ], [ 113.936901076311671, -25.911234633082884 ], [ 114.232852004047317, -26.298446140245872 ], [ 114.216160516417034, -25.786281019801109 ], [ 113.721255324357713, -24.998938897402127 ], [ 113.625343866024053, -24.683971042583153 ], [ 113.393523390762681, -24.384764499613269 ], [ 113.502043898575636, -23.806350192970257 ], [ 113.706992629045175, -23.560215345964068 ], [ 113.843418410295698, -23.059987481378741 ], [ 113.7365515483161, -22.475475355725379 ], [ 114.149756300921894, -21.755881036061012 ], [ 114.225307244932679, -22.517488295178637 ], [ 114.647762078918703, -21.829519952076907 ], [ 115.460167270979326, -21.495173435148544 ], [ 115.947372674627019, -21.068687839443712 ], [ 116.711615431791557, -20.70168181730682 ], [ 117.166316359527713, -20.623598728113805 ], [ 117.441545037914267, -20.746898695562166 ], [ 118.22955895393298, -20.374208265873236 ], [ 118.836085239742744, -20.263310642174829 ], [ 118.987807244951767, -20.044202569257322 ], [ 119.252493931150667, -19.952941989829839 ], [ 119.805225050944586, -19.976506442954985 ], [ 120.856220330896662, -19.683707777589191 ], [ 121.399856398607227, -19.239755547769732 ], [ 121.655137974129076, -18.705317885007133 ], [ 122.241665480641785, -18.197648614171769 ], [ 122.286623976735683, -17.798603204013915 ], [ 122.312772251475423, -17.254967136303449 ], [ 123.012574497571933, -16.405199883695857 ], [ 123.433789097183052, -17.268558037996229 ], [ 123.859344517106621, -17.069035332917252 ], [ 123.503242222183275, -16.596506036040367 ], [ 123.817073195491929, -16.111316013251994 ], [ 124.258286574399875, -16.327943617419564 ], [ 124.379726190285822, -15.567059828353976 ], [ 124.926152785340065, -15.075100192935324 ], [ 125.167275018413903, -14.680395603090005 ], [ 125.670086704613851, -14.510070082256021 ], [ 125.685796340030521, -14.230655612853838 ], [ 126.12514936737611, -14.347340996968953 ], [ 126.142822707219892, -14.095986830301214 ], [ 126.582589146023764, -13.952791436420412 ], [ 127.065867140817346, -13.817967624570926 ], [ 127.804633416861947, -14.276906019755046 ], [ 128.359689976108967, -14.869169610252257 ], [ 128.985543247595928, -14.875990899314743 ], [ 129.621473423379626, -14.969783623924556 ], [ 129.409600050983016, -14.420669854391036 ], [ 129.888640578328619, -13.618703301653483 ], [ 130.339465773642956, -13.357375583553477 ], [ 130.183506300986011, -13.107520033422304 ], [ 130.617795037966999, -12.536392103732467 ], [ 131.223494500860028, -12.183648776908115 ], [ 131.735091180549517, -12.302452894747162 ], [ 132.575298293183124, -12.114040622611014 ], [ 132.55721154188106, -11.603012383676685 ], [ 131.824698114143672, -11.273781833545101 ], [ 132.357223748911423, -11.128519382372644 ], [ 133.019560581596437, -11.376411228076847 ], [ 133.550845981989056, -11.786515394745138 ], [ 134.393068475482011, -12.042365411022175 ], [ 134.67863244032705, -11.941182956594702 ], [ 135.298491245668032, -12.248606052299053 ], [ 135.882693312727639, -11.962266940969798 ], [ 136.258380975489473, -12.049341729381609 ], [ 136.492475213771655, -11.857208754120393 ], [ 136.951620314685016, -12.351958916882737 ], [ 136.685124953355768, -12.887223402562057 ], [ 136.305406528875125, -13.291229750219898 ], [ 135.961758254134139, -13.324509372615893 ], [ 136.077616815332561, -13.724278252825783 ], [ 135.783836297753254, -14.223989353088214 ], [ 135.428664178611228, -14.7154322241839 ], [ 135.500184360903205, -14.997740573794431 ], [ 136.295174595281395, -15.550264987859123 ], [ 137.065360142159506, -15.870762220933358 ], [ 137.580470819244823, -16.215082289294088 ], [ 138.303217401278999, -16.807604261952662 ], [ 138.585164015863398, -16.806622409739177 ], [ 139.108542922115504, -17.062679131745369 ], [ 139.260574985918225, -17.371600843986187 ], [ 140.215245396078302, -17.710804945550066 ], [ 140.87546349503927, -17.369068698803943 ], [ 141.071110467696286, -16.832047214426723 ], [ 141.274095493738827, -16.388870131091608 ], [ 141.398222284103809, -15.840531508042588 ], [ 141.702183058844668, -15.044921156476931 ], [ 141.563380161708693, -14.56133310308951 ], [ 141.635520461188122, -14.270394789286286 ], [ 141.519868605718983, -13.698078301653808 ], [ 141.650920038011037, -12.944687595270565 ], [ 141.842691278246235, -12.74154753993119 ], [ 141.686990187750808, -12.407614434461138 ], [ 141.928629185147571, -11.877465915578782 ], [ 142.118488397388006, -11.328042087451621 ], [ 142.143706496346368, -11.042736504768143 ], [ 142.515260044524979, -10.668185723516643 ], [ 142.797310011974076, -11.157354831591519 ], [ 142.866763136974299, -11.784706719614931 ], [ 143.115946893485699, -11.905629571177911 ], [ 143.158631626558787, -12.325655612846191 ], [ 143.522123651299893, -12.834358412327433 ], [ 143.597157830987697, -13.400422051652598 ], [ 143.561811151299963, -13.763655694232213 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Austria\", \"sov_a3\": \"AUT\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Austria\", \"adm0_a3\": \"AUT\", \"geou_dif\": 0.000000, \"geounit\": \"Austria\", \"gu_a3\": \"AUT\", \"su_dif\": 0.000000, \"subunit\": \"Austria\", \"su_a3\": \"AUT\", \"brk_diff\": 0.000000, \"name\": \"Austria\", \"name_long\": \"Austria\", \"brk_a3\": \"AUT\", \"brk_name\": \"Austria\", \"brk_group\": null, \"abbrev\": \"Aust.\", \"postal\": \"A\", \"formal_en\": \"Republic of Austria\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Austria\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 4.000000, \"pop_est\": 8210281.000000, \"gdp_md_est\": 329500.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AT\", \"iso_a3\": \"AUT\", \"iso_n3\": \"040\", \"un_a3\": \"040\", \"wb_a2\": \"AT\", \"wb_a3\": \"AUT\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"AUT\", \"adm0_a3_us\": \"AUT\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Western Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 16.979666782304037, 48.123497015976305 ], [ 16.903754103267261, 47.714865627628328 ], [ 16.340584344150415, 47.71290192320123 ], [ 16.534267612380376, 47.496170966169117 ], [ 16.202298211337364, 46.852385972676963 ], [ 16.011663852612656, 46.683610744811702 ], [ 15.137091912504985, 46.65870270444703 ], [ 14.632471551174829, 46.431817328469549 ], [ 13.806475457421527, 46.509306138691215 ], [ 12.376485223040817, 46.76755910906985 ], [ 12.153088006243054, 47.115393174826451 ], [ 11.164827915093269, 46.941579494812729 ], [ 11.048555942436536, 46.751358547546339 ], [ 10.442701450246631, 46.893546250997431 ], [ 9.932448357796659, 46.920728054382963 ], [ 9.479969516649021, 47.102809963563374 ], [ 9.632931756232978, 47.347601223329988 ], [ 9.59422610844635, 47.52505809182027 ], [ 9.89606814946319, 47.580196845075704 ], [ 10.402083774465211, 47.302487697939164 ], [ 10.544504021861627, 47.566399237653769 ], [ 11.426414015354737, 47.523766181012974 ], [ 12.141357456112788, 47.703083401065776 ], [ 12.620759718484493, 47.672387600284409 ], [ 12.932626987365948, 47.467645575543997 ], [ 13.025851271220491, 47.637583523135831 ], [ 12.884102817443903, 48.289145819687917 ], [ 13.243357374737, 48.416114813829054 ], [ 13.595945672264437, 48.877171942737149 ], [ 14.338897739324722, 48.555305284207208 ], [ 14.901447381254057, 48.964401760445824 ], [ 15.253415561593982, 49.039074205107582 ], [ 16.029647251050221, 48.73389903420793 ], [ 16.499282667718774, 48.785808010445109 ], [ 16.960288120194576, 48.5969823268506 ], [ 16.879982944413001, 48.47001333270947 ], [ 16.979666782304037, 48.123497015976305 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Azerbaijan\", \"sov_a3\": \"AZE\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Azerbaijan\", \"adm0_a3\": \"AZE\", \"geou_dif\": 0.000000, \"geounit\": \"Azerbaijan\", \"gu_a3\": \"AZE\", \"su_dif\": 0.000000, \"subunit\": \"Azerbaijan\", \"su_a3\": \"AZE\", \"brk_diff\": 0.000000, \"name\": \"Azerbaijan\", \"name_long\": \"Azerbaijan\", \"brk_a3\": \"AZE\", \"brk_name\": \"Azerbaijan\", \"brk_group\": null, \"abbrev\": \"Aze.\", \"postal\": \"AZ\", \"formal_en\": \"Republic of Azerbaijan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Azerbaijan\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 8.000000, \"pop_est\": 8238672.000000, \"gdp_md_est\": 77610.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"AZ\", \"iso_a3\": \"AZE\", \"iso_n3\": \"031\", \"un_a3\": \"031\", \"wb_a2\": \"AZ\", \"wb_a3\": \"AZE\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"AZE\", \"adm0_a3_us\": \"AZE\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 45.001987339056797, 39.740003567049598 ], [ 45.298144972521442, 39.471751207022436 ], [ 45.739978468617011, 39.473999131827156 ], [ 45.735379266143099, 39.3197191432198 ], [ 46.143623081248819, 38.741201483712217 ], [ 45.457721795438744, 38.874139105783115 ], [ 44.952688022650278, 39.335764675446427 ], [ 44.793989699082005, 39.713002631177034 ], [ 45.001987339056797, 39.740003567049598 ] ] ], [ [ [ 47.373315464066224, 41.219732367511256 ], [ 47.815665724484717, 41.151416124021353 ], [ 47.98728315612604, 41.40581920019423 ], [ 48.58435265482629, 41.808869533854676 ], [ 49.110263706260668, 41.282286688800525 ], [ 49.618914829309603, 40.572924302729973 ], [ 50.0848295428531, 40.526157131505784 ], [ 50.392821079312711, 40.256561184239104 ], [ 49.569202101444802, 40.176100979160708 ], [ 49.395259230350433, 39.399481716462248 ], [ 49.223228387250714, 39.049218858387917 ], [ 48.856532423707591, 38.815486355131782 ], [ 48.883249139202547, 38.320245266262646 ], [ 48.634375441284845, 38.270377509100939 ], [ 48.010744256386516, 38.794014797514535 ], [ 48.355529412637935, 39.288764960276893 ], [ 48.06009524922527, 39.582235419262446 ], [ 47.685079380083124, 39.508363959301192 ], [ 46.505719842317973, 38.770605373686266 ], [ 46.483498976432458, 39.464154771475535 ], [ 46.034534132680704, 39.628020738273051 ], [ 45.610012241402927, 39.899993801425182 ], [ 45.891907179555147, 40.218475653639985 ], [ 45.35917483905817, 40.561503811193489 ], [ 45.560351189970476, 40.812289537105954 ], [ 45.179495883979399, 40.985353908851437 ], [ 44.972480096218163, 41.24812856705563 ], [ 45.217426385281641, 41.411451931314048 ], [ 45.962600538930445, 41.123872585609803 ], [ 46.501637404166985, 41.064444688474111 ], [ 46.637908156120574, 41.181672675128226 ], [ 46.145431756378997, 41.722802435872637 ], [ 46.404950799348825, 41.860675157227348 ], [ 46.686070591016659, 41.827137152669906 ], [ 47.373315464066224, 41.219732367511256 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Burundi\", \"sov_a3\": \"BDI\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Burundi\", \"adm0_a3\": \"BDI\", \"geou_dif\": 0.000000, \"geounit\": \"Burundi\", \"gu_a3\": \"BDI\", \"su_dif\": 0.000000, \"subunit\": \"Burundi\", \"su_a3\": \"BDI\", \"brk_diff\": 0.000000, \"name\": \"Burundi\", \"name_long\": \"Burundi\", \"brk_a3\": \"BDI\", \"brk_name\": \"Burundi\", \"brk_group\": null, \"abbrev\": \"Bur.\", \"postal\": \"BI\", \"formal_en\": \"Republic of Burundi\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Burundi\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 8.000000, \"pop_est\": 8988091.000000, \"gdp_md_est\": 3102.000000, \"pop_year\": -99.000000, \"lastcensus\": 2008.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BI\", \"iso_a3\": \"BDI\", \"iso_n3\": \"108\", \"un_a3\": \"108\", \"wb_a2\": \"BI\", \"wb_a3\": \"BDI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BDI\", \"adm0_a3_us\": \"BDI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 29.339997592900346, -4.499983412294092 ], [ 29.276383904749053, -3.293907159034063 ], [ 29.024926385216787, -2.839257907730158 ], [ 29.632176141078588, -2.917857761246097 ], [ 29.938359002407939, -2.348486830254238 ], [ 30.469696079232989, -2.413857517103459 ], [ 30.527677036264464, -2.807631931167535 ], [ 30.743012729624699, -3.034284763199686 ], [ 30.752262811004954, -3.35932952231557 ], [ 30.505559523243566, -3.568567396665365 ], [ 30.11633263522117, -4.090137627787243 ], [ 29.753512404099922, -4.452389418153281 ], [ 29.339997592900346, -4.499983412294092 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Belgium\", \"sov_a3\": \"BEL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Belgium\", \"adm0_a3\": \"BEL\", \"geou_dif\": 0.000000, \"geounit\": \"Belgium\", \"gu_a3\": \"BEL\", \"su_dif\": 0.000000, \"subunit\": \"Belgium\", \"su_a3\": \"BEL\", \"brk_diff\": 0.000000, \"name\": \"Belgium\", \"name_long\": \"Belgium\", \"brk_a3\": \"BEL\", \"brk_name\": \"Belgium\", \"brk_group\": null, \"abbrev\": \"Belg.\", \"postal\": \"B\", \"formal_en\": \"Kingdom of Belgium\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Belgium\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 8.000000, \"pop_est\": 10414336.000000, \"gdp_md_est\": 389300.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BE\", \"iso_a3\": \"BEL\", \"iso_n3\": \"056\", \"un_a3\": \"056\", \"wb_a2\": \"BE\", \"wb_a3\": \"BEL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BEL\", \"adm0_a3_us\": \"BEL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Western Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 3.314971144228537, 51.345780951536085 ], [ 4.047071160507528, 51.26725861266857 ], [ 4.973991326526914, 51.475023708698131 ], [ 5.606975945670001, 51.037298488969782 ], [ 6.15665815595878, 50.803721015010581 ], [ 6.043073357781111, 50.128051662794235 ], [ 5.782417433300907, 50.09032786722122 ], [ 5.674051954784829, 49.529483547557504 ], [ 4.79922163251581, 49.985373033236385 ], [ 4.286022983425084, 49.907496649772554 ], [ 3.588184441755686, 50.378992418003577 ], [ 3.123251580425801, 50.780363267614575 ], [ 2.658422071960274, 50.796848049515745 ], [ 2.513573032246143, 51.148506171261829 ], [ 3.314971144228537, 51.345780951536085 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Benin\", \"sov_a3\": \"BEN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Benin\", \"adm0_a3\": \"BEN\", \"geou_dif\": 0.000000, \"geounit\": \"Benin\", \"gu_a3\": \"BEN\", \"su_dif\": 0.000000, \"subunit\": \"Benin\", \"su_a3\": \"BEN\", \"brk_diff\": 0.000000, \"name\": \"Benin\", \"name_long\": \"Benin\", \"brk_a3\": \"BEN\", \"brk_name\": \"Benin\", \"brk_group\": null, \"abbrev\": \"Benin\", \"postal\": \"BJ\", \"formal_en\": \"Republic of Benin\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Benin\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 12.000000, \"pop_est\": 8791832.000000, \"gdp_md_est\": 12830.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BJ\", \"iso_a3\": \"BEN\", \"iso_n3\": \"204\", \"un_a3\": \"204\", \"wb_a2\": \"BJ\", \"wb_a3\": \"BEN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BEN\", \"adm0_a3_us\": \"BEN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 2.691701694356254, 6.258817246928629 ], [ 1.865240512712319, 6.142157701029731 ], [ 1.618950636409238, 6.832038072126238 ], [ 1.664477573258381, 9.128590399609379 ], [ 1.46304284018467, 9.334624335157088 ], [ 1.425060662450136, 9.825395412633 ], [ 1.077795037448738, 10.175606594275024 ], [ 0.772335646171484, 10.470808213742359 ], [ 0.899563022474069, 10.99733938236426 ], [ 1.243469679376489, 11.110510769083461 ], [ 1.447178175471066, 11.547719224488858 ], [ 1.935985548519881, 11.641150214072553 ], [ 2.154473504249921, 11.940150051313339 ], [ 2.49016360841793, 12.233052069543675 ], [ 2.848643019226671, 12.235635891158267 ], [ 3.611180454125559, 11.660167141155968 ], [ 3.572216424177469, 11.32793935795152 ], [ 3.797112257511714, 10.734745591673105 ], [ 3.600070021182802, 10.332186184119408 ], [ 3.705438266625919, 10.063210354040208 ], [ 3.220351596702101, 9.444152533399702 ], [ 2.912308383810256, 9.137607937044322 ], [ 2.723792758809509, 8.506845404489709 ], [ 2.74906253420022, 7.870734361192888 ], [ 2.691701694356254, 6.258817246928629 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Burkina Faso\", \"sov_a3\": \"BFA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Burkina Faso\", \"adm0_a3\": \"BFA\", \"geou_dif\": 0.000000, \"geounit\": \"Burkina Faso\", \"gu_a3\": \"BFA\", \"su_dif\": 0.000000, \"subunit\": \"Burkina Faso\", \"su_a3\": \"BFA\", \"brk_diff\": 0.000000, \"name\": \"Burkina Faso\", \"name_long\": \"Burkina Faso\", \"brk_a3\": \"BFA\", \"brk_name\": \"Burkina Faso\", \"brk_group\": null, \"abbrev\": \"B.F.\", \"postal\": \"BF\", \"formal_en\": \"Burkina Faso\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Burkina Faso\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 11.000000, \"pop_est\": 15746232.000000, \"gdp_md_est\": 17820.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BF\", \"iso_a3\": \"BFA\", \"iso_n3\": \"854\", \"un_a3\": \"854\", \"wb_a2\": \"BF\", \"wb_a3\": \"BFA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BFA\", \"adm0_a3_us\": \"BFA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 12.000000, \"long_len\": 12.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -2.827496303712707, 9.642460842319778 ], [ -3.511898972986273, 9.90032623945622 ], [ -3.980449184576685, 9.8623440617217 ], [ -4.330246954760383, 9.610834865757141 ], [ -4.779883592131966, 9.821984768101743 ], [ -4.954653286143099, 10.152713934769736 ], [ -5.404341599946974, 10.370736802609146 ], [ -5.470564947929006, 10.951269842976048 ], [ -5.197842576508648, 11.37514577885014 ], [ -5.220941941743121, 11.713858954307227 ], [ -4.427166103523803, 12.542645575404295 ], [ -4.28040503581488, 13.228443508349741 ], [ -4.006390753587226, 13.472485459848116 ], [ -3.522802700199861, 13.337661647998615 ], [ -3.10370683431276, 13.541266791228594 ], [ -2.967694464520577, 13.79815033615151 ], [ -2.191824510090385, 14.246417548067356 ], [ -2.001035122068771, 14.559008287000893 ], [ -1.066363491205664, 14.973815009007765 ], [ -0.515854458000348, 15.116157741755728 ], [ -0.26625729003058, 14.924308986872148 ], [ 0.374892205414682, 14.92890818934613 ], [ 0.295646396495101, 14.444234930880654 ], [ 0.429927605805517, 13.988733018443924 ], [ 0.993045688490071, 13.335749620003824 ], [ 1.024103224297477, 12.851825669806574 ], [ 2.177107781593776, 12.625017808477535 ], [ 2.154473504249921, 11.940150051313339 ], [ 1.935985548519881, 11.641150214072553 ], [ 1.447178175471066, 11.547719224488858 ], [ 1.243469679376489, 11.110510769083461 ], [ 0.899563022474069, 10.99733938236426 ], [ 0.023802524423701, 11.018681748900804 ], [ -0.438701544588582, 11.098340969278722 ], [ -0.761575893548183, 10.936929633015055 ], [ -1.203357713211432, 11.009819240762738 ], [ -2.940409308270461, 10.962690334512558 ], [ -2.963896246747112, 10.395334784380083 ], [ -2.827496303712707, 9.642460842319778 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Bangladesh\", \"sov_a3\": \"BGD\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Bangladesh\", \"adm0_a3\": \"BGD\", \"geou_dif\": 0.000000, \"geounit\": \"Bangladesh\", \"gu_a3\": \"BGD\", \"su_dif\": 0.000000, \"subunit\": \"Bangladesh\", \"su_a3\": \"BGD\", \"brk_diff\": 0.000000, \"name\": \"Bangladesh\", \"name_long\": \"Bangladesh\", \"brk_a3\": \"BGD\", \"brk_name\": \"Bangladesh\", \"brk_group\": null, \"abbrev\": \"Bang.\", \"postal\": \"BD\", \"formal_en\": \"People's Republic of Bangladesh\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Bangladesh\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 7.000000, \"pop_est\": 156050883.000000, \"gdp_md_est\": 224000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BD\", \"iso_a3\": \"BGD\", \"iso_n3\": \"050\", \"un_a3\": \"050\", \"wb_a2\": \"BD\", \"wb_a3\": \"BGD\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BGD\", \"adm0_a3_us\": \"BGD\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Southern Asia\", \"region_wb\": \"South Asia\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 92.672720981825563, 22.041238918541254 ], [ 92.65225711463799, 21.324047552978485 ], [ 92.303234490938678, 21.475485337809818 ], [ 92.36855350135562, 20.670883287025347 ], [ 92.082886183646139, 21.19219513598577 ], [ 92.02521528520839, 21.701569729086767 ], [ 91.834890985077436, 22.182935695885565 ], [ 91.41708702999766, 22.765019029221222 ], [ 90.496006300827275, 22.805016587815128 ], [ 90.586956821660976, 22.392793687422866 ], [ 90.272970819055558, 21.836367702720111 ], [ 89.847467075564282, 22.039146023033425 ], [ 89.702049595094934, 21.857115790285306 ], [ 89.418862746135488, 21.966178900637299 ], [ 89.031961297566227, 22.055708319582976 ], [ 88.876311883503092, 22.87914642993783 ], [ 88.529769728553788, 23.631141872649167 ], [ 88.699940220090923, 24.23371491138856 ], [ 88.084422235062419, 24.501657212821925 ], [ 88.306372511756024, 24.866079413344206 ], [ 88.931553989623083, 25.238692328384776 ], [ 88.209789259802506, 25.768065700782714 ], [ 88.563049350949768, 26.446525580342723 ], [ 89.35509402868729, 26.014407253518073 ], [ 89.832480910199621, 25.965082098895479 ], [ 89.920692580121852, 25.269749864192178 ], [ 90.872210727912119, 25.132600612889547 ], [ 91.79959598182208, 25.147431748957317 ], [ 92.376201613334814, 24.976692816664965 ], [ 91.915092807994426, 24.130413723237112 ], [ 91.467729933643682, 24.072639471934792 ], [ 91.158963250699728, 23.503526923104388 ], [ 91.706475050832111, 22.985263983649187 ], [ 91.869927606171316, 23.624346421802784 ], [ 92.146034783906813, 23.627498684172593 ], [ 92.672720981825563, 22.041238918541254 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Bulgaria\", \"sov_a3\": \"BGR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Bulgaria\", \"adm0_a3\": \"BGR\", \"geou_dif\": 0.000000, \"geounit\": \"Bulgaria\", \"gu_a3\": \"BGR\", \"su_dif\": 0.000000, \"subunit\": \"Bulgaria\", \"su_a3\": \"BGR\", \"brk_diff\": 0.000000, \"name\": \"Bulgaria\", \"name_long\": \"Bulgaria\", \"brk_a3\": \"BGR\", \"brk_name\": \"Bulgaria\", \"brk_group\": null, \"abbrev\": \"Bulg.\", \"postal\": \"BG\", \"formal_en\": \"Republic of Bulgaria\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Bulgaria\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 8.000000, \"pop_est\": 7204687.000000, \"gdp_md_est\": 93750.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BG\", \"iso_a3\": \"BGR\", \"iso_n3\": \"100\", \"un_a3\": \"100\", \"wb_a2\": \"BG\", \"wb_a3\": \"BGR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BGR\", \"adm0_a3_us\": \"BGR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 22.657149692482989, 44.234923000661283 ], [ 22.944832391051847, 43.82378530534713 ], [ 23.332302280376325, 43.897010809904714 ], [ 24.100679152124172, 43.741051337247853 ], [ 25.569271681426926, 43.688444729174719 ], [ 26.065158725699746, 43.943493760751267 ], [ 27.242399529740908, 44.175986029632405 ], [ 27.970107049275075, 43.812468166675217 ], [ 28.558081495891997, 43.707461656258133 ], [ 28.039095086384719, 43.293171698574184 ], [ 27.673897739378049, 42.577892361006221 ], [ 27.99672041190539, 42.007358710287789 ], [ 27.13573937349048, 42.141484890301342 ], [ 26.1170418637208, 41.826904608724561 ], [ 26.106138136507212, 41.32889883072778 ], [ 25.197201368925448, 41.23448598893053 ], [ 24.492644891058035, 41.583896185872035 ], [ 23.692073601992348, 41.309080918943856 ], [ 22.952377150166452, 41.337993882811148 ], [ 22.881373732197432, 41.999297186850256 ], [ 22.380525750424592, 42.320259507815088 ], [ 22.545011834409621, 42.46136200618804 ], [ 22.43659467946128, 42.580321153323936 ], [ 22.604801466571331, 42.898518785161144 ], [ 22.986018507588483, 43.211161200526966 ], [ 22.50015669118028, 43.642814439460992 ], [ 22.410446404721597, 44.008063462899955 ], [ 22.657149692482989, 44.234923000661283 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"The Bahamas\", \"sov_a3\": \"BHS\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"The Bahamas\", \"adm0_a3\": \"BHS\", \"geou_dif\": 0.000000, \"geounit\": \"The Bahamas\", \"gu_a3\": \"BHS\", \"su_dif\": 0.000000, \"subunit\": \"The Bahamas\", \"su_a3\": \"BHS\", \"brk_diff\": 0.000000, \"name\": \"Bahamas\", \"name_long\": \"Bahamas\", \"brk_a3\": \"BHS\", \"brk_name\": \"Bahamas\", \"brk_group\": null, \"abbrev\": \"Bhs.\", \"postal\": \"BS\", \"formal_en\": \"Commonwealth of the Bahamas\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Bahamas, The\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 5.000000, \"pop_est\": 309156.000000, \"gdp_md_est\": 9093.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BS\", \"iso_a3\": \"BHS\", \"iso_n3\": \"044\", \"un_a3\": \"044\", \"wb_a2\": \"BS\", \"wb_a3\": \"BHS\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BHS\", \"adm0_a3_us\": \"BHS\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Caribbean\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -77.53466, 23.75975 ], [ -77.78, 23.71 ], [ -78.03405, 24.28615 ], [ -78.40848, 24.57564 ], [ -78.19087, 25.2103 ], [ -77.89, 25.17 ], [ -77.54, 24.34 ], [ -77.53466, 23.75975 ] ] ], [ [ [ -77.82, 26.58 ], [ -78.91, 26.42 ], [ -78.98, 26.79 ], [ -78.51, 26.87 ], [ -77.85, 26.84 ], [ -77.82, 26.58 ] ] ], [ [ [ -77.0, 26.59 ], [ -77.17255, 25.87918 ], [ -77.35641, 26.00735 ], [ -77.34, 26.53 ], [ -77.78802, 26.92516 ], [ -77.79, 27.04 ], [ -77.0, 26.59 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Bosnia and Herzegovina\", \"sov_a3\": \"BIH\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Bosnia and Herzegovina\", \"adm0_a3\": \"BIH\", \"geou_dif\": 0.000000, \"geounit\": \"Bosnia and Herzegovina\", \"gu_a3\": \"BIH\", \"su_dif\": 0.000000, \"subunit\": \"Bosnia and Herzegovina\", \"su_a3\": \"BIH\", \"brk_diff\": 0.000000, \"name\": \"Bosnia and Herz.\", \"name_long\": \"Bosnia and Herzegovina\", \"brk_a3\": \"BIH\", \"brk_name\": \"Bosnia and Herz.\", \"brk_group\": null, \"abbrev\": \"B.H.\", \"postal\": \"BiH\", \"formal_en\": \"Bosnia and Herzegovina\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Bosnia and Herzegovina\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 2.000000, \"pop_est\": 4613414.000000, \"gdp_md_est\": 29700.000000, \"pop_year\": -99.000000, \"lastcensus\": 1991.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BA\", \"iso_a3\": \"BIH\", \"iso_n3\": \"070\", \"un_a3\": \"070\", \"wb_a2\": \"BA\", \"wb_a3\": \"BIH\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BIH\", \"adm0_a3_us\": \"BIH\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 16.000000, \"long_len\": 22.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 19.005486281010121, 44.860233669609158 ], [ 19.36803, 44.863 ], [ 19.11761, 44.423070000000109 ], [ 19.59976, 44.03847 ], [ 19.454, 43.568100000000129 ], [ 19.21852, 43.52384 ], [ 19.03165, 43.43253 ], [ 18.70648, 43.20011 ], [ 18.56, 42.65 ], [ 17.674921502358984, 43.02856252702361 ], [ 17.297373488034452, 43.446340643887368 ], [ 16.916156447017329, 43.66772247982567 ], [ 16.456442905348865, 44.041239732431279 ], [ 16.239660271884532, 44.351143296885709 ], [ 15.750026075918981, 44.818711656262565 ], [ 15.959367303133376, 45.233776760430942 ], [ 16.318156772535872, 45.004126695325908 ], [ 16.534939406000206, 45.211607570977719 ], [ 17.002146030351014, 45.233776760430942 ], [ 17.861783481526402, 45.067740383477144 ], [ 18.553214145591653, 45.081589667331457 ], [ 19.005486281010121, 44.860233669609158 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Belarus\", \"sov_a3\": \"BLR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Belarus\", \"adm0_a3\": \"BLR\", \"geou_dif\": 0.000000, \"geounit\": \"Belarus\", \"gu_a3\": \"BLR\", \"su_dif\": 0.000000, \"subunit\": \"Belarus\", \"su_a3\": \"BLR\", \"brk_diff\": 0.000000, \"name\": \"Belarus\", \"name_long\": \"Belarus\", \"brk_a3\": \"BLR\", \"brk_name\": \"Belarus\", \"brk_group\": null, \"abbrev\": \"Bela.\", \"postal\": \"BY\", \"formal_en\": \"Republic of Belarus\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Belarus\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 11.000000, \"pop_est\": 9648533.000000, \"gdp_md_est\": 114100.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BY\", \"iso_a3\": \"BLR\", \"iso_n3\": \"112\", \"un_a3\": \"112\", \"wb_a2\": \"BY\", \"wb_a3\": \"BLR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BLR\", \"adm0_a3_us\": \"BLR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 23.484127638449849, 53.912497667041137 ], [ 24.450683628037037, 53.905702216194754 ], [ 25.536353794056993, 54.282423407602529 ], [ 25.768432651479799, 54.846962592175089 ], [ 26.588279249790389, 55.167175604871673 ], [ 26.494331495883756, 55.615106919977634 ], [ 27.102459751094528, 55.783313707087686 ], [ 28.176709425577997, 56.169129950578814 ], [ 29.229513380660308, 55.918344224666363 ], [ 29.371571893030673, 55.670090643936184 ], [ 29.896294386522356, 55.789463202530413 ], [ 30.87390913262001, 55.550976467503411 ], [ 30.971835971813135, 55.081547756564042 ], [ 30.757533807098721, 54.811770941784317 ], [ 31.38447228366374, 54.157056382862436 ], [ 31.791424187962239, 53.974638576872124 ], [ 31.731272820774507, 53.794029446012019 ], [ 32.405598585751164, 53.618045355842042 ], [ 32.693643019346041, 53.35142080343212 ], [ 32.304519484188233, 53.13272614197291 ], [ 31.497643670382931, 53.167426866256903 ], [ 31.305200636528014, 53.073995876673209 ], [ 31.540018344862261, 52.742052313846358 ], [ 31.785998162571587, 52.101677964885454 ], [ 30.927549269338982, 52.04235342061439 ], [ 30.619454380014844, 51.822806098022376 ], [ 30.555117221811457, 51.319503485715657 ], [ 30.157363722460897, 51.416138414101468 ], [ 29.254938185347925, 51.368234361366895 ], [ 28.992835320763533, 51.602044379271476 ], [ 28.617612745892249, 51.427713934934843 ], [ 28.241615024536571, 51.572227077839067 ], [ 27.454066196408434, 51.592303371784467 ], [ 26.337958611768556, 51.832288723347929 ], [ 25.327787713327009, 51.910656032918553 ], [ 24.553106316839518, 51.888461005249184 ], [ 24.00507775238421, 51.617443956094462 ], [ 23.527070753684374, 51.57845408793024 ], [ 23.508002150168693, 52.023646552124731 ], [ 23.199493849386187, 52.486977444053672 ], [ 23.799198846133379, 52.691099351606567 ], [ 23.804934930117781, 53.089731350306074 ], [ 23.527535841575002, 53.470121568406555 ], [ 23.484127638449849, 53.912497667041137 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Belize\", \"sov_a3\": \"BLZ\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Belize\", \"adm0_a3\": \"BLZ\", \"geou_dif\": 0.000000, \"geounit\": \"Belize\", \"gu_a3\": \"BLZ\", \"su_dif\": 0.000000, \"subunit\": \"Belize\", \"su_a3\": \"BLZ\", \"brk_diff\": 0.000000, \"name\": \"Belize\", \"name_long\": \"Belize\", \"brk_a3\": \"BLZ\", \"brk_name\": \"Belize\", \"brk_group\": null, \"abbrev\": \"Belize\", \"postal\": \"BZ\", \"formal_en\": \"Belize\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Belize\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 7.000000, \"pop_est\": 307899.000000, \"gdp_md_est\": 2536.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BZ\", \"iso_a3\": \"BLZ\", \"iso_n3\": \"084\", \"un_a3\": \"084\", \"wb_a2\": \"BZ\", \"wb_a3\": \"BLZ\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BLZ\", \"adm0_a3_us\": \"BLZ\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Central America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -89.143080410503316, 17.808318996649319 ], [ -89.150909389995533, 17.955467637600421 ], [ -89.029857347351822, 18.001511338772488 ], [ -88.848343878926613, 17.883198147040233 ], [ -88.490122850279349, 18.486830552641607 ], [ -88.300031094093697, 18.499982204659901 ], [ -88.296336229184817, 18.353272813383271 ], [ -88.106812913754382, 18.348673610909287 ], [ -88.123478563168504, 18.07667470954101 ], [ -88.285354987322805, 17.644142971258034 ], [ -88.197866787452654, 17.489475409408456 ], [ -88.302640753924436, 17.131693630435663 ], [ -88.239517991879907, 17.036066392479555 ], [ -88.355428229510565, 16.530774237529627 ], [ -88.55182451043585, 16.265467434143147 ], [ -88.732433641295941, 16.233634751851355 ], [ -88.930612759135272, 15.887273464415076 ], [ -89.229121670269279, 15.886937567605171 ], [ -89.150806037130948, 17.015576687075836 ], [ -89.143080410503316, 17.808318996649319 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Bolivia\", \"sov_a3\": \"BOL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Bolivia\", \"adm0_a3\": \"BOL\", \"geou_dif\": 0.000000, \"geounit\": \"Bolivia\", \"gu_a3\": \"BOL\", \"su_dif\": 0.000000, \"subunit\": \"Bolivia\", \"su_a3\": \"BOL\", \"brk_diff\": 0.000000, \"name\": \"Bolivia\", \"name_long\": \"Bolivia\", \"brk_a3\": \"BOL\", \"brk_name\": \"Bolivia\", \"brk_group\": null, \"abbrev\": \"Bolivia\", \"postal\": \"BO\", \"formal_en\": \"Plurinational State of Bolivia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Bolivia\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 3.000000, \"pop_est\": 9775246.000000, \"gdp_md_est\": 43270.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BO\", \"iso_a3\": \"BOL\", \"iso_n3\": \"068\", \"un_a3\": \"068\", \"wb_a2\": \"BO\", \"wb_a3\": \"BOL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BOL\", \"adm0_a3_us\": \"BOL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 7.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -62.846468471921561, -22.034985446869449 ], [ -63.986838141522476, -21.99364430103595 ], [ -64.377021043542257, -22.79809132252354 ], [ -64.964892137294612, -22.075861504812327 ], [ -66.273339402924847, -21.83231047942072 ], [ -67.106673550063604, -22.735924574476417 ], [ -67.828179897722734, -22.872918796482175 ], [ -68.21991309271128, -21.494346612231865 ], [ -68.757167121033746, -20.372657972904463 ], [ -68.442225104430918, -19.405068454671429 ], [ -68.966818406841867, -18.981683444904107 ], [ -69.100246955019486, -18.260125420812678 ], [ -69.59042375352405, -17.580011895419332 ], [ -68.959635382753305, -16.50069793057127 ], [ -69.389764166934711, -15.660129082911652 ], [ -69.160346645774951, -15.323973890853019 ], [ -69.339534674747014, -14.953195489158832 ], [ -68.948886684836594, -14.453639418193283 ], [ -68.92922380234954, -13.602683607643009 ], [ -68.88007951523997, -12.899729099176653 ], [ -68.665079718689626, -12.561300144097173 ], [ -69.529678107364958, -10.951734307502194 ], [ -68.786157599549483, -11.03638030359628 ], [ -68.271253628193264, -11.014521172736821 ], [ -68.048192308205387, -10.712059014532485 ], [ -67.173801235610739, -10.306812432499612 ], [ -66.646908331962806, -9.931331475466862 ], [ -65.338435228116424, -9.761987806846392 ], [ -65.444837002205389, -10.511451104375432 ], [ -65.321898769783019, -10.895872084194679 ], [ -65.402281460213032, -11.566270440317155 ], [ -64.316352912031604, -12.461978041232193 ], [ -63.196498786050569, -12.627032565972435 ], [ -62.803060268796386, -13.000653171442686 ], [ -62.127080857986385, -13.198780612849724 ], [ -61.713204311760776, -13.489202162330052 ], [ -61.084121263255653, -13.479383640194598 ], [ -60.503304002511136, -13.775954685117659 ], [ -60.459198167550028, -14.354007256734555 ], [ -60.26432634137737, -14.645979099183641 ], [ -60.251148851142936, -15.07721892665932 ], [ -60.542965664295153, -15.093910414289596 ], [ -60.158389655179036, -16.258283786690086 ], [ -58.24121985536668, -16.299573256091293 ], [ -58.388058437724041, -16.877109063385276 ], [ -58.280804002502251, -17.271710300366017 ], [ -57.734558274961003, -17.552468357007768 ], [ -57.498371141170992, -18.174187513911292 ], [ -57.676008877174311, -18.961839694904029 ], [ -57.949997321185826, -19.400004164306822 ], [ -57.853801642474508, -19.969995212486189 ], [ -58.166392381408045, -20.176700941653678 ], [ -58.183471442280506, -19.868399346600363 ], [ -59.115042487206111, -19.356906019775401 ], [ -60.043564622626491, -19.342746677327426 ], [ -61.786326463453769, -19.633736667562964 ], [ -62.265961269770798, -20.513734633061276 ], [ -62.291179368729225, -21.051634616787393 ], [ -62.685057135657885, -22.249029229422387 ], [ -62.846468471921561, -22.034985446869449 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Brazil\", \"sov_a3\": \"BRA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Brazil\", \"adm0_a3\": \"BRA\", \"geou_dif\": 0.000000, \"geounit\": \"Brazil\", \"gu_a3\": \"BRA\", \"su_dif\": 0.000000, \"subunit\": \"Brazil\", \"su_a3\": \"BRA\", \"brk_diff\": 0.000000, \"name\": \"Brazil\", \"name_long\": \"Brazil\", \"brk_a3\": \"BRA\", \"brk_name\": \"Brazil\", \"brk_group\": null, \"abbrev\": \"Brazil\", \"postal\": \"BR\", \"formal_en\": \"Federative Republic of Brazil\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Brazil\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 7.000000, \"pop_est\": 198739269.000000, \"gdp_md_est\": 1993000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"3. Emerging region: BRIC\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BR\", \"iso_a3\": \"BRA\", \"iso_n3\": \"076\", \"un_a3\": \"076\", \"wb_a2\": \"BR\", \"wb_a3\": \"BRA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BRA\", \"adm0_a3_us\": \"BRA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -57.625133429582959, -30.216294854454262 ], [ -56.290899624239081, -28.852760512000895 ], [ -55.162286342984572, -27.881915378533463 ], [ -54.490725267135524, -27.474756768505792 ], [ -53.648735317587892, -26.92347258881609 ], [ -53.628348965048744, -26.124865004177472 ], [ -54.13004960795439, -25.547639255477254 ], [ -54.625290696823576, -25.739255466415514 ], [ -54.428946092330591, -25.162184747012166 ], [ -54.293476325077449, -24.570799655863965 ], [ -54.292959560754518, -24.021014092710729 ], [ -54.652834235235133, -23.839578138933959 ], [ -55.02790178080955, -24.001273695575229 ], [ -55.400747239795422, -23.956935316668805 ], [ -55.517639329639636, -23.571997572526637 ], [ -55.610682745981144, -22.655619398694846 ], [ -55.797958136606908, -22.356929620047822 ], [ -56.473317430229393, -22.086300144135283 ], [ -56.881509568902899, -22.282153822521479 ], [ -57.937155727761294, -22.090175876557172 ], [ -57.8706739976178, -20.732687676681952 ], [ -58.166392381408045, -20.176700941653678 ], [ -57.853801642474508, -19.969995212486189 ], [ -57.949997321185826, -19.400004164306822 ], [ -57.676008877174311, -18.961839694904029 ], [ -57.498371141170992, -18.174187513911292 ], [ -57.734558274961003, -17.552468357007768 ], [ -58.280804002502251, -17.271710300366017 ], [ -58.388058437724041, -16.877109063385276 ], [ -58.24121985536668, -16.299573256091293 ], [ -60.158389655179036, -16.258283786690086 ], [ -60.542965664295153, -15.093910414289596 ], [ -60.251148851142936, -15.07721892665932 ], [ -60.26432634137737, -14.645979099183641 ], [ -60.459198167550028, -14.354007256734555 ], [ -60.503304002511136, -13.775954685117659 ], [ -61.084121263255653, -13.479383640194598 ], [ -61.713204311760776, -13.489202162330052 ], [ -62.127080857986385, -13.198780612849724 ], [ -62.803060268796386, -13.000653171442686 ], [ -63.196498786050569, -12.627032565972435 ], [ -64.316352912031604, -12.461978041232193 ], [ -65.402281460213032, -11.566270440317155 ], [ -65.321898769783019, -10.895872084194679 ], [ -65.444837002205389, -10.511451104375432 ], [ -65.338435228116424, -9.761987806846392 ], [ -66.646908331962806, -9.931331475466862 ], [ -67.173801235610739, -10.306812432499612 ], [ -68.048192308205387, -10.712059014532485 ], [ -68.271253628193264, -11.014521172736821 ], [ -68.786157599549483, -11.03638030359628 ], [ -69.529678107364958, -10.951734307502194 ], [ -70.093752204046893, -11.123971856331012 ], [ -70.548685675728407, -11.009146823778465 ], [ -70.481893886991173, -9.490118096558845 ], [ -71.302412278921537, -10.079436130415374 ], [ -72.18489071316985, -10.053597914269432 ], [ -72.563033006465645, -9.520193780152717 ], [ -73.226713426390162, -9.462212823121234 ], [ -73.015382656532552, -9.032833347208062 ], [ -73.571059332967067, -8.424446709835834 ], [ -73.987235480429661, -7.523829847853065 ], [ -73.723401455363501, -7.340998630404414 ], [ -73.724486660441642, -6.91859547285064 ], [ -73.120027431923603, -6.629930922068239 ], [ -73.21971126981461, -6.089188734566078 ], [ -72.9645072089412, -5.741251315944893 ], [ -72.891927659787257, -5.274561455916981 ], [ -71.748405727816547, -4.593982842633011 ], [ -70.928843349883579, -4.401591485210368 ], [ -70.794768846302304, -4.251264743673303 ], [ -69.893635219996625, -4.298186944194327 ], [ -69.444101935489613, -1.556287123219818 ], [ -69.420485805932231, -1.122618503426409 ], [ -69.5770653957766, -0.549991957200163 ], [ -70.020655890570055, -0.185156345219539 ], [ -70.015565761989308, 0.541414292804205 ], [ -69.452396002872462, 0.706158758950693 ], [ -69.252434048119056, 0.602650865070075 ], [ -69.21863766140018, 0.985676581217433 ], [ -69.80459672715773, 1.089081122233466 ], [ -69.816973232691623, 1.714805202639624 ], [ -67.868565029558837, 1.692455145673392 ], [ -67.537810024674698, 2.03716278727633 ], [ -67.259997524673594, 1.719998684084956 ], [ -67.065048183852497, 1.130112209473225 ], [ -66.87632585312258, 1.253360500489336 ], [ -66.325765143484958, 0.724452215982012 ], [ -65.548267381437569, 0.78925446207603 ], [ -65.354713304288367, 1.0952822941085 ], [ -64.611011928959869, 1.328730576987042 ], [ -64.199305792890513, 1.49285492594602 ], [ -64.083085496666087, 1.91636912679408 ], [ -63.368788011311665, 2.200899562993129 ], [ -63.422867397705119, 2.411067613124175 ], [ -64.269999152265797, 2.497005520025567 ], [ -64.408827887617917, 3.126786200366624 ], [ -64.368494432214106, 3.797210394705246 ], [ -64.816064012294021, 4.056445217297423 ], [ -64.628659430587547, 4.14848094320925 ], [ -63.888342861574159, 4.020530096854571 ], [ -63.093197597899106, 3.770571193858785 ], [ -62.804533047116706, 4.006965033377952 ], [ -62.085429653559132, 4.162123521334308 ], [ -60.966893276601539, 4.536467596856639 ], [ -60.601179165271944, 4.91809804933213 ], [ -60.733574184803722, 5.200277207861901 ], [ -60.213683437731333, 5.244486395687602 ], [ -59.980958624904886, 5.014061184098139 ], [ -60.11100236676738, 4.574966538914083 ], [ -59.767405768458715, 4.423502915866607 ], [ -59.538039923731233, 3.958802598481938 ], [ -59.815413174057866, 3.606498521332085 ], [ -59.974524909084558, 2.755232652188056 ], [ -59.718545701726747, 2.24963043864436 ], [ -59.646043667221257, 1.786893825686789 ], [ -59.030861579002647, 1.317697658692722 ], [ -58.540012986878295, 1.268088283692521 ], [ -58.429477098205965, 1.463941962078721 ], [ -58.113449876525017, 1.507195135907025 ], [ -57.660971035377372, 1.682584947105639 ], [ -57.335822923396904, 1.948537705895759 ], [ -56.782704230360828, 1.863710842288654 ], [ -56.539385748914555, 1.899522609866921 ], [ -55.995698004771754, 1.817667141116601 ], [ -55.905600145070885, 2.02199575439866 ], [ -56.073341844290297, 2.220794989425499 ], [ -55.973322109589375, 2.510363877773017 ], [ -55.569755011605999, 2.421506252447131 ], [ -55.097587449755139, 2.523748073736613 ], [ -54.524754197799716, 2.311848863123785 ], [ -54.08806250671725, 2.105556545414629 ], [ -53.778520677288917, 2.376702785650082 ], [ -53.554839240113544, 2.334896551925951 ], [ -53.418465135295307, 2.053389187015981 ], [ -52.939657151894956, 2.124857692875636 ], [ -52.556424730018421, 2.504705308437053 ], [ -52.249337531123956, 3.241094468596245 ], [ -51.657797410678889, 4.156232408053029 ], [ -51.317146369010857, 4.203490505383954 ], [ -51.069771287629656, 3.650397650564031 ], [ -50.508875291533656, 1.901563828942457 ], [ -49.974075893745059, 1.736483465986069 ], [ -49.947100796088712, 1.046189683431223 ], [ -50.699251268096916, 0.222984117021682 ], [ -50.388210822132137, -0.078444512536819 ], [ -48.62056677915632, -0.235489190271821 ], [ -48.584496629416591, -1.237805271005001 ], [ -47.824956427590635, -0.5816179337628 ], [ -46.566583624851226, -0.941027520352776 ], [ -44.905703090990414, -1.551739597178134 ], [ -44.417619187993665, -2.137750339367976 ], [ -44.581588507655781, -2.691308282078524 ], [ -43.418791266440195, -2.383110039889793 ], [ -41.472656826328247, -2.912018324397116 ], [ -39.978665330554037, -2.873054294449041 ], [ -38.500383470196567, -3.700652357603396 ], [ -37.2232521225352, -4.820945733258917 ], [ -36.452937384576387, -5.109403578312154 ], [ -35.597795783010469, -5.149504489770649 ], [ -35.23538896334756, -5.464937432480247 ], [ -34.896029832486832, -6.738193047719711 ], [ -34.729993455533034, -7.343220716992967 ], [ -35.128212042774223, -8.996401462442286 ], [ -35.636966518687714, -9.649281508017815 ], [ -37.046518724096998, -11.040721123908803 ], [ -37.683611619607362, -12.171194756725823 ], [ -38.423876512188443, -13.038118584854288 ], [ -38.673887091616521, -13.057652276260619 ], [ -38.953275722802545, -13.793369642800023 ], [ -38.882298143049653, -15.667053724838768 ], [ -39.161092495264313, -17.208406670808472 ], [ -39.267339240056401, -17.867746270420483 ], [ -39.583521491034233, -18.262295830968938 ], [ -39.760823330227637, -19.599113457927409 ], [ -40.774740770010339, -20.904511814052423 ], [ -40.944756232250612, -21.937316989837811 ], [ -41.754164191238225, -22.370675551037458 ], [ -41.98828426773656, -22.970070489190896 ], [ -43.074703742024752, -22.967693373305469 ], [ -44.647811855637812, -23.351959323827842 ], [ -45.352135789559917, -23.796841729428582 ], [ -46.472093268405537, -24.088968601174543 ], [ -47.648972337420659, -24.885199069927722 ], [ -48.495458136577703, -25.877024834905654 ], [ -48.64100480812774, -26.623697605090932 ], [ -48.474735887228654, -27.175911960561891 ], [ -48.661520351747626, -28.18613453543572 ], [ -48.8884574041574, -28.674115085567884 ], [ -49.587329474472675, -29.224469089476337 ], [ -50.696874152211485, -30.98446502047296 ], [ -51.576226162306156, -31.777698256153212 ], [ -52.256081305538046, -32.24536996839467 ], [ -52.712099982297694, -33.196578057591182 ], [ -53.373661668498244, -33.768377780900764 ], [ -53.650543992718099, -33.20200408298183 ], [ -53.209588995971544, -32.727666110974724 ], [ -53.787951626182192, -32.047242526987624 ], [ -54.572451544805119, -31.494511407193748 ], [ -55.601510179249345, -30.853878676071393 ], [ -55.973244594940937, -30.883075860316303 ], [ -56.976025763564735, -30.109686374636127 ], [ -57.625133429582959, -30.216294854454262 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Brunei\", \"sov_a3\": \"BRN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Brunei\", \"adm0_a3\": \"BRN\", \"geou_dif\": 0.000000, \"geounit\": \"Brunei\", \"gu_a3\": \"BRN\", \"su_dif\": 0.000000, \"subunit\": \"Brunei\", \"su_a3\": \"BRN\", \"brk_diff\": 0.000000, \"name\": \"Brunei\", \"name_long\": \"Brunei Darussalam\", \"brk_a3\": \"BRN\", \"brk_name\": \"Brunei\", \"brk_group\": null, \"abbrev\": \"Brunei\", \"postal\": \"BN\", \"formal_en\": \"Negara Brunei Darussalam\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Brunei\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 12.000000, \"pop_est\": 388190.000000, \"gdp_md_est\": 20250.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BN\", \"iso_a3\": \"BRN\", \"iso_n3\": \"096\", \"un_a3\": \"096\", \"wb_a2\": \"BN\", \"wb_a3\": \"BRN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BRN\", \"adm0_a3_us\": \"BRN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 6.000000, \"long_len\": 17.000000, \"abbrev_len\": 6.000000, \"tiny\": 2.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 114.204016554828371, 4.525873928236805 ], [ 114.599961379048722, 4.900011298029966 ], [ 115.450710483869813, 5.447729803891534 ], [ 115.405700311343608, 4.955227565933839 ], [ 115.347460972150657, 4.316636053887009 ], [ 114.869557326315402, 4.348313706881925 ], [ 114.659595981913526, 4.007636826997754 ], [ 114.204016554828371, 4.525873928236805 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Bhutan\", \"sov_a3\": \"BTN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Bhutan\", \"adm0_a3\": \"BTN\", \"geou_dif\": 0.000000, \"geounit\": \"Bhutan\", \"gu_a3\": \"BTN\", \"su_dif\": 0.000000, \"subunit\": \"Bhutan\", \"su_a3\": \"BTN\", \"brk_diff\": 0.000000, \"name\": \"Bhutan\", \"name_long\": \"Bhutan\", \"brk_a3\": \"BTN\", \"brk_name\": \"Bhutan\", \"brk_group\": null, \"abbrev\": \"Bhutan\", \"postal\": \"BT\", \"formal_en\": \"Kingdom of Bhutan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Bhutan\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 8.000000, \"pop_est\": 691141.000000, \"gdp_md_est\": 3524.000000, \"pop_year\": -99.000000, \"lastcensus\": 2005.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BT\", \"iso_a3\": \"BTN\", \"iso_n3\": \"064\", \"un_a3\": \"064\", \"wb_a2\": \"BT\", \"wb_a3\": \"BTN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BTN\", \"adm0_a3_us\": \"BTN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Southern Asia\", \"region_wb\": \"South Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 91.696656528696678, 27.771741848251665 ], [ 92.103711785859744, 27.452614040633208 ], [ 92.033483514375092, 26.838310451763562 ], [ 91.217512648486434, 26.808648179628022 ], [ 90.373274774134075, 26.875724188742879 ], [ 89.744527622438852, 26.719402981059957 ], [ 88.83564253128938, 27.098966376243762 ], [ 88.814248488320558, 27.299315904239364 ], [ 89.475810174521115, 28.042758897406397 ], [ 90.015828891971182, 28.296438503527217 ], [ 90.730513950567797, 28.064953925075756 ], [ 91.258853794319919, 28.040614325466294 ], [ 91.696656528696678, 27.771741848251665 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Botswana\", \"sov_a3\": \"BWA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Botswana\", \"adm0_a3\": \"BWA\", \"geou_dif\": 0.000000, \"geounit\": \"Botswana\", \"gu_a3\": \"BWA\", \"su_dif\": 0.000000, \"subunit\": \"Botswana\", \"su_a3\": \"BWA\", \"brk_diff\": 0.000000, \"name\": \"Botswana\", \"name_long\": \"Botswana\", \"brk_a3\": \"BWA\", \"brk_name\": \"Botswana\", \"brk_group\": null, \"abbrev\": \"Bwa.\", \"postal\": \"BW\", \"formal_en\": \"Republic of Botswana\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Botswana\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 3.000000, \"pop_est\": 1990876.000000, \"gdp_md_est\": 27060.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"BW\", \"iso_a3\": \"BWA\", \"iso_n3\": \"072\", \"un_a3\": \"072\", \"wb_a2\": \"BW\", \"wb_a3\": \"BWA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"BWA\", \"adm0_a3_us\": \"BWA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Southern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 25.649163445750162, -18.536025892818991 ], [ 25.850391473094732, -18.714412937090536 ], [ 26.164790887158485, -19.293085625894939 ], [ 27.296504754350508, -20.391519870690999 ], [ 27.724747348753255, -20.499058526290391 ], [ 27.727227817503259, -20.851801853114715 ], [ 28.021370070108617, -21.485975030200585 ], [ 28.794656202924216, -21.639454034107452 ], [ 29.43218834810904, -22.091312758067588 ], [ 28.017235955525251, -22.827753594659079 ], [ 27.119409620886245, -23.574323011979775 ], [ 26.786406691197413, -24.240690606383485 ], [ 26.485753208123299, -24.616326592713104 ], [ 25.941652052522159, -24.696373386333221 ], [ 25.76584882986521, -25.174845472923678 ], [ 25.664666375437719, -25.486816094669713 ], [ 25.025170525825786, -25.719670098576898 ], [ 24.211266717228796, -25.670215752873574 ], [ 23.73356977712271, -25.390129489851617 ], [ 23.312096795350186, -25.26868987396572 ], [ 22.824271274514899, -25.500458672794771 ], [ 22.579531691180591, -25.979447523708146 ], [ 22.105968865657868, -26.280256036079138 ], [ 21.605896030369394, -26.726533705351756 ], [ 20.889609002371738, -26.828542982695915 ], [ 20.66647016773544, -26.477453301704923 ], [ 20.758609246511838, -25.86813648855145 ], [ 20.165725538827189, -24.917961928000771 ], [ 19.895767856534434, -24.767790215760591 ], [ 19.895457797940679, -21.849156996347869 ], [ 20.88113406747587, -21.814327080983148 ], [ 20.910641310314535, -18.252218926672022 ], [ 21.655040317478978, -18.219146010005225 ], [ 23.196858351339301, -17.869038181227786 ], [ 23.579005568137717, -18.281261081620059 ], [ 24.217364536239213, -17.889347019118489 ], [ 24.520705193792537, -17.887124932529936 ], [ 25.084443393664571, -17.661815687737374 ], [ 25.264225701608012, -17.736539808831417 ], [ 25.649163445750162, -18.536025892818991 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Central African Republic\", \"sov_a3\": \"CAF\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Central African Republic\", \"adm0_a3\": \"CAF\", \"geou_dif\": 0.000000, \"geounit\": \"Central African Republic\", \"gu_a3\": \"CAF\", \"su_dif\": 0.000000, \"subunit\": \"Central African Republic\", \"su_a3\": \"CAF\", \"brk_diff\": 0.000000, \"name\": \"Central African Rep.\", \"name_long\": \"Central African Republic\", \"brk_a3\": \"CAF\", \"brk_name\": \"Central African Rep.\", \"brk_group\": null, \"abbrev\": \"C.A.R.\", \"postal\": \"CF\", \"formal_en\": \"Central African Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Central African Republic\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 9.000000, \"pop_est\": 4511488.000000, \"gdp_md_est\": 3198.000000, \"pop_year\": -99.000000, \"lastcensus\": 2003.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CF\", \"iso_a3\": \"CAF\", \"iso_n3\": \"140\", \"un_a3\": \"140\", \"wb_a2\": \"CF\", \"wb_a3\": \"CAF\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CAF\", \"adm0_a3_us\": \"CAF\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Middle Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 20.000000, \"long_len\": 24.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 15.279460483469109, 7.421924546737969 ], [ 16.10623172370677, 7.497087917506505 ], [ 16.290561557691888, 7.754307359239306 ], [ 16.456184523187346, 7.734773667832968 ], [ 16.705988396886255, 7.508327541529979 ], [ 17.964929640380888, 7.890914008002866 ], [ 18.389554884523221, 8.281303615751824 ], [ 18.911021762780507, 8.630894680206353 ], [ 18.812009718509273, 8.982914536978598 ], [ 19.094008009526021, 9.07484691002584 ], [ 20.059685499764271, 9.012706000194854 ], [ 21.000868361096167, 9.475985215691509 ], [ 21.723821648859456, 10.567055568885976 ], [ 22.231129184668788, 10.97188873946051 ], [ 22.864165480244225, 11.142395127807546 ], [ 22.97754357269261, 10.71446259199854 ], [ 23.554304233502194, 10.089255275915308 ], [ 23.55724979014283, 9.681218166538684 ], [ 23.394779087017184, 9.265067857292223 ], [ 23.459012892355986, 8.954285793488893 ], [ 23.805813429466752, 8.666318874542426 ], [ 24.567369012152085, 8.229187933785468 ], [ 25.114932488716789, 7.825104071479174 ], [ 25.124130893664727, 7.500085150579437 ], [ 25.796647983511178, 6.979315904158071 ], [ 26.213418409945117, 6.546603298362072 ], [ 26.465909458123235, 5.94671743410187 ], [ 27.21340905122517, 5.550953477394557 ], [ 27.37422610851749, 5.233944403500061 ], [ 27.04406538260471, 5.127852688004836 ], [ 26.402760857862543, 5.150874538590871 ], [ 25.650455356557472, 5.256087754737123 ], [ 25.278798455514305, 5.170408229997192 ], [ 25.128833449003281, 4.92724477784779 ], [ 24.805028924262416, 4.89724660890235 ], [ 24.410531040146253, 5.10878408448913 ], [ 23.297213982850138, 4.609693101414223 ], [ 22.841479526468106, 4.710126247573484 ], [ 22.704123569436291, 4.633050848810157 ], [ 22.405123732195538, 4.029160061047321 ], [ 21.659122755630023, 4.22434194581372 ], [ 20.927591180106276, 4.322785549329737 ], [ 20.290679152108936, 4.691677761245288 ], [ 19.467783644293149, 5.03152781821278 ], [ 18.932312452884759, 4.709506130385975 ], [ 18.542982211997781, 4.201785183118318 ], [ 18.453065219809929, 3.504385891123349 ], [ 17.809900343505262, 3.56019643799857 ], [ 17.133042433346304, 3.728196519379452 ], [ 16.537058139724138, 3.198254706226279 ], [ 16.012852410555354, 2.267639675298085 ], [ 15.907380812247652, 2.557389431158612 ], [ 15.862732374747482, 3.013537298998983 ], [ 15.405395948964383, 3.33530060466434 ], [ 15.036219516671252, 3.851367295747124 ], [ 14.950953403389661, 4.210389309094921 ], [ 14.478372430080469, 4.732605495620447 ], [ 14.558935988023507, 5.03059764243153 ], [ 14.459407179429348, 5.4517605656103 ], [ 14.536560092841114, 6.22695872642069 ], [ 14.776545444404576, 6.408498033062045 ], [ 15.279460483469109, 7.421924546737969 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Canada\", \"sov_a3\": \"CAN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Canada\", \"adm0_a3\": \"CAN\", \"geou_dif\": 0.000000, \"geounit\": \"Canada\", \"gu_a3\": \"CAN\", \"su_dif\": 0.000000, \"subunit\": \"Canada\", \"su_a3\": \"CAN\", \"brk_diff\": 0.000000, \"name\": \"Canada\", \"name_long\": \"Canada\", \"brk_a3\": \"CAN\", \"brk_name\": \"Canada\", \"brk_group\": null, \"abbrev\": \"Can.\", \"postal\": \"CA\", \"formal_en\": \"Canada\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Canada\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 2.000000, \"pop_est\": 33487208.000000, \"gdp_md_est\": 1300000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"1. Developed region: G7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CA\", \"iso_a3\": \"CAN\", \"iso_n3\": \"124\", \"un_a3\": \"124\", \"wb_a2\": \"CA\", \"wb_a3\": \"CAN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CAN\", \"adm0_a3_us\": \"CAN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Northern America\", \"region_wb\": \"North America\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -63.6645, 46.55001 ], [ -62.9393, 46.41587 ], [ -62.01208, 46.44314 ], [ -62.50391, 46.03339 ], [ -62.87433, 45.96818 ], [ -64.1428, 46.39265 ], [ -64.39261, 46.72747 ], [ -64.01486, 47.03601 ], [ -63.6645, 46.55001 ] ] ], [ [ [ -61.806305, 49.10506 ], [ -62.29318, 49.08717 ], [ -63.58926, 49.40069 ], [ -64.51912, 49.87304 ], [ -64.17322, 49.95718 ], [ -62.85829, 49.70641 ], [ -61.835585, 49.28855 ], [ -61.806305, 49.10506 ] ] ], [ [ [ -123.510001587551159, 48.510010891303438 ], [ -124.012890788399503, 48.370846259141416 ], [ -125.655012777338371, 48.825004584338501 ], [ -125.954994466792769, 49.179995835967645 ], [ -126.850004435871881, 49.530000311880428 ], [ -127.029993449544421, 49.81499583597008 ], [ -128.059336304366241, 49.994959011426602 ], [ -128.444584107102173, 50.539137681676124 ], [ -128.358413656255436, 50.770648098343685 ], [ -127.308581096029897, 50.552573554071955 ], [ -126.695000977212317, 50.400903225295394 ], [ -125.755006673823203, 50.295018215529382 ], [ -125.415001587558805, 49.950000515332619 ], [ -124.920768189119343, 49.475274970083404 ], [ -123.922508708321018, 49.062483628935809 ], [ -123.510001587551159, 48.510010891303438 ] ] ], [ [ [ -56.134035814017125, 50.687009792679305 ], [ -56.795881720595276, 49.81230866149096 ], [ -56.143105027884303, 50.150117499382844 ], [ -55.471492275602941, 49.935815334668462 ], [ -55.822401089080927, 49.587128607779107 ], [ -54.935142584845664, 49.31301097268684 ], [ -54.473775397343786, 49.556691189159181 ], [ -53.476549445191324, 49.249138902374057 ], [ -53.78601375997124, 48.516780503933632 ], [ -53.086133999226263, 48.687803656603535 ], [ -52.958648240762244, 48.157164211614486 ], [ -52.648098720904187, 47.535548407575504 ], [ -53.069158291218343, 46.65549876564495 ], [ -53.521456264853043, 46.61829173439483 ], [ -54.178935512902541, 46.807065741557011 ], [ -53.961868659060485, 47.625207017601923 ], [ -54.240482143762137, 47.752279364607631 ], [ -55.400773078011497, 46.884993801453135 ], [ -55.997480841685842, 46.919720363953303 ], [ -55.291219041552779, 47.389562486350997 ], [ -56.250798712780522, 47.632545070987391 ], [ -57.325229254777099, 47.572807115258001 ], [ -59.266015184146767, 47.603347886742512 ], [ -59.419494188053704, 47.899453843774864 ], [ -58.796586473207412, 48.251525376979487 ], [ -59.231624518456528, 48.523188381537807 ], [ -58.391804979065228, 49.125580552764177 ], [ -57.358689744686046, 50.718274034215852 ], [ -56.738650071832012, 51.287438259478535 ], [ -55.870976935435294, 51.632094224649194 ], [ -55.406974249886616, 51.588272610065729 ], [ -55.600218268442092, 51.317074693397927 ], [ -56.134035814017125, 50.687009792679305 ] ] ], [ [ [ -133.180004041711697, 54.169975490935315 ], [ -132.71000788443132, 54.040009315423532 ], [ -131.749989584003288, 54.120004380909222 ], [ -132.049480347350993, 52.984621487024526 ], [ -131.179042521826602, 52.180432847698285 ], [ -131.577829549822923, 52.182370713909251 ], [ -132.180428426778548, 52.639707139692405 ], [ -132.549992432313871, 53.100014960332146 ], [ -133.054611178755522, 53.411468817755377 ], [ -133.239664482792705, 53.851080227262401 ], [ -133.180004041711697, 54.169975490935315 ] ] ], [ [ [ -79.26582, 62.158675 ], [ -79.65752, 61.63308 ], [ -80.09956, 61.7181 ], [ -80.36215, 62.01649 ], [ -80.315395, 62.085565 ], [ -79.92939, 62.3856 ], [ -79.52002, 62.36371 ], [ -79.26582, 62.158675 ] ] ], [ [ [ -81.89825, 62.7108 ], [ -83.06857, 62.15922 ], [ -83.77462, 62.18231 ], [ -83.99367, 62.4528 ], [ -83.25048, 62.91409 ], [ -81.87699, 62.90458 ], [ -81.89825, 62.7108 ] ] ], [ [ [ -85.161307949549865, 65.657284654392811 ], [ -84.975763719405961, 65.217518215588996 ], [ -84.464012010419509, 65.371772365980178 ], [ -83.882626308919754, 65.10961782496355 ], [ -82.787576870438784, 64.766693020274687 ], [ -81.642013719392537, 64.455135809986956 ], [ -81.553440314444259, 63.979609280037153 ], [ -80.817361212878865, 64.057485663501012 ], [ -80.103451300766608, 63.725981350348604 ], [ -80.991019863595682, 63.411246039474975 ], [ -82.547178107417011, 63.651722317145243 ], [ -83.108797573565056, 64.101875718839722 ], [ -84.100416632813875, 63.569711819098018 ], [ -85.523404710619019, 63.052379055424097 ], [ -85.866768764982368, 63.637252916103563 ], [ -87.221983201836736, 63.541238104905233 ], [ -86.352759772471273, 64.035833238370714 ], [ -86.224886440765147, 64.822916978608276 ], [ -85.883847825854872, 65.738778388117055 ], [ -85.161307949549865, 65.657284654392811 ] ] ], [ [ [ -75.86588, 67.14886 ], [ -76.98687, 67.09873 ], [ -77.2364, 67.58809 ], [ -76.81166, 68.14856 ], [ -75.89521, 68.28721 ], [ -75.1145, 68.01036 ], [ -75.10333, 67.58202 ], [ -75.21597, 67.44425 ], [ -75.86588, 67.14886 ] ] ], [ [ [ -95.647681203800516, 69.107690358321776 ], [ -96.269521203800593, 68.757040358321746 ], [ -97.617401203800569, 69.060030358321796 ], [ -98.431801203800518, 68.950700358321797 ], [ -99.797401203800533, 69.4000303583218 ], [ -98.917401203800551, 69.710030358321802 ], [ -98.218261203800495, 70.143540358321758 ], [ -97.157401203800561, 69.860030358321808 ], [ -96.557401203800538, 69.680030358321773 ], [ -96.257401203800526, 69.490030358321775 ], [ -95.647681203800516, 69.107690358321776 ] ] ], [ [ [ -90.5471, 69.49766 ], [ -90.55151, 68.47499 ], [ -89.21515, 69.25873 ], [ -88.01966, 68.61508 ], [ -88.31749, 67.87338 ], [ -87.35017, 67.19872 ], [ -86.30607, 67.92146 ], [ -85.57664, 68.78456 ], [ -85.52197, 69.88211 ], [ -84.10081, 69.80539 ], [ -82.62258, 69.65826 ], [ -81.28043, 69.16202 ], [ -81.2202, 68.66567 ], [ -81.96436, 68.13253 ], [ -81.25928, 67.59716 ], [ -81.38653, 67.11078 ], [ -83.34456, 66.41154 ], [ -84.73542, 66.2573 ], [ -85.76943, 66.55833 ], [ -86.0676, 66.05625 ], [ -87.03143, 65.21297 ], [ -87.32324, 64.77563 ], [ -88.48296, 64.09897 ], [ -89.91444, 64.03273 ], [ -90.70398, 63.61017 ], [ -90.77004, 62.96021 ], [ -91.93342, 62.83508 ], [ -93.15698, 62.02469 ], [ -94.24153, 60.89865 ], [ -94.62931, 60.11021 ], [ -94.6846, 58.94882 ], [ -93.21502, 58.78212 ], [ -92.76462, 57.84571 ], [ -92.29703, 57.08709 ], [ -90.89769, 57.28468 ], [ -89.03953, 56.85172 ], [ -88.03978, 56.47162 ], [ -87.32421, 55.99914 ], [ -86.07121, 55.72383 ], [ -85.01181, 55.3026 ], [ -83.36055, 55.24489 ], [ -82.27285, 55.14832 ], [ -82.4362, 54.28227 ], [ -82.12502, 53.27703 ], [ -81.40075, 52.15788 ], [ -79.91289, 51.20842 ], [ -79.14301, 51.53393 ], [ -78.60191, 52.56208 ], [ -79.12421, 54.14145 ], [ -79.82958, 54.66772 ], [ -78.22874, 55.13645 ], [ -77.0956, 55.83741 ], [ -76.54137, 56.53423 ], [ -76.62319, 57.20263 ], [ -77.30226, 58.05209 ], [ -78.51688, 58.80458 ], [ -77.33676, 59.85261 ], [ -77.77272, 60.75788 ], [ -78.10687, 62.31964 ], [ -77.41067, 62.55053 ], [ -75.69621, 62.2784 ], [ -74.6682, 62.18111 ], [ -73.83988, 62.4438 ], [ -72.90853, 62.10507 ], [ -71.67708, 61.52535 ], [ -71.37369, 61.13717 ], [ -69.59042, 61.06141 ], [ -69.62033, 60.22125 ], [ -69.2879, 58.95736 ], [ -68.37455, 58.80106 ], [ -67.64976, 58.21206 ], [ -66.20178, 58.76731 ], [ -65.24517, 59.87071 ], [ -64.58352, 60.33558 ], [ -63.80475, 59.4426 ], [ -62.50236, 58.16708 ], [ -61.39655, 56.96745 ], [ -61.79866, 56.33945 ], [ -60.46853, 55.77548 ], [ -59.56962, 55.20407 ], [ -57.97508, 54.94549 ], [ -57.3332, 54.6265 ], [ -56.93689, 53.78032 ], [ -56.15811, 53.64749 ], [ -55.75632, 53.27036 ], [ -55.68338, 52.14664 ], [ -56.40916, 51.7707 ], [ -57.12691, 51.41972 ], [ -58.77482, 51.0643 ], [ -60.03309, 50.24277 ], [ -61.72366, 50.08046 ], [ -63.86251, 50.29099 ], [ -65.36331, 50.2982 ], [ -66.39905, 50.22897 ], [ -67.23631, 49.51156 ], [ -68.51114, 49.06836 ], [ -69.95362, 47.74488 ], [ -71.10458, 46.82171 ], [ -70.25522, 46.98606 ], [ -68.65, 48.3 ], [ -66.55243, 49.1331 ], [ -65.05626, 49.23278 ], [ -64.17099, 48.74248 ], [ -65.11545, 48.07085 ], [ -64.79854, 46.99297 ], [ -64.47219, 46.23849 ], [ -63.17329, 45.73902 ], [ -61.52072, 45.88377 ], [ -60.51815, 47.00793 ], [ -60.4486, 46.28264 ], [ -59.80287, 45.9204 ], [ -61.03988, 45.26525 ], [ -63.25471, 44.67014 ], [ -64.24656, 44.26553 ], [ -65.36406, 43.54523 ], [ -66.1234, 43.61867 ], [ -66.16173, 44.46512 ], [ -64.42549, 45.29204 ], [ -66.02605, 45.25931 ], [ -67.13741, 45.13753 ], [ -67.79134, 45.70281 ], [ -67.79046, 47.06636 ], [ -68.23444, 47.35486 ], [ -68.905, 47.185 ], [ -69.237216, 47.447781 ], [ -69.99997, 46.69307 ], [ -70.305, 45.915 ], [ -70.66, 45.46 ], [ -71.08482, 45.30524 ], [ -71.405, 45.255 ], [ -71.50506, 45.0082 ], [ -73.34783, 45.00738 ], [ -74.867, 45.00048 ], [ -75.31821, 44.81645 ], [ -76.375, 44.09631 ], [ -76.5, 44.018458893758719 ], [ -76.820034145805579, 43.628784288093755 ], [ -77.737885097957701, 43.629055589363304 ], [ -78.720279914042379, 43.625089423184875 ], [ -79.171673550111876, 43.466339423184223 ], [ -79.01, 43.27 ], [ -78.92, 42.965 ], [ -78.939362148743697, 42.863611355148038 ], [ -80.247447679347943, 42.366199856122591 ], [ -81.277746548167158, 42.209025987306859 ], [ -82.439277716791622, 41.675105088867156 ], [ -82.690089280920176, 41.675105088867156 ], [ -83.029810146806938, 41.832795722005841 ], [ -83.141999681312569, 41.975681057292832 ], [ -83.12, 42.08 ], [ -82.9, 42.43 ], [ -82.43, 42.98 ], [ -82.137642381503895, 43.571087551439916 ], [ -82.337763125431081, 44.44 ], [ -82.550924648758183, 45.347516587905375 ], [ -83.592850714843081, 45.81689362241238 ], [ -83.469550747394635, 45.994686387712591 ], [ -83.616130947590591, 46.11692698829907 ], [ -83.890765347005754, 46.11692698829907 ], [ -84.091851264161477, 46.275418606138174 ], [ -84.142119513673379, 46.512225857115737 ], [ -84.3367, 46.40877 ], [ -84.6049, 46.4396 ], [ -84.543748745445868, 46.538684190449146 ], [ -84.779238247399917, 46.637101955749046 ], [ -84.876079881514869, 46.900083319682381 ], [ -85.652363247403429, 47.220218817730512 ], [ -86.461990831228263, 47.553338019392044 ], [ -87.439792623300235, 47.94 ], [ -88.378114183286726, 48.302917588893735 ], [ -89.272917446636683, 48.019808254582671 ], [ -89.6, 48.01 ], [ -90.83, 48.27 ], [ -91.64, 48.14 ], [ -92.61, 48.45 ], [ -93.63087, 48.60926 ], [ -94.32914, 48.67074 ], [ -94.64, 48.84 ], [ -94.81758, 49.38905 ], [ -95.15609, 49.38425 ], [ -95.159069509172042, 49.0 ], [ -97.228720000004813, 49.0007 ], [ -100.65, 49.0 ], [ -104.04826, 48.99986 ], [ -107.05, 49.0 ], [ -110.05, 49.0 ], [ -113.0, 49.0 ], [ -116.04818, 49.0 ], [ -117.03121, 49.0 ], [ -120.0, 49.0 ], [ -122.84, 49.0 ], [ -122.97421, 49.002537777777803 ], [ -124.91024, 49.98456 ], [ -125.62461, 50.41656 ], [ -127.43561, 50.83061 ], [ -127.99276, 51.71583 ], [ -127.85032, 52.32961 ], [ -129.12979, 52.75538 ], [ -129.30523, 53.56159 ], [ -130.51497, 54.28757 ], [ -130.53611, 54.80278 ], [ -129.98, 55.285 ], [ -130.00778, 55.91583 ], [ -131.70781, 56.55212 ], [ -132.73042, 57.69289 ], [ -133.35556, 58.41028 ], [ -134.27111, 58.86111 ], [ -134.945, 59.27056 ], [ -135.47583, 59.78778 ], [ -136.47972, 59.46389 ], [ -137.4525, 58.905 ], [ -138.34089, 59.56211 ], [ -139.039, 60.0 ], [ -140.013, 60.27682 ], [ -140.99778, 60.30639 ], [ -140.9925, 66.00003 ], [ -140.986, 69.712 ], [ -139.12052, 69.47102 ], [ -137.54636, 68.99002 ], [ -136.50358, 68.89804 ], [ -135.62576, 69.31512 ], [ -134.41464, 69.62743 ], [ -132.92925, 69.50534 ], [ -131.43136, 69.94451 ], [ -129.79471, 70.19369 ], [ -129.10773, 69.77927 ], [ -128.36156, 70.01286 ], [ -128.13817, 70.48384 ], [ -127.44712, 70.37721 ], [ -125.75632, 69.48058 ], [ -124.42483, 70.1584 ], [ -124.28968, 69.39969 ], [ -123.06108, 69.56372 ], [ -122.6835, 69.85553 ], [ -121.47226, 69.79778 ], [ -119.94288, 69.37786 ], [ -117.60268, 69.01128 ], [ -116.22643, 68.84151 ], [ -115.2469, 68.90591 ], [ -113.89794, 68.3989 ], [ -115.30489, 67.90261 ], [ -113.49727, 67.68815 ], [ -110.798, 67.80612 ], [ -109.94619, 67.98104 ], [ -108.8802, 67.38144 ], [ -107.79239, 67.88736 ], [ -108.81299, 68.31164 ], [ -108.16721, 68.65392 ], [ -106.95, 68.7 ], [ -106.15, 68.8 ], [ -105.34282, 68.56122 ], [ -104.33791, 68.018 ], [ -103.22115, 68.09775 ], [ -101.45433, 67.64689 ], [ -99.90195, 67.80566 ], [ -98.4432, 67.78165 ], [ -98.5586, 68.40394 ], [ -97.66948, 68.57864 ], [ -96.11991, 68.23939 ], [ -96.12588, 67.29338 ], [ -95.48943, 68.0907 ], [ -94.685, 68.06383 ], [ -94.23282, 69.06903 ], [ -95.30408, 69.68571 ], [ -96.47131, 70.08976 ], [ -96.39115, 71.19482 ], [ -95.2088, 71.92053 ], [ -93.88997, 71.76015 ], [ -92.87818, 71.31869 ], [ -91.51964, 70.19129 ], [ -92.40692, 69.69997 ], [ -90.5471, 69.49766 ] ] ], [ [ [ -114.167169999999899, 73.12145 ], [ -114.66634, 72.65277 ], [ -112.441019999999895, 72.955400000000111 ], [ -111.05039, 72.4504 ], [ -109.920349999999885, 72.961130000000111 ], [ -109.00654, 72.63335 ], [ -108.18835, 71.65089 ], [ -107.68599, 72.06548 ], [ -108.39639, 73.08953000000011 ], [ -107.51645, 73.23598 ], [ -106.52259, 73.07601 ], [ -105.40246, 72.67259 ], [ -104.77484, 71.698400000000106 ], [ -104.464759999999842, 70.99297 ], [ -102.78537, 70.49776 ], [ -100.980779999999896, 70.02432 ], [ -101.08929, 69.584470000000124 ], [ -102.73116, 69.50402 ], [ -102.09329, 69.119620000000111 ], [ -102.43024, 68.75282 ], [ -104.24, 68.91 ], [ -105.96, 69.180000000000149 ], [ -107.12254, 69.11922 ], [ -109.0, 68.78 ], [ -111.534148875200145, 68.630059156817936 ], [ -113.3132, 68.53554 ], [ -113.854959999999835, 69.007440000000116 ], [ -115.22, 69.28 ], [ -116.10794, 69.16821 ], [ -117.34, 69.960000000000122 ], [ -116.674729999999897, 70.06655 ], [ -115.13112, 70.2373 ], [ -113.72141, 70.19237 ], [ -112.4161, 70.36638 ], [ -114.35, 70.6 ], [ -116.48684, 70.52045 ], [ -117.9048, 70.540560000000141 ], [ -118.43238, 70.9092 ], [ -116.11311, 71.30918 ], [ -117.65568, 71.2952 ], [ -119.40199, 71.55859 ], [ -118.56267, 72.30785 ], [ -117.86642, 72.70594 ], [ -115.18909, 73.314590000000123 ], [ -114.167169999999899, 73.12145 ] ] ], [ [ [ -104.5, 73.42 ], [ -105.38, 72.76 ], [ -106.94, 73.46 ], [ -106.6, 73.6 ], [ -105.26, 73.64 ], [ -104.5, 73.42 ] ] ], [ [ [ -76.34, 73.102684989953019 ], [ -76.25140380859375, 72.826385498046875 ], [ -77.314437866210909, 72.855545043945284 ], [ -78.39167022705081, 72.876655578613281 ], [ -79.486251831054659, 72.742202758789091 ], [ -79.775833129882841, 72.802902221679744 ], [ -80.876098632812528, 73.333183288574219 ], [ -80.833885192871065, 73.693183898925781 ], [ -80.353057861328125, 73.759719848632784 ], [ -78.064437866210938, 73.651931762695341 ], [ -76.34, 73.102684989953019 ] ] ], [ [ [ -86.562178514334136, 73.157447007938458 ], [ -85.774371304044536, 72.534125881633827 ], [ -84.850112474288238, 73.340278225387124 ], [ -82.315590176100983, 73.750950832810588 ], [ -80.600087653307639, 72.71654368762421 ], [ -80.748941616524405, 72.061906643350767 ], [ -78.770638597310779, 72.352173163534161 ], [ -77.824623989559598, 72.749616604291049 ], [ -75.605844692675731, 72.243678493937409 ], [ -74.228616095664989, 71.767144273557903 ], [ -74.099140794557712, 71.330840155717652 ], [ -72.242225714797655, 71.556924546994509 ], [ -71.200015428335206, 70.920012518997225 ], [ -68.786054246684898, 70.525023708774256 ], [ -67.914970465756937, 70.121947536897608 ], [ -66.969033372654167, 69.186087348091888 ], [ -68.805122850200547, 68.720198472764423 ], [ -66.449866095633865, 68.067163397892017 ], [ -64.862314419195229, 67.847538560651628 ], [ -63.424934454996759, 66.928473212340663 ], [ -61.851981370680591, 66.862120673277843 ], [ -62.163176845942303, 66.160251369889608 ], [ -63.918444383384184, 64.998668524832851 ], [ -65.148860236253626, 65.426032619886684 ], [ -66.721219041598545, 66.388041083432199 ], [ -68.015016038673963, 66.262725735124405 ], [ -68.141287400979166, 65.689789130304376 ], [ -67.089646165623407, 65.108455105236999 ], [ -65.732080451099762, 64.648405666758634 ], [ -65.320167609301279, 64.382737128346065 ], [ -64.669406297449683, 63.392926744227481 ], [ -65.013803880458909, 62.674185085695996 ], [ -66.275044725190469, 62.945098781986076 ], [ -68.783186204692726, 63.745670071051819 ], [ -67.369680752213043, 62.883965562584876 ], [ -66.328297288667216, 62.280074774822054 ], [ -66.165568203380161, 61.930897121825893 ], [ -68.877366502544646, 62.330149237712817 ], [ -71.023437059193839, 62.910708116295837 ], [ -72.235378587518994, 63.397836005295176 ], [ -71.8862784491713, 63.679989325608858 ], [ -73.378306240518384, 64.193963121183828 ], [ -74.834418911422603, 64.679075629323791 ], [ -74.818502570276735, 64.389093329517976 ], [ -77.709979824520047, 64.229542344816792 ], [ -78.555948859354174, 64.572906399180141 ], [ -77.897281053361922, 65.309192206474791 ], [ -76.018274298797195, 65.326968899183157 ], [ -73.959795294882724, 65.454764716240902 ], [ -74.29388342964964, 65.811771348729394 ], [ -73.944912482382648, 66.310578111426736 ], [ -72.651167161739409, 67.284575507263867 ], [ -72.926059943316091, 67.726925767682388 ], [ -73.311617804645749, 68.069437160912912 ], [ -74.843307257776814, 68.554627183701285 ], [ -76.869100918266753, 68.894735622830268 ], [ -76.228649054657353, 69.147769273547425 ], [ -77.287369961237118, 69.769540106883284 ], [ -78.168633999326602, 69.82648753526891 ], [ -78.957242194316734, 70.166880194775416 ], [ -79.492455003563663, 69.871807766388912 ], [ -81.30547095409176, 69.743185126414346 ], [ -84.94470618359847, 69.966634019644403 ], [ -87.060003424817893, 70.26000112576537 ], [ -88.681713223001509, 70.41074127876081 ], [ -89.51341956252304, 70.762037665480989 ], [ -88.467721116880767, 71.218185533321332 ], [ -89.888151211287493, 71.222552191849957 ], [ -90.205160285182018, 72.235074367960806 ], [ -89.436576707704944, 73.129464219852366 ], [ -88.408241543312812, 73.537888902471224 ], [ -85.82615108920092, 73.803815823045227 ], [ -86.562178514334136, 73.157447007938458 ] ] ], [ [ [ -100.35642, 73.84389 ], [ -99.16387, 73.63339 ], [ -97.38, 73.76 ], [ -97.12, 73.47 ], [ -98.05359, 72.99052 ], [ -96.54, 72.56 ], [ -96.72, 71.66 ], [ -98.35966, 71.27285 ], [ -99.32286, 71.35639 ], [ -100.01482, 71.73827 ], [ -102.5, 72.51 ], [ -102.48, 72.83 ], [ -100.43836, 72.70588 ], [ -101.54, 73.36 ], [ -100.35642, 73.84389 ] ] ], [ [ [ -93.19629553910022, 72.771992499473356 ], [ -94.269046597047264, 72.024596259235977 ], [ -95.409855516322665, 72.061880805134592 ], [ -96.033745083382456, 72.940276801231818 ], [ -96.018267991910989, 73.437429918095802 ], [ -95.495793423224029, 73.862416897264183 ], [ -94.503657599652342, 74.13490672473921 ], [ -92.420012173211774, 74.100025132942193 ], [ -90.509792853542592, 73.856732489712044 ], [ -92.003965216829897, 72.966244208458505 ], [ -93.19629553910022, 72.771992499473356 ] ] ], [ [ [ -120.46, 71.383601793087593 ], [ -123.09219, 70.90164 ], [ -123.62, 71.34 ], [ -125.928948737473334, 71.868688463011409 ], [ -125.5, 72.292260811795018 ], [ -124.80729, 73.02256 ], [ -123.939999999999898, 73.680000000000149 ], [ -124.91775, 74.292750000000126 ], [ -121.53788, 74.44893 ], [ -120.10978, 74.24135 ], [ -117.555639999999869, 74.18577 ], [ -116.58442, 73.89607 ], [ -115.51081, 73.47519 ], [ -116.767939999999896, 73.22292 ], [ -119.22, 72.52 ], [ -120.46, 71.82 ], [ -120.46, 71.383601793087593 ] ] ], [ [ [ -93.612755906940492, 74.979997260224451 ], [ -94.15690873897384, 74.592346503386864 ], [ -95.608680589565608, 74.666863918751773 ], [ -96.820932176484575, 74.92762319609659 ], [ -96.28858740922982, 75.377828274223361 ], [ -94.850819871789128, 75.6472175157609 ], [ -93.977746548217937, 75.296489569795966 ], [ -93.612755906940492, 74.979997260224451 ] ] ], [ [ [ -98.5, 76.72 ], [ -97.735585, 76.25656 ], [ -97.704415, 75.74344 ], [ -98.16, 75.0 ], [ -99.80874, 74.89744 ], [ -100.88366, 75.05736 ], [ -100.86292, 75.64075 ], [ -102.50209, 75.5638 ], [ -102.56552, 76.3366 ], [ -101.48973, 76.30537 ], [ -99.98349, 76.64634 ], [ -98.57699, 76.58859 ], [ -98.5, 76.72 ] ] ], [ [ [ -108.21141, 76.20168 ], [ -107.81943, 75.84552 ], [ -106.92893, 76.01282 ], [ -105.881, 75.9694 ], [ -105.70498, 75.47951 ], [ -106.31347, 75.00527 ], [ -109.7, 74.85 ], [ -112.22307, 74.41696 ], [ -113.74381, 74.39427 ], [ -113.87135, 74.72029 ], [ -111.79421, 75.1625 ], [ -116.31221, 75.04343 ], [ -117.7104, 75.2222 ], [ -116.34602, 76.19903 ], [ -115.40487, 76.47887 ], [ -112.59056, 76.14134 ], [ -110.81422, 75.54919 ], [ -109.0671, 75.47321 ], [ -110.49726, 76.42982 ], [ -109.5811, 76.79417 ], [ -108.54859, 76.67832 ], [ -108.21141, 76.20168 ] ] ], [ [ [ -94.684085862999467, 77.097878323058382 ], [ -93.573921068073133, 76.776295884906091 ], [ -91.605023159536614, 76.778517971494608 ], [ -90.741845872749224, 76.449597479956822 ], [ -90.96966142450799, 76.074013170059459 ], [ -89.822237921899273, 75.84777374948564 ], [ -89.18708289259979, 75.61016551380763 ], [ -87.838276333349626, 75.566188869927231 ], [ -86.379192267588678, 75.482421373182177 ], [ -84.789625210290609, 75.699204006646511 ], [ -82.753444586910064, 75.784315090631253 ], [ -81.128530849924374, 75.713983466282031 ], [ -80.057510952459154, 75.336848863415895 ], [ -79.833932868148338, 74.923127346487206 ], [ -80.457770758775837, 74.657303778777788 ], [ -81.948842536125539, 74.442459011524335 ], [ -83.228893602211429, 74.564027818490956 ], [ -86.097452358733307, 74.410032050261151 ], [ -88.150350307960224, 74.392307033984991 ], [ -89.764722052758373, 74.515555325001145 ], [ -92.422440965529432, 74.837757880341002 ], [ -92.768285488642817, 75.386819973442158 ], [ -92.889905972041731, 75.882655341282657 ], [ -93.893824022176005, 76.319243679500545 ], [ -95.962457445035824, 76.441380927222468 ], [ -97.121378953829492, 76.751077785947615 ], [ -96.745122850312356, 77.161388658345146 ], [ -94.684085862999467, 77.097878323058382 ] ] ], [ [ [ -116.198586595507351, 77.645286770326209 ], [ -116.335813361458392, 76.876961575010569 ], [ -117.106050584768795, 76.530031846819128 ], [ -118.040412157038148, 76.481171780087095 ], [ -119.899317586885701, 76.053213406061985 ], [ -121.499995077126499, 75.900018622532798 ], [ -122.854924486158978, 76.116542873835698 ], [ -122.854925293603216, 76.116542873835698 ], [ -121.157535360328254, 76.86450755482835 ], [ -119.103938971821051, 77.512219957174636 ], [ -117.570130784965968, 77.498318996888116 ], [ -116.198586595507351, 77.645286770326209 ] ] ], [ [ [ -93.840003017943985, 77.519997260234504 ], [ -94.295608283245258, 77.491342678528696 ], [ -96.169654100310083, 77.555111395976894 ], [ -96.436304490936124, 77.834629218243634 ], [ -94.422577277386381, 77.820004787904992 ], [ -93.720656297565881, 77.634331366680328 ], [ -93.840003017943985, 77.519997260234504 ] ] ], [ [ [ -110.186938035912974, 77.6970148790503 ], [ -112.051191169058484, 77.409228827616857 ], [ -113.534278937619064, 77.732206529441157 ], [ -112.724586758253849, 78.051050116681949 ], [ -111.26444332563085, 78.152956041161559 ], [ -109.854451870547095, 77.99632477488484 ], [ -110.186938035912974, 77.6970148790503 ] ] ], [ [ [ -109.663145718202585, 78.60197256134569 ], [ -110.881314256618865, 78.406919867660008 ], [ -112.54209143761517, 78.407901719873507 ], [ -112.525890876091594, 78.550554511215239 ], [ -111.500010342233395, 78.849993598130567 ], [ -110.963660651476019, 78.804440823065221 ], [ -109.663145718202585, 78.60197256134569 ] ] ], [ [ [ -95.830294969449341, 78.056941229963257 ], [ -97.309842902398003, 77.850597235821795 ], [ -98.124289313533978, 78.082856960757596 ], [ -98.552867804746654, 78.458105373845115 ], [ -98.631984422585532, 78.871930243638388 ], [ -97.337231411512619, 78.831984361476771 ], [ -96.754398769908789, 78.765812689927003 ], [ -95.559277920294591, 78.418314520980289 ], [ -95.830294969449341, 78.056941229963257 ] ] ], [ [ [ -100.06019182005214, 78.324754340315906 ], [ -99.670939093813615, 77.907544664207421 ], [ -101.303940192453013, 78.018984890444813 ], [ -102.949808722733053, 78.34322866486022 ], [ -105.176132778731542, 78.380332343245755 ], [ -104.210429450277161, 78.677420152491806 ], [ -105.41958045125854, 78.918335679836446 ], [ -105.492289191493157, 79.301593939929205 ], [ -103.529282396237932, 79.165349026191649 ], [ -100.825158047268815, 78.800461737778704 ], [ -100.06019182005214, 78.324754340315906 ] ] ], [ [ [ -87.02, 79.66 ], [ -85.81435, 79.3369 ], [ -87.18756, 79.0393 ], [ -89.03535, 78.28723 ], [ -90.80436, 78.21533 ], [ -92.87669, 78.34333 ], [ -93.95116, 78.75099 ], [ -93.93574, 79.11373 ], [ -93.14524, 79.3801 ], [ -94.974, 79.37248 ], [ -96.07614, 79.70502 ], [ -96.70972, 80.15777 ], [ -96.01644, 80.60233 ], [ -95.32345, 80.90729 ], [ -94.29843, 80.97727 ], [ -94.73542, 81.20646 ], [ -92.40984, 81.25739 ], [ -91.13289, 80.72345 ], [ -89.45, 80.509322033898286 ], [ -87.81, 80.32 ], [ -87.02, 79.66 ] ] ], [ [ [ -68.5, 83.106321516765746 ], [ -65.82735, 83.02801 ], [ -63.68, 82.9 ], [ -61.85, 82.6286 ], [ -61.89388, 82.36165 ], [ -64.334, 81.92775 ], [ -66.75342, 81.72527 ], [ -67.65755, 81.50141 ], [ -65.48031, 81.50657 ], [ -67.84, 80.9 ], [ -69.4697, 80.61683 ], [ -71.18, 79.8 ], [ -73.2428, 79.63415 ], [ -73.88, 79.430162204802087 ], [ -76.90773, 79.32309 ], [ -75.52924, 79.19766 ], [ -76.22046, 79.01907 ], [ -75.39345, 78.52581 ], [ -76.34354, 78.18296 ], [ -77.88851, 77.89991 ], [ -78.36269, 77.50859 ], [ -79.75951, 77.20968 ], [ -79.61965, 76.98336 ], [ -77.91089, 77.022045 ], [ -77.88911, 76.777955 ], [ -80.56125, 76.17812 ], [ -83.17439, 76.45403 ], [ -86.11184, 76.29901 ], [ -87.6, 76.42 ], [ -89.49068, 76.47239 ], [ -89.6161, 76.95213 ], [ -87.76739, 77.17833 ], [ -88.26, 77.9 ], [ -87.65, 77.970222222222219 ], [ -84.97634, 77.53873 ], [ -86.34, 78.18 ], [ -87.96192, 78.37181 ], [ -87.15198, 78.75867 ], [ -85.37868, 78.9969 ], [ -85.09495, 79.34543 ], [ -86.50734, 79.73624 ], [ -86.93179, 80.25145 ], [ -84.19844, 80.20836 ], [ -83.408695652173833, 80.1 ], [ -81.84823, 80.46442 ], [ -84.1, 80.58 ], [ -87.59895, 80.51627 ], [ -89.36663, 80.85569 ], [ -90.2, 81.26 ], [ -91.36786, 81.5531 ], [ -91.58702, 81.89429 ], [ -90.1, 82.085 ], [ -88.93227, 82.11751 ], [ -86.97024, 82.27961 ], [ -85.5, 82.652273458057039 ], [ -84.260005, 82.6 ], [ -83.18, 82.32 ], [ -82.42, 82.86 ], [ -81.1, 83.02 ], [ -79.30664, 83.13056 ], [ -76.25, 83.172058823529397 ], [ -75.71878, 83.06404 ], [ -72.83153, 83.23324 ], [ -70.665765, 83.169780758382842 ], [ -68.5, 83.106321516765746 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Switzerland\", \"sov_a3\": \"CHE\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Switzerland\", \"adm0_a3\": \"CHE\", \"geou_dif\": 0.000000, \"geounit\": \"Switzerland\", \"gu_a3\": \"CHE\", \"su_dif\": 0.000000, \"subunit\": \"Switzerland\", \"su_a3\": \"CHE\", \"brk_diff\": 0.000000, \"name\": \"Switzerland\", \"name_long\": \"Switzerland\", \"brk_a3\": \"CHE\", \"brk_name\": \"Switzerland\", \"brk_group\": null, \"abbrev\": \"Switz.\", \"postal\": \"CH\", \"formal_en\": \"Swiss Confederation\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Switzerland\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 3.000000, \"pop_est\": 7604467.000000, \"gdp_md_est\": 316700.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CH\", \"iso_a3\": \"CHE\", \"iso_n3\": \"756\", \"un_a3\": \"756\", \"wb_a2\": \"CH\", \"wb_a3\": \"CHE\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CHE\", \"adm0_a3_us\": \"CHE\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Western Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 11.000000, \"long_len\": 11.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 9.59422610844635, 47.52505809182027 ], [ 9.632931756232978, 47.347601223329988 ], [ 9.479969516649021, 47.102809963563374 ], [ 9.932448357796659, 46.920728054382963 ], [ 10.442701450246631, 46.893546250997431 ], [ 10.363378126678612, 46.483571275409858 ], [ 9.922836541390382, 46.314899400409189 ], [ 9.182881707403055, 46.440214748716983 ], [ 8.966305779667806, 46.036931871111193 ], [ 8.489952426801324, 46.005150865251686 ], [ 8.316629672894379, 46.163642483090861 ], [ 7.755992058959833, 45.824490057959309 ], [ 7.273850945676656, 45.776947740250776 ], [ 6.843592970414505, 45.991146552100609 ], [ 6.500099724970426, 46.429672756529442 ], [ 6.022609490593538, 46.272989813820473 ], [ 6.037388950229001, 46.725778713561866 ], [ 6.768713820023606, 47.287708238303701 ], [ 6.736571079138059, 47.541801255882845 ], [ 7.192202182655507, 47.449765529971017 ], [ 7.466759067422231, 47.620581976911808 ], [ 8.317301466514152, 47.613579820336263 ], [ 8.522611932009767, 47.830827541691292 ], [ 9.59422610844635, 47.52505809182027 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Chile\", \"sov_a3\": \"CHL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Chile\", \"adm0_a3\": \"CHL\", \"geou_dif\": 0.000000, \"geounit\": \"Chile\", \"gu_a3\": \"CHL\", \"su_dif\": 0.000000, \"subunit\": \"Chile\", \"su_a3\": \"CHL\", \"brk_diff\": 0.000000, \"name\": \"Chile\", \"name_long\": \"Chile\", \"brk_a3\": \"CHL\", \"brk_name\": \"Chile\", \"brk_group\": null, \"abbrev\": \"Chile\", \"postal\": \"CL\", \"formal_en\": \"Republic of Chile\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Chile\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 9.000000, \"pop_est\": 16601707.000000, \"gdp_md_est\": 244500.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CL\", \"iso_a3\": \"CHL\", \"iso_n3\": \"152\", \"un_a3\": \"152\", \"wb_a2\": \"CL\", \"wb_a3\": \"CHL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CHL\", \"adm0_a3_us\": \"CHL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -68.634010227583161, -52.636370458874367 ], [ -68.633349999999893, -54.8695 ], [ -67.56244, -54.87001 ], [ -66.95992, -54.89681 ], [ -67.291029999999893, -55.30124 ], [ -68.148629999999855, -55.61183 ], [ -68.63999081081181, -55.580017999086891 ], [ -69.2321, -55.49906 ], [ -69.95809, -55.19843 ], [ -71.00568, -55.05383 ], [ -72.2639, -54.49514 ], [ -73.2852, -53.957519999999889 ], [ -74.66253, -52.83749 ], [ -73.8381, -53.04743 ], [ -72.43418, -53.7154 ], [ -71.10773, -54.07433 ], [ -70.591779999999801, -53.61583 ], [ -70.26748, -52.93123 ], [ -69.345649999999893, -52.5183 ], [ -68.634010227583161, -52.636370458874367 ] ] ], [ [ [ -68.219913092711238, -21.494346612231837 ], [ -67.828179897722663, -22.872918796482182 ], [ -67.106673550063618, -22.7359245744764 ], [ -66.985233934177643, -22.986348565362832 ], [ -67.328442959244143, -24.025303236590915 ], [ -68.417652960876126, -24.518554782816878 ], [ -68.386001146097357, -26.185016371365236 ], [ -68.594799770772681, -26.506908868111267 ], [ -68.295541551370405, -26.89933969493579 ], [ -69.001234910748281, -27.521213881136134 ], [ -69.656130337183157, -28.459141127233693 ], [ -70.013550381129875, -29.367922865518551 ], [ -69.919008348251936, -30.336339206668313 ], [ -70.535068935819453, -31.365010267870289 ], [ -70.074399380153636, -33.091209812148037 ], [ -69.814776984319224, -33.273886000299854 ], [ -69.817309129501467, -34.193571465798286 ], [ -70.388049485949097, -35.169687595359449 ], [ -70.364769253201672, -36.005088799789945 ], [ -71.121880662709799, -36.658123874662337 ], [ -71.118625047475433, -37.576827487947199 ], [ -70.814664272734717, -38.552995293940739 ], [ -71.413516608349056, -38.916022230791114 ], [ -71.680761277946459, -39.808164157878068 ], [ -71.915734015577556, -40.832339369470731 ], [ -71.746803758415467, -42.051386407235995 ], [ -72.148898078078531, -42.254888197601389 ], [ -71.915423956983915, -43.408564548517418 ], [ -71.464056159130507, -43.787611179378331 ], [ -71.793622606071949, -44.207172133156106 ], [ -71.329800788036209, -44.407521661151691 ], [ -71.222778896759735, -44.784242852559416 ], [ -71.65931555854533, -44.973688653341441 ], [ -71.552009446891248, -45.560732924177131 ], [ -71.917258470330211, -46.8848381487918 ], [ -72.447355312780275, -47.738532810253531 ], [ -72.331160854771952, -48.244238376661826 ], [ -72.648247443314943, -48.878618259476788 ], [ -73.415435757120036, -49.318436374712959 ], [ -73.328050910114484, -50.378785088909872 ], [ -72.975746832964631, -50.741450290734313 ], [ -72.30997351753237, -50.677009779666356 ], [ -72.329403856074038, -51.425956312872408 ], [ -71.914803839796349, -52.009022305865926 ], [ -69.49836218939609, -52.14276091263725 ], [ -68.571545376241346, -52.299443855346262 ], [ -69.461284349226645, -52.291950772663931 ], [ -69.942779507106138, -52.537930590373257 ], [ -70.845101691354529, -52.899200528525725 ], [ -71.006332160105245, -53.833252042201352 ], [ -71.429794684520942, -53.856454760300387 ], [ -72.557942877884869, -53.531410001184462 ], [ -73.702756720662876, -52.835069268607256 ], [ -73.702756720662876, -52.835070076051501 ], [ -74.946763475225168, -52.262753588419031 ], [ -75.260026007778521, -51.629354750373224 ], [ -74.97663245308982, -51.043395684615689 ], [ -75.479754197883494, -50.378371677451561 ], [ -75.608015102831956, -48.673772881871798 ], [ -75.182769741502142, -47.71191944762316 ], [ -74.126580980104706, -46.939253431995098 ], [ -75.644395311165454, -46.64764332457203 ], [ -74.692153693323064, -45.763976332380977 ], [ -74.351709357384266, -44.103044122087894 ], [ -73.240356004515206, -44.454960625995625 ], [ -72.71780392117978, -42.383355808278992 ], [ -73.388899909138246, -42.117532240569574 ], [ -73.701335618774863, -43.365776462579745 ], [ -74.331943122032584, -43.224958184584409 ], [ -74.017957119427166, -41.794812920906836 ], [ -73.677099372029971, -39.942212823243125 ], [ -73.217592536090677, -39.258688653318515 ], [ -73.505559455037059, -38.282882582351078 ], [ -73.58806087919109, -37.156284681956024 ], [ -73.166717088499297, -37.123780206044358 ], [ -72.553136969681731, -35.508840020491036 ], [ -71.861732143832569, -33.909092706031529 ], [ -71.438450486929923, -32.418899428030826 ], [ -71.668720669222438, -30.920644626592519 ], [ -71.370082567007728, -30.095682061485007 ], [ -71.489894375276464, -28.861442152625912 ], [ -70.905123867461583, -27.640379734001201 ], [ -70.724953986275978, -25.705924167587213 ], [ -70.40396582709505, -23.628996677344546 ], [ -70.091245897080682, -21.393319187101227 ], [ -70.164419725205988, -19.756468194256186 ], [ -70.372572394477743, -18.347975355708883 ], [ -69.858443569605811, -18.092693780187034 ], [ -69.590423753523993, -17.58001189541929 ], [ -69.100246955019429, -18.260125420812656 ], [ -68.966818406841838, -18.981683444904093 ], [ -68.442225104430946, -19.405068454671422 ], [ -68.757167121033717, -20.372657972904477 ], [ -68.219913092711238, -21.494346612231837 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"China\", \"sov_a3\": \"CH1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"China\", \"adm0_a3\": \"CHN\", \"geou_dif\": 0.000000, \"geounit\": \"China\", \"gu_a3\": \"CHN\", \"su_dif\": 0.000000, \"subunit\": \"China\", \"su_a3\": \"CHN\", \"brk_diff\": 0.000000, \"name\": \"China\", \"name_long\": \"China\", \"brk_a3\": \"CHN\", \"brk_name\": \"China\", \"brk_group\": null, \"abbrev\": \"China\", \"postal\": \"CN\", \"formal_en\": \"People's Republic of China\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"China\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 3.000000, \"pop_est\": 1338612970.000000, \"gdp_md_est\": 7973000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"3. Emerging region: BRIC\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CN\", \"iso_a3\": \"CHN\", \"iso_n3\": \"156\", \"un_a3\": \"156\", \"wb_a2\": \"CN\", \"wb_a3\": \"CHN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CHN\", \"adm0_a3_us\": \"CHN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 110.339187860151554, 18.678395087147607 ], [ 109.475209588663716, 18.197700913968617 ], [ 108.655207961056163, 18.507681993071401 ], [ 108.626217482540454, 19.367887885001977 ], [ 109.119055617308021, 19.821038519769388 ], [ 110.211598748822865, 20.101253973872076 ], [ 110.786550734502242, 20.077534491450081 ], [ 111.010051304164648, 19.695929877190736 ], [ 110.570646600386823, 19.255879218009312 ], [ 110.339187860151554, 18.678395087147607 ] ] ], [ [ [ 127.657407261262421, 49.760270494172943 ], [ 129.397817824420457, 49.440600084015443 ], [ 130.582293328982388, 48.729687404976119 ], [ 130.987281528853856, 47.790132351261406 ], [ 132.506671991099523, 47.788969631534883 ], [ 133.373595819228029, 48.183441677434928 ], [ 135.026311476786731, 48.478229885443909 ], [ 134.500813836810636, 47.578439846377847 ], [ 134.11236209527263, 47.212467352886733 ], [ 133.769643996312908, 46.11692698829907 ], [ 133.097126906466457, 45.144066473972174 ], [ 131.88345421765959, 45.321161607436437 ], [ 131.025212030156098, 44.967953192721581 ], [ 131.288555129115565, 44.111519680348266 ], [ 131.144687941614876, 42.929989732426947 ], [ 130.63386640840983, 42.903014634770557 ], [ 130.640015903852458, 42.395009467125277 ], [ 129.994267205933255, 42.9853868678438 ], [ 129.59666873587949, 42.424981797854599 ], [ 128.052215203972338, 41.994284572917991 ], [ 128.208433058790746, 41.466771552082548 ], [ 127.34378299368305, 41.50315176041596 ], [ 126.869083286649897, 41.816569322266162 ], [ 126.182045119329445, 41.107336127276369 ], [ 125.079941847840615, 40.569823716792456 ], [ 124.265624627785343, 39.928493353834142 ], [ 122.867570428561038, 39.637787583976262 ], [ 122.131387974130945, 39.170451768544638 ], [ 121.054554478032884, 38.897471014962917 ], [ 121.585994907722494, 39.360853583324143 ], [ 121.376757033372684, 39.750261338859531 ], [ 122.168595005381036, 40.422442531896053 ], [ 121.640358514493556, 40.946389878903318 ], [ 120.768628778161968, 40.593388169917603 ], [ 119.63960208544907, 39.898055935214217 ], [ 119.023463983233029, 39.252333075511103 ], [ 118.042748651197911, 39.204273993479688 ], [ 117.532702264477081, 38.737635809884097 ], [ 118.059698520989713, 38.061475531561058 ], [ 118.878149855628379, 37.897325344385905 ], [ 118.911636183753529, 37.448463853498737 ], [ 119.70280236214208, 37.15638865818508 ], [ 120.823457472823662, 37.870427761377982 ], [ 121.711258579597967, 37.48112335870718 ], [ 122.35793745329849, 37.454484157860691 ], [ 122.519994744965828, 36.930614325501836 ], [ 121.104163853033043, 36.65132904718044 ], [ 120.637008905114584, 36.111439520811132 ], [ 119.664561802246084, 35.609790554337735 ], [ 119.151208123858595, 34.909859117160465 ], [ 120.227524855633732, 34.36033193616862 ], [ 120.620369093916594, 33.376722723925127 ], [ 121.229014113450233, 32.460318711877193 ], [ 121.908145786630058, 31.69217438407469 ], [ 121.891919386890351, 30.949351508095106 ], [ 121.264257440273326, 30.676267401648715 ], [ 121.503519321784751, 30.142914943964257 ], [ 122.0921138855891, 29.832520453403163 ], [ 121.938428175953078, 29.01802236583481 ], [ 121.684438511238483, 28.225512600206685 ], [ 121.125661248866464, 28.135673122667185 ], [ 120.395473260582349, 27.053206895449392 ], [ 119.585496860839584, 25.740780544532612 ], [ 118.656871372554548, 24.547390855400238 ], [ 117.281606479970861, 23.624501451099718 ], [ 115.890735304835147, 22.782873236578098 ], [ 114.763827345846238, 22.66807404224167 ], [ 114.152546828265685, 22.223760077396207 ], [ 113.806779819800767, 22.54833974862143 ], [ 113.24107791550162, 22.051367499270469 ], [ 111.843592157032475, 21.550493679281516 ], [ 110.785465529424158, 21.397143866455338 ], [ 110.44403934127169, 20.341032619706397 ], [ 109.889861281373584, 20.282457383703445 ], [ 109.627655063924664, 21.008227037026728 ], [ 109.864488153118344, 21.395050970947523 ], [ 108.52281294152445, 21.715212307211829 ], [ 108.050180291782993, 21.552379869060104 ], [ 107.043420037872664, 21.811898912029903 ], [ 106.56727339073538, 22.218204860924743 ], [ 106.725403273548494, 22.794267889898379 ], [ 105.811247186305224, 22.976892401617903 ], [ 105.32920942588666, 23.352063300056983 ], [ 104.476858351664504, 22.819150092046925 ], [ 103.504514601660532, 22.70375661873922 ], [ 102.706992222100183, 22.708795070887703 ], [ 102.170435825613566, 22.464753119389343 ], [ 101.65201785686159, 22.318198757409561 ], [ 101.803119744882935, 21.174366766845054 ], [ 101.270025669360024, 21.20165192309517 ], [ 101.180005324307587, 21.43657298429406 ], [ 101.150032993578264, 21.849984442629022 ], [ 100.416537713627378, 21.558839423096657 ], [ 99.983489211021578, 21.742936713136459 ], [ 99.240898878987224, 22.118314317304566 ], [ 99.531992222087439, 22.949038804612599 ], [ 98.898749220782832, 23.142722072842588 ], [ 98.660262485755794, 24.063286037690006 ], [ 97.604719679762042, 23.897404690033056 ], [ 97.724609002679159, 25.083637193293043 ], [ 98.67183800658924, 25.918702500913497 ], [ 98.712093947344584, 26.74353587494025 ], [ 98.682690057370536, 27.508812160750665 ], [ 98.246230910233379, 27.747221381129179 ], [ 97.911987746169444, 28.335945136014374 ], [ 97.327113885490036, 28.261582749946342 ], [ 96.248833449287844, 28.411030992134471 ], [ 96.58659061074755, 28.830979519154369 ], [ 96.117678664131034, 29.45280202892252 ], [ 95.404802280664654, 29.03171662039216 ], [ 94.565990431702943, 29.277438055939967 ], [ 93.413347609432691, 28.640629380807241 ], [ 92.503118931043645, 27.896876329046449 ], [ 91.696656528696707, 27.771741848251622 ], [ 91.25885379431989, 28.04061432546635 ], [ 90.730513950567826, 28.064953925075741 ], [ 90.015828891971211, 28.296438503527185 ], [ 89.475810174521172, 28.042758897406372 ], [ 88.814248488320601, 27.299315904239393 ], [ 88.730325962278556, 28.086864732367559 ], [ 88.120440708369955, 27.876541652939579 ], [ 86.954517043000664, 27.974261786403531 ], [ 85.82331994013154, 28.203575954698749 ], [ 85.011638218123068, 28.642773952747376 ], [ 84.234579705750178, 28.839893703724698 ], [ 83.898992954446754, 29.32022614187764 ], [ 83.33711510613719, 29.463731594352197 ], [ 82.327512648450892, 30.115268052688208 ], [ 81.5258044778748, 30.422716986608663 ], [ 81.11125613802929, 30.183480943313413 ], [ 79.721366815107132, 30.882714748654735 ], [ 78.738894484374015, 31.515906073527049 ], [ 78.458446486326039, 32.618164374312727 ], [ 79.176128777995558, 32.483779812137755 ], [ 79.208891636068557, 32.994394639613745 ], [ 78.811086460285736, 33.506198025032404 ], [ 78.912268914713223, 34.321936346975775 ], [ 77.837450799474624, 35.494009507787808 ], [ 76.192848341785719, 35.898403428687857 ], [ 75.896897414050187, 36.666806138651879 ], [ 75.158027785141002, 37.133030910789159 ], [ 74.980002475895418, 37.419990139305895 ], [ 74.829985792952158, 37.990007025701459 ], [ 74.864815708316797, 38.378846340481601 ], [ 74.257514276022704, 38.60650686294349 ], [ 73.928852166646408, 38.505815334622724 ], [ 73.675379266254851, 39.431236884105573 ], [ 73.960013055318456, 39.660008449861721 ], [ 73.82224368682833, 39.893973497063143 ], [ 74.776862420556057, 40.366425279291633 ], [ 75.467827996730733, 40.562072251948678 ], [ 76.526368035797447, 40.427946071935139 ], [ 76.904484490877138, 41.066485907549662 ], [ 78.187196893226059, 41.185315863604814 ], [ 78.543660923175281, 41.58224254003872 ], [ 80.119430373051415, 42.123940741538235 ], [ 80.259990268885332, 42.349999294599087 ], [ 80.180150180994389, 42.920067857426858 ], [ 80.866206496101228, 43.180362046881015 ], [ 79.96610639844144, 44.917516994804629 ], [ 81.947070753918098, 45.317027492853157 ], [ 82.458925815769049, 45.539649563166506 ], [ 83.180483839860557, 47.330031236350749 ], [ 85.164290399113241, 47.000955715516113 ], [ 85.720483839870695, 47.452969468773091 ], [ 85.768232863308384, 48.455750637396903 ], [ 86.598776483103364, 48.549181626980612 ], [ 87.359970330762707, 49.214980780629162 ], [ 87.751264276076682, 49.297197984405472 ], [ 88.013832228551706, 48.599462795600601 ], [ 88.854297723346775, 48.069081732773014 ], [ 90.280825636763922, 47.693549099307916 ], [ 90.970809360724985, 46.888146063822944 ], [ 90.585768263718336, 45.719716091487498 ], [ 90.94553958533433, 45.28607330991025 ], [ 92.13389082231825, 45.115075995456436 ], [ 93.48073367714133, 44.975472113620015 ], [ 94.68892866412537, 44.352331854828464 ], [ 95.306875441471533, 44.241330878265472 ], [ 95.762454868556716, 43.319449164394626 ], [ 96.349395786527822, 42.725635280928657 ], [ 97.451757440178, 42.748889675460077 ], [ 99.515817498780024, 42.524691473961695 ], [ 100.845865513108293, 42.663804429691425 ], [ 101.833040399179964, 42.514872951826277 ], [ 103.312278273534815, 41.907468166667627 ], [ 104.522281935649033, 41.908346666016627 ], [ 104.96499393109346, 41.597409572916348 ], [ 106.129315627061686, 42.134327704428898 ], [ 107.744772576938004, 42.481515814781915 ], [ 109.243595819131457, 42.519446316084156 ], [ 110.412103306115313, 42.871233628911028 ], [ 111.129682244920247, 43.406834011400178 ], [ 111.829587843881399, 43.743118394539493 ], [ 111.66773725794323, 44.073175767587713 ], [ 111.348376906379457, 44.457441718110061 ], [ 111.873306105600278, 45.102079372735119 ], [ 112.43606245325887, 45.011645616224257 ], [ 113.463906691544224, 44.808893134127118 ], [ 114.460331658996068, 45.339816799493889 ], [ 115.985096470200148, 45.727235012386018 ], [ 116.717868280098884, 46.388202419615254 ], [ 117.42170128791426, 46.672732855814218 ], [ 118.87432579963874, 46.805412095723653 ], [ 119.663269891438773, 46.692679958678951 ], [ 119.772823927897576, 47.048058783550147 ], [ 118.86657433479499, 47.74706004494621 ], [ 118.064142694166748, 48.066730455103738 ], [ 117.295507440257467, 47.697709052107399 ], [ 116.308952671373248, 47.853410142602826 ], [ 115.742837355615762, 47.726544501326288 ], [ 115.485282017073047, 48.135382595403456 ], [ 116.191802199367629, 49.134598090199063 ], [ 116.678800897286209, 49.888531399121405 ], [ 117.879244419426385, 49.510983384796958 ], [ 119.288460728025854, 50.142882798862047 ], [ 119.279365675942387, 50.582907619827296 ], [ 120.182049595216967, 51.643566392618027 ], [ 120.738191359542014, 51.964115302124554 ], [ 120.725789015792003, 52.516226304730822 ], [ 120.177088657716894, 52.753886216841209 ], [ 121.003084751470254, 53.251401068731241 ], [ 122.245747918792887, 53.431725979213695 ], [ 123.571506789240885, 53.458804429734641 ], [ 125.068211297710462, 53.161044826868846 ], [ 125.946348911646197, 52.79279857035695 ], [ 126.564399041857001, 51.784255479532703 ], [ 126.939156528837685, 51.35389415140591 ], [ 127.287455682484932, 50.739797268265448 ], [ 127.657407261262421, 49.760270494172943 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Ivory Coast\", \"sov_a3\": \"CIV\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Ivory Coast\", \"adm0_a3\": \"CIV\", \"geou_dif\": 0.000000, \"geounit\": \"Ivory Coast\", \"gu_a3\": \"CIV\", \"su_dif\": 0.000000, \"subunit\": \"Ivory Coast\", \"su_a3\": \"CIV\", \"brk_diff\": 0.000000, \"name\": \"Côte d'Ivoire\", \"name_long\": \"Côte d'Ivoire\", \"brk_a3\": \"CIV\", \"brk_name\": \"Côte d'Ivoire\", \"brk_group\": null, \"abbrev\": \"I.C.\", \"postal\": \"CI\", \"formal_en\": \"Republic of Ivory Coast\", \"formal_fr\": \"Republic of Cote D'Ivoire\", \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Côte d'Ivoire\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 3.000000, \"pop_est\": 20617068.000000, \"gdp_md_est\": 33850.000000, \"pop_year\": -99.000000, \"lastcensus\": 1998.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CI\", \"iso_a3\": \"CIV\", \"iso_n3\": \"384\", \"un_a3\": \"384\", \"wb_a2\": \"CI\", \"wb_a3\": \"CIV\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CIV\", \"adm0_a3_us\": \"CIV\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 13.000000, \"long_len\": 13.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -2.856125047202397, 4.994475816259509 ], [ -3.311084357100071, 4.984295559098015 ], [ -4.008819545904942, 5.179813340674315 ], [ -4.649917364917911, 5.168263658057086 ], [ -5.834496222344526, 4.993700669775137 ], [ -6.528769090185847, 4.705087795425015 ], [ -7.518941209330436, 4.338288479017308 ], [ -7.71215938966975, 4.364565944837722 ], [ -7.635368211284031, 5.188159084489456 ], [ -7.539715135111763, 5.313345241716519 ], [ -7.570152553731688, 5.707352199725904 ], [ -7.993692592795881, 6.126189683451543 ], [ -8.311347622094019, 6.193033148621083 ], [ -8.60288021486862, 6.46756419517166 ], [ -8.385451626000574, 6.911800645368743 ], [ -8.48544552248535, 7.39520783124307 ], [ -8.439298468448698, 7.686042792181738 ], [ -8.280703497744938, 7.687179673692157 ], [ -8.221792364932199, 8.123328762235573 ], [ -8.299048631208564, 8.316443589710303 ], [ -8.20349890790088, 8.455453192575447 ], [ -7.832100389019188, 8.575704250518626 ], [ -8.079113735374349, 9.376223863152035 ], [ -8.309616461612251, 9.789531968622441 ], [ -8.229337124046822, 10.129020290563901 ], [ -8.029943610048619, 10.206534939001713 ], [ -7.899589809592372, 10.297382106970828 ], [ -7.622759161804809, 10.147236232946796 ], [ -6.850506557635057, 10.138993841996239 ], [ -6.666460944027548, 10.430810655148449 ], [ -6.493965013037268, 10.411302801958271 ], [ -6.205222947606431, 10.524060777219134 ], [ -6.050452032892267, 10.096360785355444 ], [ -5.816926235365287, 10.222554633012194 ], [ -5.404341599946974, 10.370736802609146 ], [ -4.954653286143099, 10.152713934769736 ], [ -4.779883592131966, 9.821984768101743 ], [ -4.330246954760383, 9.610834865757141 ], [ -3.980449184576685, 9.8623440617217 ], [ -3.511898972986273, 9.90032623945622 ], [ -2.827496303712707, 9.642460842319778 ], [ -2.562189500326241, 8.219627793811483 ], [ -2.983584967450327, 7.379704901555513 ], [ -3.244370083011262, 6.250471503113502 ], [ -2.81070146321784, 5.38905121502411 ], [ -2.856125047202397, 4.994475816259509 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Cameroon\", \"sov_a3\": \"CMR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Cameroon\", \"adm0_a3\": \"CMR\", \"geou_dif\": 0.000000, \"geounit\": \"Cameroon\", \"gu_a3\": \"CMR\", \"su_dif\": 0.000000, \"subunit\": \"Cameroon\", \"su_a3\": \"CMR\", \"brk_diff\": 0.000000, \"name\": \"Cameroon\", \"name_long\": \"Cameroon\", \"brk_a3\": \"CMR\", \"brk_name\": \"Cameroon\", \"brk_group\": null, \"abbrev\": \"Cam.\", \"postal\": \"CM\", \"formal_en\": \"Republic of Cameroon\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Cameroon\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 3.000000, \"pop_est\": 18879301.000000, \"gdp_md_est\": 42750.000000, \"pop_year\": -99.000000, \"lastcensus\": 2005.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CM\", \"iso_a3\": \"CMR\", \"iso_n3\": \"120\", \"un_a3\": \"120\", \"wb_a2\": \"CM\", \"wb_a3\": \"CMR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CMR\", \"adm0_a3_us\": \"CMR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Middle Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 13.075822381246752, 2.267097072759015 ], [ 12.951333855855609, 2.32161570882694 ], [ 12.359380323952221, 2.19281220133945 ], [ 11.75166548019979, 2.326757513839993 ], [ 11.276449008843713, 2.261050930180872 ], [ 9.649158155972628, 2.283866075037736 ], [ 9.795195753629457, 3.073404445809117 ], [ 9.404366896206, 3.734526882335203 ], [ 8.948115675501072, 3.904128933117136 ], [ 8.744923943729418, 4.35221527751996 ], [ 8.48881554529089, 4.495617377129918 ], [ 8.500287713259695, 4.771982937026849 ], [ 8.757532993208628, 5.479665839047911 ], [ 9.233162876023044, 6.444490668153335 ], [ 9.522705926154401, 6.453482367372117 ], [ 10.118276808318257, 7.03876963950988 ], [ 10.497375115611419, 7.055357774275564 ], [ 11.058787876030351, 6.644426784690594 ], [ 11.745774366918511, 6.981382961449754 ], [ 11.839308709366803, 7.397042344589437 ], [ 12.063946160539558, 7.799808457872302 ], [ 12.218872104550599, 8.305824082874324 ], [ 12.753671502339216, 8.717762762888995 ], [ 12.955467970438974, 9.417771714714704 ], [ 13.167599724997103, 9.640626328973411 ], [ 13.308676385153918, 10.160362046748928 ], [ 13.572949659894562, 10.798565985553566 ], [ 14.415378859116684, 11.572368882692075 ], [ 14.468192172918975, 11.904751695193411 ], [ 14.577177768622533, 12.085360826053503 ], [ 14.181336297266794, 12.483656927943116 ], [ 14.213530714584635, 12.802035427293347 ], [ 14.495787387762846, 12.859396267137329 ], [ 14.893385857816526, 12.219047756392584 ], [ 14.960151808337599, 11.555574042197224 ], [ 14.923564894274961, 10.891325181517473 ], [ 15.467872755605271, 9.982336737503431 ], [ 14.909353875394716, 9.992129421422732 ], [ 14.62720055508106, 9.920919297724538 ], [ 14.171466098699028, 10.021378282099931 ], [ 13.954218377344006, 9.549494940626687 ], [ 14.54446658698177, 8.965861314322268 ], [ 14.97999555833769, 8.796104234243472 ], [ 15.120865512765334, 8.382150173369425 ], [ 15.436091749745771, 7.692812404811973 ], [ 15.279460483469109, 7.421924546737969 ], [ 14.776545444404576, 6.408498033062045 ], [ 14.536560092841114, 6.22695872642069 ], [ 14.459407179429348, 5.4517605656103 ], [ 14.558935988023507, 5.03059764243153 ], [ 14.478372430080469, 4.732605495620447 ], [ 14.950953403389661, 4.210389309094921 ], [ 15.036219516671252, 3.851367295747124 ], [ 15.405395948964383, 3.33530060466434 ], [ 15.862732374747482, 3.013537298998983 ], [ 15.907380812247652, 2.557389431158612 ], [ 16.012852410555354, 2.267639675298085 ], [ 15.940918816805066, 1.727672634280296 ], [ 15.146341993885244, 1.964014797367184 ], [ 14.337812534246581, 2.227874660649491 ], [ 13.075822381246752, 2.267097072759015 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Democratic Republic of the Congo\", \"sov_a3\": \"COD\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Democratic Republic of the Congo\", \"adm0_a3\": \"COD\", \"geou_dif\": 0.000000, \"geounit\": \"Democratic Republic of the Congo\", \"gu_a3\": \"COD\", \"su_dif\": 0.000000, \"subunit\": \"Democratic Republic of the Congo\", \"su_a3\": \"COD\", \"brk_diff\": 0.000000, \"name\": \"Dem. Rep. Congo\", \"name_long\": \"Democratic Republic of the Congo\", \"brk_a3\": \"COD\", \"brk_name\": \"Democratic Republic of the Congo\", \"brk_group\": null, \"abbrev\": \"D.R.C.\", \"postal\": \"DRC\", \"formal_en\": \"Democratic Republic of the Congo\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Congo, Dem. Rep.\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 7.000000, \"pop_est\": 68692542.000000, \"gdp_md_est\": 20640.000000, \"pop_year\": -99.000000, \"lastcensus\": 1984.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CD\", \"iso_a3\": \"COD\", \"iso_n3\": \"180\", \"un_a3\": \"180\", \"wb_a2\": \"ZR\", \"wb_a3\": \"ZAR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"COD\", \"adm0_a3_us\": \"COD\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Middle Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 15.000000, \"long_len\": 32.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 30.833859897593811, 3.509165961110341 ], [ 30.773346795380039, 2.339883327642127 ], [ 31.174149204235817, 2.204465236821264 ], [ 30.852670118948058, 1.849396470543809 ], [ 30.468507521290295, 1.583805446779721 ], [ 30.086153598762706, 1.062312730306289 ], [ 29.875778842902491, 0.597379868976304 ], [ 29.819503208136638, -0.205310153813372 ], [ 29.587837762172171, -0.587405694179481 ], [ 29.579466180140884, -1.341313164885626 ], [ 29.291886834436614, -1.620055840667987 ], [ 29.254834832483343, -2.215109958508911 ], [ 29.117478875451553, -2.292211195488385 ], [ 29.024926385216787, -2.839257907730158 ], [ 29.276383904749053, -3.293907159034063 ], [ 29.339997592900346, -4.499983412294092 ], [ 29.519986606572928, -5.419978936386315 ], [ 29.419992710088167, -5.939998874539434 ], [ 29.620032179490014, -6.520015150583426 ], [ 30.199996779101696, -7.079980970898163 ], [ 30.740015496551791, -8.340007419470915 ], [ 30.346086053190817, -8.238256524288218 ], [ 29.00291222506047, -8.407031752153472 ], [ 28.734866570762502, -8.526559340044578 ], [ 28.449871046672826, -9.164918308146085 ], [ 28.673681674928929, -9.605924981324932 ], [ 28.49606977714177, -10.789883721564046 ], [ 28.372253045370428, -11.793646742401393 ], [ 28.642417433392353, -11.971568698782315 ], [ 29.34154788586909, -12.360743910372413 ], [ 29.61600141777123, -12.178894545137311 ], [ 29.699613885219492, -13.257226657771831 ], [ 28.934285922976837, -13.248958428605135 ], [ 28.523561639121027, -12.698604424696683 ], [ 28.155108676879987, -12.272480564017897 ], [ 27.388798862423783, -12.132747491100666 ], [ 27.164419793412463, -11.608748467661075 ], [ 26.553087599399618, -11.924439792532127 ], [ 25.752309604604733, -11.784965101776358 ], [ 25.418118116973204, -11.330935967659961 ], [ 24.783169793402951, -11.238693536018964 ], [ 24.314516228947952, -11.26282642989927 ], [ 24.257155389103989, -10.951992689663657 ], [ 23.912215203555718, -10.926826267137514 ], [ 23.45679080576744, -10.867863457892483 ], [ 22.837345411884741, -11.017621758674331 ], [ 22.402798292742375, -10.993075453335692 ], [ 22.155268182064308, -11.084801120653772 ], [ 22.208753289486395, -9.894796237836509 ], [ 21.875181919042348, -9.523707777548566 ], [ 21.8018013851879, -8.908706556842979 ], [ 21.949130893652043, -8.305900974158277 ], [ 21.746455926203311, -7.920084730667149 ], [ 21.728110792739699, -7.290872491081302 ], [ 20.514748162526502, -7.299605808138629 ], [ 20.601822950938299, -6.939317722199682 ], [ 20.091621534920648, -6.943090101756994 ], [ 20.037723016040218, -7.116361179231646 ], [ 19.41750247567316, -7.155428562044299 ], [ 19.166613396896111, -7.738183688999754 ], [ 19.016751743249671, -7.988245944860132 ], [ 18.464175652752687, -7.847014255406443 ], [ 18.134221632569052, -7.987677504104923 ], [ 17.472970004962235, -8.0685511206417 ], [ 17.089995965247169, -7.545688978712526 ], [ 16.860190870845202, -7.222297865429987 ], [ 16.573179965896145, -6.622644545115087 ], [ 16.326528354567046, -5.877470391466268 ], [ 13.375597364971895, -5.864241224799549 ], [ 13.024869419006961, -5.984388929878158 ], [ 12.735171339578699, -5.965682061388499 ], [ 12.322431674863511, -6.10009246177966 ], [ 12.182336866920252, -5.789930515163839 ], [ 12.436688266660868, -5.684303887559246 ], [ 12.468004184629736, -5.248361504745005 ], [ 12.63161176926579, -4.991271254092936 ], [ 12.995517205465177, -4.781103203961884 ], [ 13.258240187237048, -4.882957452009165 ], [ 13.600234816144678, -4.50013844159097 ], [ 14.144956088933299, -4.510008640158716 ], [ 14.209034864975223, -4.793092136253598 ], [ 14.582603794013181, -4.97023894615014 ], [ 15.170991652088444, -4.343507175314301 ], [ 15.753540073314753, -3.855164890156097 ], [ 16.006289503654301, -3.535132744972529 ], [ 15.972803175529151, -2.712392266453612 ], [ 16.407091912510054, -1.740927015798682 ], [ 16.865306837642123, -1.225816338713287 ], [ 17.523716261472856, -0.743830254726987 ], [ 17.638644646889986, -0.424831638189247 ], [ 17.663552687254679, -0.058083998213817 ], [ 17.826540154703252, 0.288923244626105 ], [ 17.774191928791566, 0.855658677571085 ], [ 17.898835483479587, 1.741831976728278 ], [ 18.094275750407434, 2.365721543788055 ], [ 18.393792351971143, 2.90044342692822 ], [ 18.453065219809929, 3.504385891123349 ], [ 18.542982211997781, 4.201785183118318 ], [ 18.932312452884759, 4.709506130385975 ], [ 19.467783644293149, 5.03152781821278 ], [ 20.290679152108936, 4.691677761245288 ], [ 20.927591180106276, 4.322785549329737 ], [ 21.659122755630023, 4.22434194581372 ], [ 22.405123732195538, 4.029160061047321 ], [ 22.704123569436291, 4.633050848810157 ], [ 22.841479526468106, 4.710126247573484 ], [ 23.297213982850138, 4.609693101414223 ], [ 24.410531040146253, 5.10878408448913 ], [ 24.805028924262416, 4.89724660890235 ], [ 25.128833449003281, 4.92724477784779 ], [ 25.278798455514305, 5.170408229997192 ], [ 25.650455356557472, 5.256087754737123 ], [ 26.402760857862543, 5.150874538590871 ], [ 27.04406538260471, 5.127852688004836 ], [ 27.37422610851749, 5.233944403500061 ], [ 27.979977247842811, 4.408413397637375 ], [ 28.428993768026913, 4.287154649264494 ], [ 28.696677687298802, 4.455077215996937 ], [ 29.1590784034465, 4.389267279473231 ], [ 29.71599531425602, 4.600804755060025 ], [ 29.953500197069474, 4.173699042167684 ], [ 30.833859897593811, 3.509165961110341 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Republic of Congo\", \"sov_a3\": \"COG\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Republic of Congo\", \"adm0_a3\": \"COG\", \"geou_dif\": 0.000000, \"geounit\": \"Republic of Congo\", \"gu_a3\": \"COG\", \"su_dif\": 0.000000, \"subunit\": \"Republic of Congo\", \"su_a3\": \"COG\", \"brk_diff\": 0.000000, \"name\": \"Congo\", \"name_long\": \"Republic of Congo\", \"brk_a3\": \"COG\", \"brk_name\": \"Republic of Congo\", \"brk_group\": null, \"abbrev\": \"Rep. Congo\", \"postal\": \"CG\", \"formal_en\": \"Republic of Congo\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Congo, Rep.\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 10.000000, \"pop_est\": 4012809.000000, \"gdp_md_est\": 15350.000000, \"pop_year\": -99.000000, \"lastcensus\": 2007.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CG\", \"iso_a3\": \"COG\", \"iso_n3\": \"178\", \"un_a3\": \"178\", \"wb_a2\": \"CG\", \"wb_a3\": \"COG\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"COG\", \"adm0_a3_us\": \"COG\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Middle Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 5.000000, \"long_len\": 17.000000, \"abbrev_len\": 10.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 12.995517205465177, -4.781103203961884 ], [ 12.620759718484493, -4.438023369976136 ], [ 12.318607618873926, -4.606230157086188 ], [ 11.91496300624209, -5.037986748884791 ], [ 11.093772820691925, -3.978826592630547 ], [ 11.855121697648116, -3.426870619321051 ], [ 11.478038771214303, -2.765618991714241 ], [ 11.820963575903193, -2.514161472181982 ], [ 12.495702752338161, -2.391688327650243 ], [ 12.575284458067642, -1.948511244315135 ], [ 13.109618767965628, -2.428740329603514 ], [ 13.99240726080771, -2.4708049454891 ], [ 14.299210239324566, -1.998275648612214 ], [ 14.425455763413595, -1.333406670744971 ], [ 14.316418491277744, -0.552627455247048 ], [ 13.843320753645656, 0.038757635901149 ], [ 14.276265903386957, 1.196929836426619 ], [ 14.026668735417218, 1.395677395021153 ], [ 13.282631463278818, 1.31418366129688 ], [ 13.003113641012078, 1.83089630778332 ], [ 13.075822381246752, 2.267097072759015 ], [ 14.337812534246581, 2.227874660649491 ], [ 15.146341993885244, 1.964014797367184 ], [ 15.940918816805066, 1.727672634280296 ], [ 16.012852410555354, 2.267639675298085 ], [ 16.537058139724138, 3.198254706226279 ], [ 17.133042433346304, 3.728196519379452 ], [ 17.809900343505262, 3.56019643799857 ], [ 18.453065219809929, 3.504385891123349 ], [ 18.393792351971143, 2.90044342692822 ], [ 18.094275750407434, 2.365721543788055 ], [ 17.898835483479587, 1.741831976728278 ], [ 17.774191928791566, 0.855658677571085 ], [ 17.826540154703252, 0.288923244626105 ], [ 17.663552687254679, -0.058083998213817 ], [ 17.638644646889986, -0.424831638189247 ], [ 17.523716261472856, -0.743830254726987 ], [ 16.865306837642123, -1.225816338713287 ], [ 16.407091912510054, -1.740927015798682 ], [ 15.972803175529151, -2.712392266453612 ], [ 16.006289503654301, -3.535132744972529 ], [ 15.753540073314753, -3.855164890156097 ], [ 15.170991652088444, -4.343507175314301 ], [ 14.582603794013181, -4.97023894615014 ], [ 14.209034864975223, -4.793092136253598 ], [ 14.144956088933299, -4.510008640158716 ], [ 13.600234816144678, -4.50013844159097 ], [ 13.258240187237048, -4.882957452009165 ], [ 12.995517205465177, -4.781103203961884 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Colombia\", \"sov_a3\": \"COL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Colombia\", \"adm0_a3\": \"COL\", \"geou_dif\": 0.000000, \"geounit\": \"Colombia\", \"gu_a3\": \"COL\", \"su_dif\": 0.000000, \"subunit\": \"Colombia\", \"su_a3\": \"COL\", \"brk_diff\": 0.000000, \"name\": \"Colombia\", \"name_long\": \"Colombia\", \"brk_a3\": \"COL\", \"brk_name\": \"Colombia\", \"brk_group\": null, \"abbrev\": \"Col.\", \"postal\": \"CO\", \"formal_en\": \"Republic of Colombia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Colombia\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 1.000000, \"pop_est\": 45644023.000000, \"gdp_md_est\": 395400.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CO\", \"iso_a3\": \"COL\", \"iso_n3\": \"170\", \"un_a3\": \"170\", \"wb_a2\": \"CO\", \"wb_a3\": \"COL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"COL\", \"adm0_a3_us\": \"COL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -75.373223232713855, -0.15203175212045 ], [ -75.801465827116601, 0.084801337073202 ], [ -76.292314419240967, 0.416047268064119 ], [ -76.576379767549398, 0.256935533037435 ], [ -77.424984300430395, 0.395686753741117 ], [ -77.668612840470445, 0.825893052570962 ], [ -77.855061408179523, 0.809925034992773 ], [ -78.855258755188714, 1.380923773601822 ], [ -78.99093522817104, 1.691369940595251 ], [ -78.617831387023713, 1.766404120283056 ], [ -78.662118089497852, 2.267355454920477 ], [ -78.427610439757331, 2.629555568854215 ], [ -77.931542527971487, 2.696605739752926 ], [ -77.51043128122501, 3.325016994638247 ], [ -77.12768978545526, 3.849636135265357 ], [ -77.496271938777028, 4.087606105969428 ], [ -77.307601284479404, 4.667984117039452 ], [ -77.533220587865728, 5.582811997902497 ], [ -77.318815070286746, 5.84535411216136 ], [ -77.47666073272228, 6.691116441266303 ], [ -77.881571417945253, 7.223771267114785 ], [ -77.753413865861404, 7.709839789252143 ], [ -77.431107957656991, 7.638061224798734 ], [ -77.242566494440084, 7.935278225125444 ], [ -77.474722866511328, 8.524286200388218 ], [ -77.353360765273862, 8.67050466555807 ], [ -76.836673957003569, 8.638749497914716 ], [ -76.086383836557857, 9.336820583529487 ], [ -75.674600185840063, 9.443248195834599 ], [ -75.664704149056178, 9.774003200718738 ], [ -75.480425991503353, 10.618990383339309 ], [ -74.906895107711989, 11.083044745320322 ], [ -74.276752692344886, 11.102035834187587 ], [ -74.197222663047697, 11.310472723836867 ], [ -73.414763963500292, 11.22701528568548 ], [ -72.627835252559635, 11.731971543825523 ], [ -72.238194953078917, 11.955549628136326 ], [ -71.754090135368642, 12.437303168177309 ], [ -71.399822353791706, 12.376040757695293 ], [ -71.13746110704588, 12.112981879113505 ], [ -71.331583624950298, 11.776284084515808 ], [ -71.973921678338286, 11.60867157637712 ], [ -72.227575446242938, 11.108702093953241 ], [ -72.614657762325209, 10.821975409381778 ], [ -72.905286017534706, 10.450344346554772 ], [ -73.027604132769568, 9.736770331252444 ], [ -73.304951544880055, 9.151999823437606 ], [ -72.788729824500393, 9.085027167187334 ], [ -72.660494757768106, 8.625287787302682 ], [ -72.439862230097958, 8.405275376820029 ], [ -72.360900641555972, 8.002638454617895 ], [ -72.479678921178845, 7.632506008327354 ], [ -72.444487270788073, 7.423784898300482 ], [ -72.198352423781884, 7.340430813013683 ], [ -71.960175747348643, 6.991614895043539 ], [ -70.674233567981517, 7.087784735538719 ], [ -70.093312954372422, 6.96037649172311 ], [ -69.389479946557117, 6.099860541198836 ], [ -68.985318569602356, 6.206804917826858 ], [ -68.26505245631823, 6.153268133972475 ], [ -67.695087246355016, 6.267318020040647 ], [ -67.341439581965574, 6.095468044454023 ], [ -67.521531948502755, 5.556870428891969 ], [ -67.744696621355217, 5.221128648291668 ], [ -67.823012254493548, 4.503937282728899 ], [ -67.621835903581285, 3.839481716319995 ], [ -67.337563849543685, 3.542342230641722 ], [ -67.303173183853445, 3.31845408773718 ], [ -67.809938117123707, 2.820655015469569 ], [ -67.447092047786313, 2.600280869960869 ], [ -67.18129431829307, 2.250638129074062 ], [ -66.87632585312258, 1.253360500489336 ], [ -67.065048183852497, 1.130112209473225 ], [ -67.259997524673594, 1.719998684084956 ], [ -67.537810024674698, 2.03716278727633 ], [ -67.868565029558837, 1.692455145673392 ], [ -69.816973232691623, 1.714805202639624 ], [ -69.80459672715773, 1.089081122233466 ], [ -69.21863766140018, 0.985676581217433 ], [ -69.252434048119056, 0.602650865070075 ], [ -69.452396002872462, 0.706158758950693 ], [ -70.015565761989308, 0.541414292804205 ], [ -70.020655890570055, -0.185156345219539 ], [ -69.5770653957766, -0.549991957200163 ], [ -69.420485805932231, -1.122618503426409 ], [ -69.444101935489613, -1.556287123219818 ], [ -69.893635219996625, -4.298186944194327 ], [ -70.394043952094989, -3.766591485207825 ], [ -70.692682054309714, -3.742872002785859 ], [ -70.047708502874855, -2.725156345229699 ], [ -70.813475714791963, -2.256864515800743 ], [ -71.413645799429787, -2.342802422702128 ], [ -71.774760708285399, -2.169789727388938 ], [ -72.325786505813653, -2.434218031426454 ], [ -73.070392218707241, -2.308954359550953 ], [ -73.6595035468346, -1.260491224781134 ], [ -74.122395189089062, -1.002832533373848 ], [ -74.441600511355972, -0.530820000819887 ], [ -75.106624518520078, -0.05720549886486 ], [ -75.373223232713855, -0.15203175212045 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Costa Rica\", \"sov_a3\": \"CRI\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Costa Rica\", \"adm0_a3\": \"CRI\", \"geou_dif\": 0.000000, \"geounit\": \"Costa Rica\", \"gu_a3\": \"CRI\", \"su_dif\": 0.000000, \"subunit\": \"Costa Rica\", \"su_a3\": \"CRI\", \"brk_diff\": 0.000000, \"name\": \"Costa Rica\", \"name_long\": \"Costa Rica\", \"brk_a3\": \"CRI\", \"brk_name\": \"Costa Rica\", \"brk_group\": null, \"abbrev\": \"C.R.\", \"postal\": \"CR\", \"formal_en\": \"Republic of Costa Rica\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Costa Rica\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 2.000000, \"pop_est\": 4253877.000000, \"gdp_md_est\": 48320.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CR\", \"iso_a3\": \"CRI\", \"iso_n3\": \"188\", \"un_a3\": \"188\", \"wb_a2\": \"CR\", \"wb_a3\": \"CRI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CRI\", \"adm0_a3_us\": \"CRI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Central America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -82.965783047197363, 8.225027980985985 ], [ -83.508437262694315, 8.446926581247283 ], [ -83.711473965169077, 8.656836249216866 ], [ -83.596313035806645, 8.830443223501419 ], [ -83.632641567707836, 9.051385809765321 ], [ -83.909885626953738, 9.290802720573581 ], [ -84.303401658856359, 9.487354030795714 ], [ -84.647644212568665, 9.615537421095709 ], [ -84.713350796227772, 9.908051866083852 ], [ -84.975660366541334, 10.086723130733006 ], [ -84.91137488477024, 9.795991522658923 ], [ -85.11092342806532, 9.55703969974131 ], [ -85.339488288092269, 9.83454214114866 ], [ -85.66078650586698, 9.933347479690724 ], [ -85.797444831062847, 10.134885565629034 ], [ -85.791708747078431, 10.439337266476613 ], [ -85.659313727546674, 10.754330959511719 ], [ -85.941725430021762, 10.895278428587801 ], [ -85.712540452807303, 11.088444932494824 ], [ -85.561851976244199, 11.217119248901597 ], [ -84.903003302738952, 10.952303371621896 ], [ -84.673069017256267, 11.082657172078143 ], [ -84.35593075228104, 10.999225572142905 ], [ -84.19017859570485, 10.793450018756674 ], [ -83.895054490885954, 10.726839097532446 ], [ -83.655611741861577, 10.938764146361422 ], [ -83.402319708982958, 10.395438137244653 ], [ -83.015676642575173, 9.992982082555557 ], [ -82.546196255203483, 9.566134751824677 ], [ -82.932890998043575, 9.476812038608173 ], [ -82.927154914059159, 9.074330145702916 ], [ -82.719183112300527, 8.925708726431495 ], [ -82.868657192704774, 8.807266343618522 ], [ -82.829770677405165, 8.62629547773237 ], [ -82.913176439124214, 8.42351715741907 ], [ -82.965783047197363, 8.225027980985985 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Cuba\", \"sov_a3\": \"CUB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Cuba\", \"adm0_a3\": \"CUB\", \"geou_dif\": 0.000000, \"geounit\": \"Cuba\", \"gu_a3\": \"CUB\", \"su_dif\": 0.000000, \"subunit\": \"Cuba\", \"su_a3\": \"CUB\", \"brk_diff\": 0.000000, \"name\": \"Cuba\", \"name_long\": \"Cuba\", \"brk_a3\": \"CUB\", \"brk_name\": \"Cuba\", \"brk_group\": null, \"abbrev\": \"Cuba\", \"postal\": \"CU\", \"formal_en\": \"Republic of Cuba\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Cuba\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 4.000000, \"pop_est\": 11451652.000000, \"gdp_md_est\": 108200.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CU\", \"iso_a3\": \"CUB\", \"iso_n3\": \"192\", \"un_a3\": \"192\", \"wb_a2\": \"CU\", \"wb_a3\": \"CUB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CUB\", \"adm0_a3_us\": \"CUB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Caribbean\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -82.268151211257063, 23.188610744717707 ], [ -81.404457160146833, 23.117271429938782 ], [ -80.618768683581195, 23.105980129483001 ], [ -79.67952368846025, 22.76530324959883 ], [ -79.281485968732085, 22.399201565027056 ], [ -78.347434455056487, 22.512166246017088 ], [ -77.993295864560281, 22.277193508385935 ], [ -77.146422492161051, 21.657851467367834 ], [ -76.523824835908556, 21.206819566324373 ], [ -76.19462012399319, 21.220565497314013 ], [ -75.59822241891267, 21.016624457274133 ], [ -75.671060350228061, 20.735091254148003 ], [ -74.933896043584497, 20.693905137611385 ], [ -74.17802486845126, 20.284627793859741 ], [ -74.296648118777256, 20.050378526280682 ], [ -74.961594611292938, 19.923435370355691 ], [ -75.634680141894592, 19.873774318923196 ], [ -76.323656175425995, 19.95289093676206 ], [ -77.755480923153073, 19.855480861891877 ], [ -77.085108405246743, 20.413353786698792 ], [ -77.492654588516615, 20.673105373613893 ], [ -78.137292243141587, 20.739948838783434 ], [ -78.482826707661189, 21.028613389565852 ], [ -78.719866502584011, 21.598113511638434 ], [ -79.284999966127941, 21.559175319906501 ], [ -80.217475348618649, 21.827324327069036 ], [ -80.517534552721415, 22.03707896574176 ], [ -81.820943366203181, 22.192056586185071 ], [ -82.16999182811864, 22.387109279870753 ], [ -81.795001797192668, 22.636964830001958 ], [ -82.775897996740852, 22.688150336187064 ], [ -83.494458787759356, 22.168517971276131 ], [ -83.908800421875625, 22.154565334557333 ], [ -84.052150845053262, 21.910575059491254 ], [ -84.54703019889638, 21.801227728761646 ], [ -84.974911058273108, 21.89602814380109 ], [ -84.447062140627764, 22.204949856041907 ], [ -84.230357021811784, 22.565754706303764 ], [ -83.778239915690193, 22.788118394455694 ], [ -83.26754757356575, 22.983041897060644 ], [ -82.510436164057509, 23.078746649665188 ], [ -82.268151211257063, 23.188610744717707 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Northern Cyprus\", \"sov_a3\": \"CYN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Northern Cyprus\", \"adm0_a3\": \"CYN\", \"geou_dif\": 0.000000, \"geounit\": \"Northern Cyprus\", \"gu_a3\": \"CYN\", \"su_dif\": 0.000000, \"subunit\": \"Northern Cyprus\", \"su_a3\": \"CYN\", \"brk_diff\": 1.000000, \"name\": \"N. Cyprus\", \"name_long\": \"Northern Cyprus\", \"brk_a3\": \"B20\", \"brk_name\": \"N. Cyprus\", \"brk_group\": null, \"abbrev\": \"N. Cy.\", \"postal\": \"CN\", \"formal_en\": \"Turkish Republic of Northern Cyprus\", \"formal_fr\": null, \"note_adm0\": \"Self admin.\", \"note_brk\": \"Self admin.; Claimed by Cyprus\", \"name_sort\": \"Cyprus, Northern\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 8.000000, \"pop_est\": 265100.000000, \"gdp_md_est\": 3600.000000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"-99\", \"iso_a3\": \"-99\", \"iso_n3\": \"-99\", \"un_a3\": \"-099\", \"wb_a2\": \"-99\", \"wb_a3\": \"-99\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CYP\", \"adm0_a3_us\": \"CYP\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 9.000000, \"long_len\": 15.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 32.731780226377452, 35.140025946588437 ], [ 32.80247358575275, 35.145503648411378 ], [ 32.946960890440806, 35.386703396133697 ], [ 33.667227003724946, 35.373215847305516 ], [ 34.576473829900465, 35.671595567358793 ], [ 33.900804477684204, 35.245755927057616 ], [ 33.973616570783463, 35.058506374648005 ], [ 33.866439650210111, 35.093594672174191 ], [ 33.675391880027064, 35.017862860650453 ], [ 33.525685255677502, 35.038688462864073 ], [ 33.475817498515852, 35.000344550103506 ], [ 33.455922072083467, 35.101423651666408 ], [ 33.383833449036302, 35.16271190036457 ], [ 33.190977003723049, 35.17312470147138 ], [ 32.919572381326134, 35.087832749973643 ], [ 32.731780226377452, 35.140025946588437 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Cyprus\", \"sov_a3\": \"CYP\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Cyprus\", \"adm0_a3\": \"CYP\", \"geou_dif\": 0.000000, \"geounit\": \"Cyprus\", \"gu_a3\": \"CYP\", \"su_dif\": 0.000000, \"subunit\": \"Cyprus\", \"su_a3\": \"CYP\", \"brk_diff\": 0.000000, \"name\": \"Cyprus\", \"name_long\": \"Cyprus\", \"brk_a3\": \"CYP\", \"brk_name\": \"Cyprus\", \"brk_group\": null, \"abbrev\": \"Cyp.\", \"postal\": \"CY\", \"formal_en\": \"Republic of Cyprus\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Cyprus\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 7.000000, \"pop_est\": 531640.000000, \"gdp_md_est\": 22700.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CY\", \"iso_a3\": \"CYP\", \"iso_n3\": \"196\", \"un_a3\": \"196\", \"wb_a2\": \"CY\", \"wb_a3\": \"CYP\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CYP\", \"adm0_a3_us\": \"CYP\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 33.973616570783463, 35.058506374648005 ], [ 34.004880812320039, 34.978097846001859 ], [ 32.979827101378447, 34.571869411755443 ], [ 32.490296258277539, 34.701654771456475 ], [ 32.25666710788596, 35.103232326796629 ], [ 32.731780226377452, 35.140025946588437 ], [ 32.919572381326134, 35.087832749973643 ], [ 33.190977003723049, 35.17312470147138 ], [ 33.383833449036302, 35.16271190036457 ], [ 33.455922072083467, 35.101423651666408 ], [ 33.475817498515852, 35.000344550103506 ], [ 33.525685255677502, 35.038688462864073 ], [ 33.675391880027064, 35.017862860650453 ], [ 33.866439650210111, 35.093594672174191 ], [ 33.973616570783463, 35.058506374648005 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Czech Republic\", \"sov_a3\": \"CZE\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Czech Republic\", \"adm0_a3\": \"CZE\", \"geou_dif\": 0.000000, \"geounit\": \"Czech Republic\", \"gu_a3\": \"CZE\", \"su_dif\": 0.000000, \"subunit\": \"Czech Republic\", \"su_a3\": \"CZE\", \"brk_diff\": 0.000000, \"name\": \"Czech Rep.\", \"name_long\": \"Czech Republic\", \"brk_a3\": \"CZE\", \"brk_name\": \"Czech Rep.\", \"brk_group\": null, \"abbrev\": \"Cz. Rep.\", \"postal\": \"CZ\", \"formal_en\": \"Czech Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Czech Republic\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 6.000000, \"pop_est\": 10211904.000000, \"gdp_md_est\": 265200.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"CZ\", \"iso_a3\": \"CZE\", \"iso_n3\": \"203\", \"un_a3\": \"203\", \"wb_a2\": \"CZ\", \"wb_a3\": \"CZE\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"CZE\", \"adm0_a3_us\": \"CZE\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 10.000000, \"long_len\": 14.000000, \"abbrev_len\": 8.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 16.960288120194576, 48.5969823268506 ], [ 16.499282667718774, 48.785808010445109 ], [ 16.029647251050221, 48.73389903420793 ], [ 15.253415561593982, 49.039074205107582 ], [ 14.901447381254057, 48.964401760445824 ], [ 14.338897739324722, 48.555305284207208 ], [ 13.595945672264437, 48.877171942737149 ], [ 13.031328973043431, 49.307068182973239 ], [ 12.521024204161193, 49.547415269562734 ], [ 12.415190870827445, 49.969120795280567 ], [ 12.240111118222558, 50.266337795607285 ], [ 12.966836785543194, 50.484076443069085 ], [ 13.338131951560285, 50.733234361364353 ], [ 14.056227654688172, 50.9269176295943 ], [ 14.307013380600637, 51.117267767941414 ], [ 14.570718214586066, 51.002339382524276 ], [ 15.016995883858669, 51.10667409932158 ], [ 15.490972120839729, 50.784729926143207 ], [ 16.238626743238569, 50.697732652379841 ], [ 16.176253289462267, 50.422607326857907 ], [ 16.719475945714436, 50.215746568393541 ], [ 16.868769158605659, 50.47397370055603 ], [ 17.554567091551121, 50.362145901076417 ], [ 17.649445021238989, 50.049038397819956 ], [ 18.392913852622172, 49.988628648470751 ], [ 18.853144158613617, 49.496229763377642 ], [ 18.554971144289482, 49.495015367218784 ], [ 18.399993523846177, 49.315000515330041 ], [ 18.170498488037964, 49.271514797556435 ], [ 18.104972771891852, 49.043983466175312 ], [ 17.913511590250465, 48.996492824899086 ], [ 17.886484816161811, 48.903475246773709 ], [ 17.545006951577108, 48.80001902932537 ], [ 17.101984897538898, 48.816968899117114 ], [ 16.960288120194576, 48.5969823268506 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Germany\", \"sov_a3\": \"DEU\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Germany\", \"adm0_a3\": \"DEU\", \"geou_dif\": 0.000000, \"geounit\": \"Germany\", \"gu_a3\": \"DEU\", \"su_dif\": 0.000000, \"subunit\": \"Germany\", \"su_a3\": \"DEU\", \"brk_diff\": 0.000000, \"name\": \"Germany\", \"name_long\": \"Germany\", \"brk_a3\": \"DEU\", \"brk_name\": \"Germany\", \"brk_group\": null, \"abbrev\": \"Ger.\", \"postal\": \"D\", \"formal_en\": \"Federal Republic of Germany\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Germany\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 1.000000, \"pop_est\": 82329758.000000, \"gdp_md_est\": 2918000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"1. Developed region: G7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"DE\", \"iso_a3\": \"DEU\", \"iso_n3\": \"276\", \"un_a3\": \"276\", \"wb_a2\": \"DE\", \"wb_a3\": \"DEU\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"DEU\", \"adm0_a3_us\": \"DEU\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Western Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 9.921906365609232, 54.983104153048032 ], [ 9.9395797054529, 54.596641954153256 ], [ 10.950112338920519, 54.363607082733154 ], [ 10.93946699386845, 54.00869334575259 ], [ 11.956252475643282, 54.196485500701158 ], [ 12.518440382546714, 54.470370591847995 ], [ 13.647467075259499, 54.075510972705899 ], [ 14.119686313542559, 53.75702912049104 ], [ 14.353315463934166, 53.248171291713106 ], [ 14.074521111719434, 52.981262518925348 ], [ 14.437599725002201, 52.624850165408304 ], [ 14.685026482815715, 52.089947414755216 ], [ 14.607098422919648, 51.745188096719971 ], [ 15.016995883858783, 51.106674099321708 ], [ 14.570718214586122, 51.002339382524383 ], [ 14.307013380600665, 51.117267767941371 ], [ 14.056227654688314, 50.926917629594357 ], [ 13.338131951560399, 50.733234361364282 ], [ 12.966836785543251, 50.484076443069171 ], [ 12.240111118222671, 50.266337795607228 ], [ 12.415190870827473, 49.969120795280617 ], [ 12.521024204161336, 49.547415269562748 ], [ 13.031328973043514, 49.307068182973239 ], [ 13.595945672264577, 48.877171942737164 ], [ 13.243357374737116, 48.41611481382904 ], [ 12.884102817443875, 48.28914581968786 ], [ 13.025851271220517, 47.637583523135959 ], [ 12.932626987366064, 47.467645575543997 ], [ 12.620759718484521, 47.672387600284424 ], [ 12.141357456112871, 47.703083401065783 ], [ 11.426414015354851, 47.523766181013059 ], [ 10.544504021861599, 47.566399237653798 ], [ 10.402083774465325, 47.302487697939171 ], [ 9.89606814946319, 47.580196845075704 ], [ 9.594226108446378, 47.525058091820199 ], [ 8.522611932009795, 47.830827541691349 ], [ 8.317301466514095, 47.61357982033627 ], [ 7.466759067422288, 47.620581976911922 ], [ 7.593676385131062, 48.333019110703731 ], [ 8.099278598674857, 49.01778351500343 ], [ 6.65822960778371, 49.201958319691641 ], [ 6.186320428094177, 49.463802802114515 ], [ 6.242751092156993, 49.902225653678727 ], [ 6.043073357781111, 50.128051662794235 ], [ 6.15665815595878, 50.803721015010581 ], [ 5.988658074577813, 51.851615709025054 ], [ 6.589396599970826, 51.852029120483394 ], [ 6.842869500362383, 52.228440253297549 ], [ 7.092053256873896, 53.144043280644894 ], [ 6.905139601274129, 53.482162177130647 ], [ 7.100424838905269, 53.693932196662672 ], [ 7.936239454793963, 53.748295803433791 ], [ 8.121706170289485, 53.527792466844289 ], [ 8.800734490604668, 54.020785630908904 ], [ 8.572117954145369, 54.395646470754059 ], [ 8.526229282270208, 54.962743638725158 ], [ 9.282048780971138, 54.830865383516311 ], [ 9.921906365609232, 54.983104153048032 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Djibouti\", \"sov_a3\": \"DJI\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Djibouti\", \"adm0_a3\": \"DJI\", \"geou_dif\": 0.000000, \"geounit\": \"Djibouti\", \"gu_a3\": \"DJI\", \"su_dif\": 0.000000, \"subunit\": \"Djibouti\", \"su_a3\": \"DJI\", \"brk_diff\": 0.000000, \"name\": \"Djibouti\", \"name_long\": \"Djibouti\", \"brk_a3\": \"DJI\", \"brk_name\": \"Djibouti\", \"brk_group\": null, \"abbrev\": \"Dji.\", \"postal\": \"DJ\", \"formal_en\": \"Republic of Djibouti\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Djibouti\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 8.000000, \"pop_est\": 516055.000000, \"gdp_md_est\": 1885.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"DJ\", \"iso_a3\": \"DJI\", \"iso_n3\": \"262\", \"un_a3\": \"262\", \"wb_a2\": \"DJ\", \"wb_a3\": \"DJI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"DJI\", \"adm0_a3_us\": \"DJI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 43.081226027200159, 12.699638576707116 ], [ 43.317852410664671, 12.390148423711025 ], [ 43.286381463398925, 11.974928290245884 ], [ 42.715873650896526, 11.735640570518342 ], [ 43.145304803242141, 11.462039699748857 ], [ 42.776851841000962, 10.92687856693442 ], [ 42.554930000000127, 11.105110000000195 ], [ 42.314140000000123, 11.0342 ], [ 41.755570000000205, 11.050910000000101 ], [ 41.739590000000192, 11.355110000000138 ], [ 41.661760000000129, 11.6312 ], [ 42.000000000000114, 12.100000000000136 ], [ 42.35156000000012, 12.542230000000131 ], [ 42.779642368344753, 12.455415757695675 ], [ 43.081226027200159, 12.699638576707116 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Denmark\", \"sov_a3\": \"DN1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"Denmark\", \"adm0_a3\": \"DNK\", \"geou_dif\": 0.000000, \"geounit\": \"Denmark\", \"gu_a3\": \"DNK\", \"su_dif\": 0.000000, \"subunit\": \"Denmark\", \"su_a3\": \"DNK\", \"brk_diff\": 0.000000, \"name\": \"Denmark\", \"name_long\": \"Denmark\", \"brk_a3\": \"DNK\", \"brk_name\": \"Denmark\", \"brk_group\": null, \"abbrev\": \"Den.\", \"postal\": \"DK\", \"formal_en\": \"Kingdom of Denmark\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Denmark\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 12.000000, \"pop_est\": 5500510.000000, \"gdp_md_est\": 203600.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"DK\", \"iso_a3\": \"DNK\", \"iso_n3\": \"208\", \"un_a3\": \"208\", \"wb_a2\": \"DK\", \"wb_a3\": \"DNK\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"DNK\", \"adm0_a3_us\": \"DNK\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 12.690006137755631, 55.609990953180784 ], [ 12.089991082414741, 54.800014553437933 ], [ 11.043543328504228, 55.364863796604254 ], [ 10.903913608451631, 55.779954738988749 ], [ 12.370904168353292, 56.111407375708836 ], [ 12.690006137755631, 55.609990953180784 ] ] ], [ [ [ 10.912181837618363, 56.458621324277914 ], [ 10.667803989309988, 56.081383368547222 ], [ 10.369992710011985, 56.190007229224733 ], [ 9.649984978889307, 55.469999498102055 ], [ 9.921906365609175, 54.98310415304806 ], [ 9.282048780971138, 54.830865383516169 ], [ 8.526229282270236, 54.962743638724987 ], [ 8.12031090661759, 55.517722683323626 ], [ 8.089976840862249, 56.540011705137601 ], [ 8.256581658571264, 56.8099693874303 ], [ 8.543437534223386, 57.110002753316905 ], [ 9.424469028367611, 57.172066148499482 ], [ 9.775558709358563, 57.447940782289663 ], [ 10.580005730846153, 57.73001658795485 ], [ 10.546105991262692, 57.215732733786155 ], [ 10.250000034230226, 56.89001618105047 ], [ 10.369992710011985, 56.609981594460834 ], [ 10.912181837618363, 56.458621324277914 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Dominican Republic\", \"sov_a3\": \"DOM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Dominican Republic\", \"adm0_a3\": \"DOM\", \"geou_dif\": 0.000000, \"geounit\": \"Dominican Republic\", \"gu_a3\": \"DOM\", \"su_dif\": 0.000000, \"subunit\": \"Dominican Republic\", \"su_a3\": \"DOM\", \"brk_diff\": 0.000000, \"name\": \"Dominican Rep.\", \"name_long\": \"Dominican Republic\", \"brk_a3\": \"DOM\", \"brk_name\": \"Dominican Rep.\", \"brk_group\": null, \"abbrev\": \"Dom. Rep.\", \"postal\": \"DO\", \"formal_en\": \"Dominican Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Dominican Republic\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 7.000000, \"pop_est\": 9650054.000000, \"gdp_md_est\": 78000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"DO\", \"iso_a3\": \"DOM\", \"iso_n3\": \"214\", \"un_a3\": \"214\", \"wb_a2\": \"DO\", \"wb_a3\": \"DOM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"DOM\", \"adm0_a3_us\": \"DOM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Caribbean\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 14.000000, \"long_len\": 18.000000, \"abbrev_len\": 9.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -71.712361416292964, 19.714455878167357 ], [ -71.587304450146632, 19.8849105900821 ], [ -70.806706102161741, 19.880285549391985 ], [ -70.214364997016133, 19.622885240146161 ], [ -69.950815192327582, 19.647999986240009 ], [ -69.769250047470081, 19.293267116772441 ], [ -69.222125820579876, 19.313214219637103 ], [ -69.254346076113848, 19.015196234609874 ], [ -68.809411994080833, 18.979074408437853 ], [ -68.317943284768972, 18.612197577381693 ], [ -68.689315965434517, 18.205142320218613 ], [ -69.164945848248919, 18.422648423735112 ], [ -69.623987596297638, 18.38071299893025 ], [ -69.952933926051543, 18.428306993071061 ], [ -70.133232998317894, 18.245915025296895 ], [ -70.517137213814223, 18.184290879788833 ], [ -70.669298468697633, 18.426885891183034 ], [ -70.999950120717187, 18.283328762276213 ], [ -71.400209927033899, 17.598564357976599 ], [ -71.657661912712015, 17.757572740138698 ], [ -71.708304816358051, 18.044997056546094 ], [ -71.68773759630588, 18.316660061104471 ], [ -71.945112067335558, 18.616900132720261 ], [ -71.701302659782499, 18.785416978424053 ], [ -71.624873216422827, 19.169837958243306 ], [ -71.712361416292964, 19.714455878167357 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Algeria\", \"sov_a3\": \"DZA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Algeria\", \"adm0_a3\": \"DZA\", \"geou_dif\": 0.000000, \"geounit\": \"Algeria\", \"gu_a3\": \"DZA\", \"su_dif\": 0.000000, \"subunit\": \"Algeria\", \"su_a3\": \"DZA\", \"brk_diff\": 0.000000, \"name\": \"Algeria\", \"name_long\": \"Algeria\", \"brk_a3\": \"DZA\", \"brk_name\": \"Algeria\", \"brk_group\": null, \"abbrev\": \"Alg.\", \"postal\": \"DZ\", \"formal_en\": \"People's Democratic Republic of Algeria\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Algeria\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 3.000000, \"pop_est\": 34178188.000000, \"gdp_md_est\": 232900.000000, \"pop_year\": -99.000000, \"lastcensus\": 2008.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"DZ\", \"iso_a3\": \"DZA\", \"iso_n3\": \"012\", \"un_a3\": \"012\", \"wb_a2\": \"DZ\", \"wb_a3\": \"DZA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"DZA\", \"adm0_a3_us\": \"DZA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Northern Africa\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 11.999505649471613, 23.47166840259645 ], [ 8.572893100629784, 21.565660712159143 ], [ 5.677565952180686, 19.601206976799716 ], [ 4.267419467800039, 19.155265204336999 ], [ 3.158133172222705, 19.057364203360038 ], [ 3.1466610042539, 19.693578599521445 ], [ 2.683588494486429, 19.856230170160117 ], [ 2.06099083823392, 20.142233384679486 ], [ 1.823227573259032, 20.610809434486043 ], [ -1.550054897457613, 22.792665920497384 ], [ -4.923337368174231, 24.974574082941 ], [ -8.684399786809053, 27.395744126896005 ], [ -8.665124477564191, 27.589479071558227 ], [ -8.665589565454809, 27.656425889592356 ], [ -8.674116176782974, 28.841288967396579 ], [ -7.059227667661929, 29.579228420524529 ], [ -6.060632290053774, 29.731699734001694 ], [ -5.242129278982787, 30.000443020135592 ], [ -4.859646165374471, 30.501187649043846 ], [ -3.690441046554696, 30.896951605751156 ], [ -3.647497931320146, 31.637294012980675 ], [ -3.068980271812648, 31.724497992473218 ], [ -2.616604783529567, 32.09434621838615 ], [ -1.30789913573787, 32.262888902306102 ], [ -1.124551153966308, 32.651521511357132 ], [ -1.388049282222568, 32.864015000941308 ], [ -1.733454555661467, 33.919712836231994 ], [ -1.792985805661687, 34.527918606091205 ], [ -2.169913702798624, 35.16839630791668 ], [ -1.208602871089056, 35.714848741187097 ], [ -0.127454392894606, 35.888662421200806 ], [ 0.503876580415209, 36.301272894835279 ], [ 1.466918572606545, 36.605647081034405 ], [ 3.161698846050825, 36.78390493422522 ], [ 4.81575809084913, 36.865036932923459 ], [ 5.320120070017794, 36.716518866516623 ], [ 6.261819695672613, 37.110655015606739 ], [ 7.330384962603971, 37.118380642234371 ], [ 7.737078484741005, 36.885707505840216 ], [ 8.420964389691676, 36.946427313783161 ], [ 8.217824334352315, 36.433176988260286 ], [ 8.376367628623768, 35.479876003555944 ], [ 8.140981479534304, 34.65514598239379 ], [ 7.524481642292244, 34.09737641045146 ], [ 7.612641635782182, 33.344114895148962 ], [ 8.430472853233368, 32.748337307255952 ], [ 8.439102817426118, 32.506284898400821 ], [ 9.055602654668149, 32.102691962201291 ], [ 9.482139926805274, 30.307556057246188 ], [ 9.805634392952413, 29.42463837332339 ], [ 9.859997999723447, 28.959989732371014 ], [ 9.683884718472768, 28.1441738957792 ], [ 9.756128370816782, 27.688258571884148 ], [ 9.629056023811074, 27.14095347748092 ], [ 9.716285841519749, 26.512206325785698 ], [ 9.319410841518163, 26.094324856057455 ], [ 9.910692579801776, 25.36545461679674 ], [ 9.94826134607797, 24.936953640232517 ], [ 10.303846876678362, 24.379313259370917 ], [ 10.771363559622927, 24.562532050061751 ], [ 11.560669386449005, 24.097909247325518 ], [ 11.999505649471613, 23.47166840259645 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Ecuador\", \"sov_a3\": \"ECU\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Ecuador\", \"adm0_a3\": \"ECU\", \"geou_dif\": 0.000000, \"geounit\": \"Ecuador\", \"gu_a3\": \"ECU\", \"su_dif\": 0.000000, \"subunit\": \"Ecuador\", \"su_a3\": \"ECU\", \"brk_diff\": 0.000000, \"name\": \"Ecuador\", \"name_long\": \"Ecuador\", \"brk_a3\": \"ECU\", \"brk_name\": \"Ecuador\", \"brk_group\": null, \"abbrev\": \"Ecu.\", \"postal\": \"EC\", \"formal_en\": \"Republic of Ecuador\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Ecuador\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 12.000000, \"pop_est\": 14573101.000000, \"gdp_md_est\": 107700.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"EC\", \"iso_a3\": \"ECU\", \"iso_n3\": \"218\", \"un_a3\": \"218\", \"wb_a2\": \"EC\", \"wb_a3\": \"ECU\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ECU\", \"adm0_a3_us\": \"ECU\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -80.302560594387216, -3.404856459164713 ], [ -79.770293341780928, -2.65751189535964 ], [ -79.986559210922422, -2.220794366061014 ], [ -80.368783942369248, -2.685158786635788 ], [ -80.967765469064361, -2.246942640800704 ], [ -80.764806281238037, -1.965047702648533 ], [ -80.933659023751716, -1.057454522306358 ], [ -80.583370327461267, -0.906662692878683 ], [ -80.399324713853758, -0.283703301600141 ], [ -80.020898200180369, 0.360340074053468 ], [ -80.090609707342111, 0.768428859862397 ], [ -79.542762010399798, 0.982937730305963 ], [ -78.855258755188714, 1.380923773601822 ], [ -77.855061408179523, 0.809925034992773 ], [ -77.668612840470445, 0.825893052570962 ], [ -77.424984300430395, 0.395686753741117 ], [ -76.576379767549398, 0.256935533037435 ], [ -76.292314419240967, 0.416047268064119 ], [ -75.801465827116601, 0.084801337073202 ], [ -75.373223232713855, -0.15203175212045 ], [ -75.233722703741947, -0.911416924649529 ], [ -75.544995693652041, -1.56160979574588 ], [ -76.635394253226721, -2.608677666843818 ], [ -77.837904832658609, -3.003020521663103 ], [ -78.450683966775642, -3.873096612161376 ], [ -78.639897223612337, -4.547784112164074 ], [ -79.205289069317729, -4.959128513207389 ], [ -79.624979214176179, -4.454198093283495 ], [ -80.02890804718561, -4.346090996928893 ], [ -80.442241990872162, -4.425724379090674 ], [ -80.469294603176948, -4.059286797708999 ], [ -80.184014858709673, -3.821161797708044 ], [ -80.302560594387216, -3.404856459164713 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Egypt\", \"sov_a3\": \"EGY\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Egypt\", \"adm0_a3\": \"EGY\", \"geou_dif\": 0.000000, \"geounit\": \"Egypt\", \"gu_a3\": \"EGY\", \"su_dif\": 0.000000, \"subunit\": \"Egypt\", \"su_a3\": \"EGY\", \"brk_diff\": 0.000000, \"name\": \"Egypt\", \"name_long\": \"Egypt\", \"brk_a3\": \"EGY\", \"brk_name\": \"Egypt\", \"brk_group\": null, \"abbrev\": \"Egypt\", \"postal\": \"EG\", \"formal_en\": \"Arab Republic of Egypt\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Egypt, Arab Rep.\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 2.000000, \"pop_est\": 83082869.000000, \"gdp_md_est\": 443700.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"EG\", \"iso_a3\": \"EGY\", \"iso_n3\": \"818\", \"un_a3\": \"818\", \"wb_a2\": \"EG\", \"wb_a3\": \"EGY\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"EGY\", \"adm0_a3_us\": \"EGY\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Northern Africa\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 34.9226, 29.50133 ], [ 34.64174, 29.09942 ], [ 34.42655, 28.34399 ], [ 34.15451, 27.8233 ], [ 33.92136, 27.6487 ], [ 33.58811, 27.97136 ], [ 33.13676, 28.41765 ], [ 32.42323, 29.85108 ], [ 32.32046, 29.76043 ], [ 32.73482, 28.70523 ], [ 33.34876, 27.69989 ], [ 34.10455, 26.14227 ], [ 34.47387, 25.59856 ], [ 34.79507, 25.03375 ], [ 35.69241, 23.92671 ], [ 35.49372, 23.75237 ], [ 35.52598, 23.10244 ], [ 36.69069, 22.20485 ], [ 36.86623, 22.0 ], [ 32.9, 22.0 ], [ 29.02, 22.0 ], [ 25.0, 22.0 ], [ 25.0, 25.682499996360999 ], [ 25.0, 29.238654529533459 ], [ 24.70007, 30.04419 ], [ 24.95762, 30.6616 ], [ 24.80287, 31.08929 ], [ 25.16482, 31.56915 ], [ 26.49533, 31.58568 ], [ 27.45762, 31.32126 ], [ 28.45048, 31.02577 ], [ 28.91353, 30.87005 ], [ 29.68342, 31.18686 ], [ 30.09503, 31.4734 ], [ 30.97693, 31.55586 ], [ 31.68796, 31.4296 ], [ 31.96041, 30.9336 ], [ 32.19247, 31.26034 ], [ 32.99392, 31.02407 ], [ 33.7734, 30.96746 ], [ 34.26544, 31.21936 ], [ 34.9226, 29.50133 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Eritrea\", \"sov_a3\": \"ERI\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Eritrea\", \"adm0_a3\": \"ERI\", \"geou_dif\": 0.000000, \"geounit\": \"Eritrea\", \"gu_a3\": \"ERI\", \"su_dif\": 0.000000, \"subunit\": \"Eritrea\", \"su_a3\": \"ERI\", \"brk_diff\": 0.000000, \"name\": \"Eritrea\", \"name_long\": \"Eritrea\", \"brk_a3\": \"ERI\", \"brk_name\": \"Eritrea\", \"brk_group\": null, \"abbrev\": \"Erit.\", \"postal\": \"ER\", \"formal_en\": \"State of Eritrea\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Eritrea\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 12.000000, \"pop_est\": 5647168.000000, \"gdp_md_est\": 3945.000000, \"pop_year\": -99.000000, \"lastcensus\": 1984.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ER\", \"iso_a3\": \"ERI\", \"iso_n3\": \"232\", \"un_a3\": \"232\", \"wb_a2\": \"ER\", \"wb_a3\": \"ERI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ERI\", \"adm0_a3_us\": \"ERI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 42.35156000000012, 12.542230000000131 ], [ 42.00975, 12.86582 ], [ 41.59856, 13.452090000000112 ], [ 41.155193719249837, 13.773319810435225 ], [ 40.8966, 14.118640000000141 ], [ 40.026218702969175, 14.519579169162284 ], [ 39.34061, 14.53155 ], [ 39.0994, 14.74064 ], [ 38.51295, 14.50547 ], [ 37.906070000000113, 14.959430000000168 ], [ 37.59377, 14.2131 ], [ 36.42951, 14.42211 ], [ 36.32318891779812, 14.822480577041063 ], [ 36.753860304518582, 16.291874091044292 ], [ 36.852530000000115, 16.95655 ], [ 37.16747, 17.263140000000135 ], [ 37.90400000000011, 17.42754 ], [ 38.410089959473225, 17.998307399970315 ], [ 38.990622999840014, 16.840626125551694 ], [ 39.26611006038803, 15.922723496967251 ], [ 39.814293654140215, 15.435647284400318 ], [ 41.179274936697652, 14.491079616753211 ], [ 41.734951613132353, 13.921036892141558 ], [ 42.276830682144862, 13.343992010954423 ], [ 42.589576450375262, 13.000421250861905 ], [ 43.081226027200159, 12.699638576707116 ], [ 42.779642368344753, 12.455415757695675 ], [ 42.35156000000012, 12.542230000000131 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Spain\", \"sov_a3\": \"ESP\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Spain\", \"adm0_a3\": \"ESP\", \"geou_dif\": 0.000000, \"geounit\": \"Spain\", \"gu_a3\": \"ESP\", \"su_dif\": 0.000000, \"subunit\": \"Spain\", \"su_a3\": \"ESP\", \"brk_diff\": 0.000000, \"name\": \"Spain\", \"name_long\": \"Spain\", \"brk_a3\": \"ESP\", \"brk_name\": \"Spain\", \"brk_group\": null, \"abbrev\": \"Sp.\", \"postal\": \"E\", \"formal_en\": \"Kingdom of Spain\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Spain\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 5.000000, \"pop_est\": 40525002.000000, \"gdp_md_est\": 1403000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ES\", \"iso_a3\": \"ESP\", \"iso_n3\": \"724\", \"un_a3\": \"724\", \"wb_a2\": \"ES\", \"wb_a3\": \"ESP\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ESP\", \"adm0_a3_us\": \"ESP\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 3.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -9.034817674180246, 41.880570583659676 ], [ -8.984433152695672, 42.592775173506269 ], [ -9.392883673530648, 43.026624660812701 ], [ -7.97818966310831, 43.748337714200993 ], [ -6.754491746436756, 43.567909450853925 ], [ -5.411886359061597, 43.574239813809683 ], [ -4.347842779955783, 43.403449205085039 ], [ -3.517531704106091, 43.455900783861303 ], [ -1.901351284177764, 43.422802028978339 ], [ -1.502770961910528, 43.034014390630432 ], [ 0.338046909190581, 42.57954600683955 ], [ 0.701590610363894, 42.795734361332606 ], [ 1.826793247087153, 42.343384711265692 ], [ 2.985998976258458, 42.473015041669861 ], [ 3.039484083680549, 41.892120266276905 ], [ 2.091841668312185, 41.226088568683096 ], [ 0.810524529635188, 41.014731960609339 ], [ 0.721331007499401, 40.678318386389236 ], [ 0.106691521819869, 40.123933620762017 ], [ -0.278711310212941, 39.30997813573272 ], [ 0.111290724293838, 38.73851430923304 ], [ -0.467123582349103, 38.292365831041153 ], [ -0.683389451490598, 37.642353827457825 ], [ -1.438382127274849, 37.443063666324221 ], [ -2.146452602538119, 36.674144192037289 ], [ -3.415780808923387, 36.65889964451118 ], [ -4.368900926114719, 36.677839056946155 ], [ -4.995219285492212, 36.324708156879637 ], [ -5.377159796561457, 35.946850083961465 ], [ -5.866432257500904, 36.029816596006057 ], [ -6.236693894872175, 36.367677110330334 ], [ -6.520190802425404, 36.942913316387319 ], [ -7.453725551778092, 37.097787583966067 ], [ -7.537105475281024, 37.428904323876239 ], [ -7.166507941099865, 37.803894354802225 ], [ -7.029281175148796, 38.075764065089771 ], [ -7.374092169616318, 38.373058580064921 ], [ -7.098036668313128, 39.030072740223787 ], [ -7.498632371439726, 39.629571031241809 ], [ -7.066591559263529, 39.711891587882775 ], [ -7.026413133156595, 40.184524237624245 ], [ -6.864019944679385, 40.330871893874829 ], [ -6.851126674822552, 41.111082668617527 ], [ -6.389087693700915, 41.381815497394655 ], [ -6.668605515967656, 41.883386949219584 ], [ -7.251308966490824, 41.918346055665047 ], [ -7.422512986673795, 41.792074693359837 ], [ -8.013174607769912, 41.790886135417125 ], [ -8.263856980817792, 42.28046865495034 ], [ -8.67194576662672, 42.134689439454959 ], [ -9.034817674180246, 41.880570583659676 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Estonia\", \"sov_a3\": \"EST\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Estonia\", \"adm0_a3\": \"EST\", \"geou_dif\": 0.000000, \"geounit\": \"Estonia\", \"gu_a3\": \"EST\", \"su_dif\": 0.000000, \"subunit\": \"Estonia\", \"su_a3\": \"EST\", \"brk_diff\": 0.000000, \"name\": \"Estonia\", \"name_long\": \"Estonia\", \"brk_a3\": \"EST\", \"brk_name\": \"Estonia\", \"brk_group\": null, \"abbrev\": \"Est.\", \"postal\": \"EST\", \"formal_en\": \"Republic of Estonia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Estonia\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 10.000000, \"pop_est\": 1299371.000000, \"gdp_md_est\": 27410.000000, \"pop_year\": -99.000000, \"lastcensus\": 2000.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"EE\", \"iso_a3\": \"EST\", \"iso_n3\": \"233\", \"un_a3\": \"233\", \"wb_a2\": \"EE\", \"wb_a3\": \"EST\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"EST\", \"adm0_a3_us\": \"EST\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 24.312862583114622, 57.793423570376973 ], [ 24.428927850042161, 58.383413397853289 ], [ 24.061198357853186, 58.257374579493408 ], [ 23.426560092876684, 58.612753404364625 ], [ 23.339795363058645, 59.187240302153384 ], [ 24.604214308376186, 59.465853786855021 ], [ 25.864189080516638, 59.611090399811332 ], [ 26.949135776484525, 59.445803331125774 ], [ 27.981114129353244, 59.475388088612874 ], [ 28.13169925305175, 59.300825100330925 ], [ 27.420166456824944, 58.724581203844238 ], [ 27.716685825315722, 57.791899115624361 ], [ 27.288184848751513, 57.474528306703832 ], [ 26.463532342237787, 57.47638865826633 ], [ 25.602809685984369, 57.847528794986573 ], [ 25.164593540149269, 57.970156968815189 ], [ 24.312862583114622, 57.793423570376973 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Ethiopia\", \"sov_a3\": \"ETH\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Ethiopia\", \"adm0_a3\": \"ETH\", \"geou_dif\": 0.000000, \"geounit\": \"Ethiopia\", \"gu_a3\": \"ETH\", \"su_dif\": 0.000000, \"subunit\": \"Ethiopia\", \"su_a3\": \"ETH\", \"brk_diff\": 0.000000, \"name\": \"Ethiopia\", \"name_long\": \"Ethiopia\", \"brk_a3\": \"ETH\", \"brk_name\": \"Ethiopia\", \"brk_group\": null, \"abbrev\": \"Eth.\", \"postal\": \"ET\", \"formal_en\": \"Federal Democratic Republic of Ethiopia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Ethiopia\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 13.000000, \"pop_est\": 85237338.000000, \"gdp_md_est\": 68770.000000, \"pop_year\": -99.000000, \"lastcensus\": 2007.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ET\", \"iso_a3\": \"ETH\", \"iso_n3\": \"231\", \"un_a3\": \"231\", \"wb_a2\": \"ET\", \"wb_a3\": \"ETH\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ETH\", \"adm0_a3_us\": \"ETH\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 37.906070000000113, 14.959430000000168 ], [ 38.51295, 14.50547 ], [ 39.0994, 14.74064 ], [ 39.34061, 14.53155 ], [ 40.026250000000118, 14.51959 ], [ 40.8966, 14.118640000000141 ], [ 41.1552, 13.77333 ], [ 41.59856, 13.452090000000112 ], [ 42.00975, 12.86582 ], [ 42.35156000000012, 12.542230000000131 ], [ 42.000000000000114, 12.100000000000136 ], [ 41.661760000000129, 11.6312 ], [ 41.739590000000192, 11.355110000000138 ], [ 41.755570000000205, 11.050910000000101 ], [ 42.314140000000123, 11.0342 ], [ 42.554930000000127, 11.105110000000195 ], [ 42.776851841000962, 10.92687856693442 ], [ 42.55876, 10.57258000000013 ], [ 42.92812, 10.021940000000143 ], [ 43.296990000000108, 9.540480000000173 ], [ 43.67875, 9.18358000000012 ], [ 46.94834, 7.99688 ], [ 47.78942, 8.003 ], [ 44.9636, 5.001620000000116 ], [ 43.66087, 4.95755 ], [ 42.769670000000133, 4.252590000000225 ], [ 42.12861, 4.234130000000164 ], [ 41.855083092644122, 3.918911920483765 ], [ 41.171800000000133, 3.91909 ], [ 40.768480000000125, 4.257020000000125 ], [ 39.854940000000113, 3.838790000000131 ], [ 39.559384258765931, 3.422060000000215 ], [ 38.89251, 3.50074 ], [ 38.67114, 3.61607 ], [ 38.436970000000144, 3.58851 ], [ 38.120915000000139, 3.598605 ], [ 36.855093238008237, 4.447864127672858 ], [ 36.159078632855653, 4.447864127672858 ], [ 35.817447662353629, 4.776965663462022 ], [ 35.817447662353629, 5.338232082790853 ], [ 35.298007118233102, 5.506 ], [ 34.70702, 6.594220000000121 ], [ 34.25032, 6.82607 ], [ 34.075100000000191, 7.22595 ], [ 33.568290000000104, 7.71334 ], [ 32.954180000000235, 7.784970000000101 ], [ 33.294800000000123, 8.35458 ], [ 33.825500000000147, 8.37916 ], [ 33.97498, 8.684560000000147 ], [ 33.96162, 9.58358 ], [ 34.25745, 10.63009 ], [ 34.731150000000127, 10.910170000000107 ], [ 34.831630000000132, 11.318960000000118 ], [ 35.26049, 12.08286 ], [ 35.863630000000171, 12.57828 ], [ 36.27022, 13.563330000000121 ], [ 36.42951, 14.42211 ], [ 37.59377, 14.2131 ], [ 37.906070000000113, 14.959430000000168 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Finland\", \"sov_a3\": \"FI1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"Finland\", \"adm0_a3\": \"FIN\", \"geou_dif\": 0.000000, \"geounit\": \"Finland\", \"gu_a3\": \"FIN\", \"su_dif\": 0.000000, \"subunit\": \"Finland\", \"su_a3\": \"FIN\", \"brk_diff\": 0.000000, \"name\": \"Finland\", \"name_long\": \"Finland\", \"brk_a3\": \"FIN\", \"brk_name\": \"Finland\", \"brk_group\": null, \"abbrev\": \"Fin.\", \"postal\": \"FIN\", \"formal_en\": \"Republic of Finland\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Finland\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 6.000000, \"pop_est\": 5250275.000000, \"gdp_md_est\": 193500.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"FI\", \"iso_a3\": \"FIN\", \"iso_n3\": \"246\", \"un_a3\": \"246\", \"wb_a2\": \"FI\", \"wb_a3\": \"FIN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"FIN\", \"adm0_a3_us\": \"FIN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 28.591929559043194, 69.064776923286658 ], [ 28.445943637818658, 68.364612942164044 ], [ 29.97742638522061, 67.698297024192655 ], [ 29.054588657352326, 66.944286200621931 ], [ 30.21765, 65.80598 ], [ 29.544429559046989, 64.948671576590485 ], [ 30.444684686003711, 64.20445343693909 ], [ 30.035872430142717, 63.552813625738551 ], [ 31.516092156711125, 62.867687486412891 ], [ 31.139991082490894, 62.357692776124409 ], [ 30.21110721204445, 61.780027777749694 ], [ 28.069997592895277, 60.503516547275837 ], [ 26.255172967236973, 60.423960679762502 ], [ 24.496623976344523, 60.057316392651657 ], [ 22.869694858499457, 59.846373196036225 ], [ 22.290763787533592, 60.391921291741539 ], [ 21.322244093519316, 60.720169989659524 ], [ 21.544866163832694, 61.705329494871791 ], [ 21.059211053153689, 62.60739329695874 ], [ 21.536029493910803, 63.18973501245587 ], [ 22.442744174903993, 63.817810370531291 ], [ 24.730511508897536, 64.902343655040838 ], [ 25.398067661243942, 65.111426500093742 ], [ 25.294043003040404, 65.534346421970454 ], [ 23.903378533633802, 66.006927395279618 ], [ 23.565879754335583, 66.396050930437426 ], [ 23.539473097434438, 67.93600861273525 ], [ 21.978534783626117, 68.616845608180697 ], [ 20.645592889089528, 69.106247260200874 ], [ 21.244936150810673, 69.370443020293081 ], [ 22.356237827247412, 68.841741441514912 ], [ 23.662049594830759, 68.891247463650544 ], [ 24.735679152126725, 68.64955678982146 ], [ 25.689212680776365, 69.092113755969038 ], [ 26.179622023226244, 69.825298977326142 ], [ 27.732292107867863, 70.164193020296253 ], [ 29.015572950971972, 69.766491197377988 ], [ 28.591929559043194, 69.064776923286658 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Fiji\", \"sov_a3\": \"FJI\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Fiji\", \"adm0_a3\": \"FJI\", \"geou_dif\": 0.000000, \"geounit\": \"Fiji\", \"gu_a3\": \"FJI\", \"su_dif\": 0.000000, \"subunit\": \"Fiji\", \"su_a3\": \"FJI\", \"brk_diff\": 0.000000, \"name\": \"Fiji\", \"name_long\": \"Fiji\", \"brk_a3\": \"FJI\", \"brk_name\": \"Fiji\", \"brk_group\": null, \"abbrev\": \"Fiji\", \"postal\": \"FJ\", \"formal_en\": \"Republic of Fiji\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Fiji\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 2.000000, \"pop_est\": 944720.000000, \"gdp_md_est\": 3579.000000, \"pop_year\": -99.000000, \"lastcensus\": 2007.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"FJ\", \"iso_a3\": \"FJI\", \"iso_n3\": \"242\", \"un_a3\": \"242\", \"wb_a2\": \"FJ\", \"wb_a3\": \"FJI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"FJI\", \"adm0_a3_us\": \"FJI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Oceania\", \"region_un\": \"Oceania\", \"subregion\": \"Melanesia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 178.3736, -17.33992 ], [ 178.71806, -17.62846 ], [ 178.55271, -18.15059 ], [ 177.93266, -18.28799 ], [ 177.38146, -18.16432 ], [ 177.28504, -17.72465 ], [ 177.670870000000122, -17.38114 ], [ 178.12557, -17.50481 ], [ 178.3736, -17.33992 ] ] ], [ [ [ 179.36414266196428, -16.801354076946851 ], [ 178.725059362997087, -17.012041674368021 ], [ 178.596838595117077, -16.63915 ], [ 179.096609362997157, -16.433984277547424 ], [ 179.413509362997132, -16.379054277547397 ], [ 180.000000000000142, -16.06713266364244 ], [ 180.000000000000142, -16.55521656663916 ], [ 179.36414266196428, -16.801354076946851 ] ] ], [ [ [ -179.917369384765266, -16.501783135649362 ], [ -179.999999999, -16.55521656663916 ], [ -179.999999999, -16.06713266364244 ], [ -179.793320109048608, -16.020882256741231 ], [ -179.917369384765266, -16.501783135649362 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"United Kingdom\", \"sov_a3\": \"GB1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Dependency\", \"admin\": \"Falkland Islands\", \"adm0_a3\": \"FLK\", \"geou_dif\": 0.000000, \"geounit\": \"Falkland Islands\", \"gu_a3\": \"FLK\", \"su_dif\": 0.000000, \"subunit\": \"Falkland Islands\", \"su_a3\": \"FLK\", \"brk_diff\": 1.000000, \"name\": \"Falkland Is.\", \"name_long\": \"Falkland Islands\", \"brk_a3\": \"B12\", \"brk_name\": \"Falkland Is.\", \"brk_group\": null, \"abbrev\": \"Flk. Is.\", \"postal\": \"FK\", \"formal_en\": \"Falkland Islands\", \"formal_fr\": null, \"note_adm0\": \"U.K.\", \"note_brk\": \"Admin. by U.K.; Claimed by Argentina\", \"name_sort\": \"Falkland Islands\", \"name_alt\": \"Islas Malvinas\", \"mapcolor7\": 6.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 3.000000, \"pop_est\": 3140.000000, \"gdp_md_est\": 105.100000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"FK\", \"iso_a3\": \"FLK\", \"iso_n3\": \"238\", \"un_a3\": \"238\", \"wb_a2\": \"-99\", \"wb_a3\": \"-99\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"FLK\", \"adm0_a3_us\": \"FLK\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 12.000000, \"long_len\": 16.000000, \"abbrev_len\": 8.000000, \"tiny\": -99.000000, \"homepart\": -99.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -61.2, -51.85 ], [ -60.0, -51.25 ], [ -59.15, -51.5 ], [ -58.55, -51.1 ], [ -57.75, -51.55 ], [ -58.05, -51.9 ], [ -59.4, -52.2 ], [ -59.85, -51.85 ], [ -60.7, -52.3 ], [ -61.2, -51.85 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"France\", \"sov_a3\": \"FR1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"France\", \"adm0_a3\": \"FRA\", \"geou_dif\": 0.000000, \"geounit\": \"France\", \"gu_a3\": \"FRA\", \"su_dif\": 0.000000, \"subunit\": \"France\", \"su_a3\": \"FRA\", \"brk_diff\": 0.000000, \"name\": \"France\", \"name_long\": \"France\", \"brk_a3\": \"FRA\", \"brk_name\": \"France\", \"brk_group\": null, \"abbrev\": \"Fr.\", \"postal\": \"F\", \"formal_en\": \"French Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"France\", \"name_alt\": null, \"mapcolor7\": 7.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 9.000000, \"mapcolor13\": 11.000000, \"pop_est\": 64057792.000000, \"gdp_md_est\": 2128000.000000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"1. Developed region: G7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"FR\", \"iso_a3\": \"FRA\", \"iso_n3\": \"250\", \"un_a3\": \"250\", \"wb_a2\": \"FR\", \"wb_a3\": \"FRA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"FRA\", \"adm0_a3_us\": \"FRA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Western Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 3.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -52.556424730018392, 2.504705308437053 ], [ -52.939657151894977, 2.124857692875622 ], [ -53.418465135295264, 2.053389187016037 ], [ -53.554839240113495, 2.334896551925965 ], [ -53.778520677288896, 2.376702785650053 ], [ -54.088062506717279, 2.105556545414629 ], [ -54.524754197799751, 2.311848863123785 ], [ -54.271229620975788, 2.738747870286943 ], [ -54.18428402364475, 3.194172268075235 ], [ -54.011503872276819, 3.622569891774859 ], [ -54.399542202356514, 4.212611395683481 ], [ -54.478632981979217, 4.896755682795643 ], [ -53.958044603070931, 5.756548163267809 ], [ -53.618452928264844, 5.646529038918402 ], [ -52.882141282754077, 5.409850979021599 ], [ -51.82334286152593, 4.565768133966145 ], [ -51.657797410678882, 4.156232408053029 ], [ -52.249337531123984, 3.241094468596287 ], [ -52.556424730018392, 2.504705308437053 ] ] ], [ [ [ 9.560016310269134, 42.152491970379572 ], [ 9.229752231491773, 41.380006822264448 ], [ 8.775723097375362, 41.583611965494441 ], [ 8.54421268070783, 42.256516628583086 ], [ 8.746009148807588, 42.62812185319396 ], [ 9.390000848028905, 43.009984849614739 ], [ 9.560016310269134, 42.152491970379572 ] ] ], [ [ [ 3.588184441755715, 50.378992418003577 ], [ 4.286022983425141, 49.907496649772554 ], [ 4.799221632515753, 49.985373033236328 ], [ 5.674051954784886, 49.529483547557447 ], [ 5.897759230176376, 49.442667141307169 ], [ 6.186320428094206, 49.463802802114458 ], [ 6.658229607783539, 49.201958319691556 ], [ 8.099278598674772, 49.017783515003373 ], [ 7.593676385131062, 48.333019110703731 ], [ 7.466759067422231, 47.620581976911865 ], [ 7.192202182655535, 47.449765529970989 ], [ 6.736571079138088, 47.541801255882888 ], [ 6.768713820023635, 47.287708238303679 ], [ 6.037388950228973, 46.725778713561908 ], [ 6.022609490593567, 46.272989813820516 ], [ 6.500099724970454, 46.429672756529442 ], [ 6.843592970414562, 45.991146552100673 ], [ 6.802355177445662, 45.70857982032868 ], [ 7.096652459347837, 45.333098863295874 ], [ 6.749955275101712, 45.028517971367592 ], [ 7.007562290076663, 44.254766750661389 ], [ 7.549596388386163, 44.127901109384823 ], [ 7.435184767291844, 43.693844916349178 ], [ 6.529245232783069, 43.128892320318357 ], [ 4.556962517931396, 43.399650987311588 ], [ 3.10041059735272, 43.075200507167125 ], [ 2.985998976258486, 42.473015041669896 ], [ 1.826793247087181, 42.343384711265657 ], [ 0.701590610363922, 42.795734361332649 ], [ 0.338046909190581, 42.579546006839564 ], [ -1.502770961910471, 43.034014390630489 ], [ -1.901351284177736, 43.422802028978339 ], [ -1.384225226232957, 44.022610378590173 ], [ -1.193797573237362, 46.014917710954876 ], [ -2.225724249673789, 47.064362697938208 ], [ -2.963276129559574, 47.570326646507965 ], [ -4.491554938159481, 47.954954332056417 ], [ -4.592349819344747, 48.684160468126947 ], [ -3.295813971357745, 48.901692409859635 ], [ -1.616510789384932, 48.644421291694584 ], [ -1.933494025063254, 49.776341864615773 ], [ -0.98946895995536, 49.347375800160876 ], [ 1.338761020522753, 50.127173163445264 ], [ 1.6390010921385, 50.946606350297515 ], [ 2.513573032246171, 51.148506171261857 ], [ 2.658422071960331, 50.79684804951566 ], [ 3.123251580425716, 50.780363267614518 ], [ 3.588184441755715, 50.378992418003577 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Gabon\", \"sov_a3\": \"GAB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Gabon\", \"adm0_a3\": \"GAB\", \"geou_dif\": 0.000000, \"geounit\": \"Gabon\", \"gu_a3\": \"GAB\", \"su_dif\": 0.000000, \"subunit\": \"Gabon\", \"su_a3\": \"GAB\", \"brk_diff\": 0.000000, \"name\": \"Gabon\", \"name_long\": \"Gabon\", \"brk_a3\": \"GAB\", \"brk_name\": \"Gabon\", \"brk_group\": null, \"abbrev\": \"Gabon\", \"postal\": \"GA\", \"formal_en\": \"Gabonese Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Gabon\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 5.000000, \"pop_est\": 1514993.000000, \"gdp_md_est\": 21110.000000, \"pop_year\": -99.000000, \"lastcensus\": 2003.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GA\", \"iso_a3\": \"GAB\", \"iso_n3\": \"266\", \"un_a3\": \"266\", \"wb_a2\": \"GA\", \"wb_a3\": \"GAB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GAB\", \"adm0_a3_us\": \"GAB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Middle Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": 3.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 11.093772820691925, -3.978826592630547 ], [ 10.06613528813574, -2.969482517105682 ], [ 9.405245395554971, -2.144313246269043 ], [ 8.79799563969317, -1.111301364754496 ], [ 8.830086704146424, -0.779073581550037 ], [ 9.048419630579588, -0.459351494960217 ], [ 9.291350538783689, 0.268666083167687 ], [ 9.492888624721985, 1.010119533691494 ], [ 9.830284051155644, 1.067893784993799 ], [ 11.285078973036462, 1.057661851400013 ], [ 11.276449008843713, 2.261050930180872 ], [ 11.75166548019979, 2.326757513839993 ], [ 12.359380323952221, 2.19281220133945 ], [ 12.951333855855609, 2.32161570882694 ], [ 13.075822381246752, 2.267097072759015 ], [ 13.003113641012078, 1.83089630778332 ], [ 13.282631463278818, 1.31418366129688 ], [ 14.026668735417218, 1.395677395021153 ], [ 14.276265903386957, 1.196929836426619 ], [ 13.843320753645656, 0.038757635901149 ], [ 14.316418491277744, -0.552627455247048 ], [ 14.425455763413595, -1.333406670744971 ], [ 14.299210239324566, -1.998275648612214 ], [ 13.99240726080771, -2.4708049454891 ], [ 13.109618767965628, -2.428740329603514 ], [ 12.575284458067642, -1.948511244315135 ], [ 12.495702752338161, -2.391688327650243 ], [ 11.820963575903193, -2.514161472181982 ], [ 11.478038771214303, -2.765618991714241 ], [ 11.855121697648116, -3.426870619321051 ], [ 11.093772820691925, -3.978826592630547 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"United Kingdom\", \"sov_a3\": \"GB1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"United Kingdom\", \"adm0_a3\": \"GBR\", \"geou_dif\": 0.000000, \"geounit\": \"United Kingdom\", \"gu_a3\": \"GBR\", \"su_dif\": 0.000000, \"subunit\": \"United Kingdom\", \"su_a3\": \"GBR\", \"brk_diff\": 0.000000, \"name\": \"United Kingdom\", \"name_long\": \"United Kingdom\", \"brk_a3\": \"GBR\", \"brk_name\": \"United Kingdom\", \"brk_group\": null, \"abbrev\": \"U.K.\", \"postal\": \"GB\", \"formal_en\": \"United Kingdom of Great Britain and Northern Ireland\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"United Kingdom\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 3.000000, \"pop_est\": 62262000.000000, \"gdp_md_est\": 1977704.000000, \"pop_year\": 0.000000, \"lastcensus\": 2011.000000, \"gdp_year\": 2009.000000, \"economy\": \"1. Developed region: G7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GB\", \"iso_a3\": \"GBR\", \"iso_n3\": \"826\", \"un_a3\": \"826\", \"wb_a2\": \"GB\", \"wb_a3\": \"GBR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GBR\", \"adm0_a3_us\": \"GBR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 14.000000, \"long_len\": 14.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -5.661948614921897, 54.554603176483852 ], [ -6.197884894220977, 53.867565009163343 ], [ -6.953730231137996, 54.073702297575636 ], [ -7.572167934591079, 54.059956366585993 ], [ -7.366030646178785, 54.595840969452695 ], [ -7.572167934591079, 55.131622219454897 ], [ -6.733847011736145, 55.172860012423797 ], [ -5.661948614921897, 54.554603176483852 ] ] ], [ [ [ -3.005004848635281, 58.635000108466329 ], [ -4.073828497728016, 57.553024807355257 ], [ -3.055001796877661, 57.69001902936094 ], [ -1.959280564776918, 57.684799709699519 ], [ -2.219988165689301, 56.870017401753529 ], [ -3.119003058271119, 55.973793036515474 ], [ -2.085009324543023, 55.909998480851272 ], [ -2.005675679673857, 55.804902850350231 ], [ -1.11499101399221, 54.624986477265395 ], [ -0.4304849918542, 54.464376125702159 ], [ 0.184981316742039, 53.325014146531032 ], [ 0.469976840831777, 52.929999498091973 ], [ 1.681530795914739, 52.739520168664001 ], [ 1.559987827164377, 52.099998480836007 ], [ 1.050561557630914, 51.806760565795685 ], [ 1.449865349950301, 51.289427802121963 ], [ 0.550333693045502, 50.765738837275876 ], [ -0.78751746255864, 50.77498891865622 ], [ -2.489997524414377, 50.500018622431242 ], [ -2.956273972984036, 50.696879991247016 ], [ -3.617448085942328, 50.228355617872722 ], [ -4.542507900399244, 50.341837063185665 ], [ -5.245023159191135, 49.959999904981089 ], [ -5.776566941745301, 50.159677639356829 ], [ -4.309989793301838, 51.210001125689161 ], [ -3.414850633142123, 51.42600861266925 ], [ -3.422719467108323, 51.426848167406092 ], [ -4.984367234710874, 51.593466091510976 ], [ -5.267295701508885, 51.991400458374585 ], [ -4.222346564134853, 52.301355699261364 ], [ -4.770013393564113, 52.840004991255626 ], [ -4.579999152026915, 53.495003770555172 ], [ -3.093830673788659, 53.404547400669685 ], [ -3.092079637047107, 53.404440822963551 ], [ -2.945008510744344, 53.984999701546684 ], [ -3.614700825433033, 54.600936773292574 ], [ -3.630005458989331, 54.615012925833014 ], [ -4.844169073903004, 54.790971177786844 ], [ -5.082526617849226, 55.061600653699372 ], [ -4.719112107756644, 55.508472601943481 ], [ -5.047980922862109, 55.78398550070753 ], [ -5.58639767091114, 55.311146145236819 ], [ -5.644998745130181, 56.275014960344805 ], [ -6.149980841486354, 56.785009670633542 ], [ -5.786824713555291, 57.818848375064647 ], [ -5.009998745127575, 58.630013332750053 ], [ -4.211494513353557, 58.550845038479167 ], [ -3.005004848635281, 58.635000108466329 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Georgia\", \"sov_a3\": \"GEO\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Georgia\", \"adm0_a3\": \"GEO\", \"geou_dif\": 0.000000, \"geounit\": \"Georgia\", \"gu_a3\": \"GEO\", \"su_dif\": 0.000000, \"subunit\": \"Georgia\", \"su_a3\": \"GEO\", \"brk_diff\": 0.000000, \"name\": \"Georgia\", \"name_long\": \"Georgia\", \"brk_a3\": \"GEO\", \"brk_name\": \"Georgia\", \"brk_group\": null, \"abbrev\": \"Geo.\", \"postal\": \"GE\", \"formal_en\": \"Georgia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Georgia\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 2.000000, \"pop_est\": 4615807.000000, \"gdp_md_est\": 21510.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GE\", \"iso_a3\": \"GEO\", \"iso_n3\": \"268\", \"un_a3\": \"268\", \"wb_a2\": \"GE\", \"wb_a3\": \"GEO\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GEO\", \"adm0_a3_us\": \"GEO\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 41.554084100110657, 41.535656236327569 ], [ 41.70317060727271, 41.962942816732919 ], [ 41.453470086438386, 42.64512339941794 ], [ 40.875469191253792, 43.013628038091284 ], [ 40.32139448422032, 43.128633938156845 ], [ 39.955008579270924, 43.434997666999223 ], [ 40.076964959479767, 43.553104153002316 ], [ 40.922184686045625, 43.382158514980787 ], [ 42.39439456560882, 43.220307929042633 ], [ 43.756016880067392, 42.740828152022488 ], [ 43.931199985536836, 42.554973863284772 ], [ 44.537622918481986, 42.711992702803627 ], [ 45.470279168485717, 42.502780666669977 ], [ 45.776410353382772, 42.092443956056357 ], [ 46.404950799348825, 41.860675157227305 ], [ 46.145431756379018, 41.72280243587258 ], [ 46.637908156120581, 41.181672675128226 ], [ 46.501637404166928, 41.064444688474111 ], [ 45.962600538930388, 41.123872585609774 ], [ 45.217426385281584, 41.411451931314048 ], [ 44.972480096218078, 41.248128567055595 ], [ 43.582745802592733, 41.092143256182567 ], [ 42.619548781104491, 41.583172715819941 ], [ 41.554084100110657, 41.535656236327569 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Ghana\", \"sov_a3\": \"GHA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Ghana\", \"adm0_a3\": \"GHA\", \"geou_dif\": 0.000000, \"geounit\": \"Ghana\", \"gu_a3\": \"GHA\", \"su_dif\": 0.000000, \"subunit\": \"Ghana\", \"su_a3\": \"GHA\", \"brk_diff\": 0.000000, \"name\": \"Ghana\", \"name_long\": \"Ghana\", \"brk_a3\": \"GHA\", \"brk_name\": \"Ghana\", \"brk_group\": null, \"abbrev\": \"Ghana\", \"postal\": \"GH\", \"formal_en\": \"Republic of Ghana\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Ghana\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 4.000000, \"pop_est\": 23832495.000000, \"gdp_md_est\": 34200.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GH\", \"iso_a3\": \"GHA\", \"iso_n3\": \"288\", \"un_a3\": \"288\", \"wb_a2\": \"GH\", \"wb_a3\": \"GHA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GHA\", \"adm0_a3_us\": \"GHA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 1.060121697604927, 5.928837388528876 ], [ -0.507637905265938, 5.343472601742675 ], [ -1.063624640294194, 5.000547797053812 ], [ -1.964706590167594, 4.710462144383371 ], [ -2.856125047202397, 4.994475816259509 ], [ -2.81070146321784, 5.38905121502411 ], [ -3.244370083011262, 6.250471503113502 ], [ -2.983584967450327, 7.379704901555513 ], [ -2.562189500326241, 8.219627793811483 ], [ -2.827496303712707, 9.642460842319778 ], [ -2.963896246747112, 10.395334784380083 ], [ -2.940409308270461, 10.962690334512558 ], [ -1.203357713211432, 11.009819240762738 ], [ -0.761575893548183, 10.936929633015055 ], [ -0.438701544588582, 11.098340969278722 ], [ 0.023802524423701, 11.018681748900804 ], [ -0.049784715159944, 10.706917832883931 ], [ 0.367579990245389, 10.19121287682718 ], [ 0.365900506195885, 9.465003973829482 ], [ 0.461191847342121, 8.677222601756014 ], [ 0.712029249686879, 8.312464504423829 ], [ 0.490957472342245, 7.411744289576475 ], [ 0.570384148774849, 6.914358628767189 ], [ 0.836931186536333, 6.279978745952149 ], [ 1.060121697604927, 5.928837388528876 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Guinea\", \"sov_a3\": \"GIN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Guinea\", \"adm0_a3\": \"GIN\", \"geou_dif\": 0.000000, \"geounit\": \"Guinea\", \"gu_a3\": \"GIN\", \"su_dif\": 0.000000, \"subunit\": \"Guinea\", \"su_a3\": \"GIN\", \"brk_diff\": 0.000000, \"name\": \"Guinea\", \"name_long\": \"Guinea\", \"brk_a3\": \"GIN\", \"brk_name\": \"Guinea\", \"brk_group\": null, \"abbrev\": \"Gin.\", \"postal\": \"GN\", \"formal_en\": \"Republic of Guinea\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Guinea\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 2.000000, \"pop_est\": 10057975.000000, \"gdp_md_est\": 10600.000000, \"pop_year\": -99.000000, \"lastcensus\": 1996.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GN\", \"iso_a3\": \"GIN\", \"iso_n3\": \"324\", \"un_a3\": \"324\", \"wb_a2\": \"GN\", \"wb_a3\": \"GIN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GIN\", \"adm0_a3_us\": \"GIN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -8.439298468448698, 7.686042792181738 ], [ -8.722123582382125, 7.71167430259851 ], [ -8.926064622422004, 7.309037380396376 ], [ -9.208786383490846, 7.313920803247953 ], [ -9.40334815106975, 7.526905218938907 ], [ -9.337279832384581, 7.928534450711354 ], [ -9.755342169625834, 8.541055202666925 ], [ -10.016566534861255, 8.428503933135232 ], [ -10.23009355309128, 8.406205552601293 ], [ -10.505477260774668, 8.348896389189605 ], [ -10.494315151399633, 8.715540676300435 ], [ -10.654770473665891, 8.977178452994195 ], [ -10.622395188835041, 9.267910061068278 ], [ -10.839151984083301, 9.688246161330369 ], [ -11.11748124840733, 10.045872911006285 ], [ -11.917277390988659, 10.046983954300558 ], [ -12.150338100625005, 9.858571682164381 ], [ -12.425928514037565, 9.835834051955956 ], [ -12.59671912276221, 9.620188300001971 ], [ -12.71195756677308, 9.342711696810767 ], [ -13.246550258832515, 8.903048610871508 ], [ -13.685153977909792, 9.49474376061346 ], [ -14.074044969122282, 9.886166897008252 ], [ -14.330075852912371, 10.015719712763968 ], [ -14.579698859098258, 10.214467271358515 ], [ -14.693231980843505, 10.656300767454042 ], [ -14.839553798877944, 10.876571560098141 ], [ -15.130311245168173, 11.040411688679526 ], [ -14.685687221728898, 11.527823798056488 ], [ -14.382191534878729, 11.509271958863692 ], [ -14.121406419317779, 11.677117010947697 ], [ -13.900799729863776, 11.678718980348748 ], [ -13.743160773157413, 11.811269029177412 ], [ -13.828271857142125, 12.142644151249044 ], [ -13.718743658899513, 12.247185573775511 ], [ -13.700476040084325, 12.586182969610194 ], [ -13.217818162478238, 12.575873521367967 ], [ -12.499050665730564, 12.332089952031057 ], [ -12.27859900557344, 12.354440008997287 ], [ -12.203564825885634, 12.465647691289405 ], [ -11.658300950557932, 12.386582749882836 ], [ -11.513942836950591, 12.442987575729418 ], [ -11.456168585648271, 12.076834214725338 ], [ -11.297573614944511, 12.077971096235771 ], [ -11.03655595543826, 12.211244615116515 ], [ -10.870829637078215, 12.17788747807211 ], [ -10.593223842806282, 11.92397532800598 ], [ -10.165213792348837, 11.844083563682744 ], [ -9.890992804392013, 12.060478623904972 ], [ -9.567911749703214, 12.194243068892476 ], [ -9.327616339546012, 12.334286200403454 ], [ -9.127473517279583, 12.308060411015333 ], [ -8.90526485842453, 12.088358059126437 ], [ -8.786099005559464, 11.812560939984706 ], [ -8.376304897484914, 11.393645941610629 ], [ -8.581305304386774, 11.136245632364805 ], [ -8.620321010767128, 10.810890814655183 ], [ -8.407310756860028, 10.909256903522762 ], [ -8.282357143578281, 10.792597357623846 ], [ -8.33537716310974, 10.494811916541934 ], [ -8.029943610048619, 10.206534939001713 ], [ -8.229337124046822, 10.129020290563901 ], [ -8.309616461612251, 9.789531968622441 ], [ -8.079113735374349, 9.376223863152035 ], [ -7.832100389019188, 8.575704250518626 ], [ -8.20349890790088, 8.455453192575447 ], [ -8.299048631208564, 8.316443589710303 ], [ -8.221792364932199, 8.123328762235573 ], [ -8.280703497744938, 7.687179673692157 ], [ -8.439298468448698, 7.686042792181738 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Gambia\", \"sov_a3\": \"GMB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Gambia\", \"adm0_a3\": \"GMB\", \"geou_dif\": 0.000000, \"geounit\": \"Gambia\", \"gu_a3\": \"GMB\", \"su_dif\": 0.000000, \"subunit\": \"Gambia\", \"su_a3\": \"GMB\", \"brk_diff\": 0.000000, \"name\": \"Gambia\", \"name_long\": \"The Gambia\", \"brk_a3\": \"GMB\", \"brk_name\": \"Gambia\", \"brk_group\": null, \"abbrev\": \"Gambia\", \"postal\": \"GM\", \"formal_en\": \"Republic of the Gambia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Gambia, The\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 8.000000, \"pop_est\": 1782893.000000, \"gdp_md_est\": 2272.000000, \"pop_year\": -99.000000, \"lastcensus\": 2003.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GM\", \"iso_a3\": \"GMB\", \"iso_n3\": \"270\", \"un_a3\": \"270\", \"wb_a2\": \"GM\", \"wb_a3\": \"GMB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GMB\", \"adm0_a3_us\": \"GMB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 6.000000, \"long_len\": 10.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -16.841524624081273, 13.151393947802561 ], [ -16.713728807023472, 13.594958604379855 ], [ -15.624596320039942, 13.623587347869559 ], [ -15.39877031092446, 13.860368760630919 ], [ -15.081735398813819, 13.876491807505985 ], [ -14.687030808968487, 13.630356960499784 ], [ -14.376713833055788, 13.625680243377374 ], [ -14.046992356817482, 13.794067898000449 ], [ -13.844963344772408, 13.505041612192002 ], [ -14.277701788784555, 13.280585028532244 ], [ -14.712197231494628, 13.298206691943777 ], [ -15.141163295949468, 13.509511623585238 ], [ -15.511812506562933, 13.278569647672867 ], [ -15.691000535534995, 13.270353094938457 ], [ -15.931295945692211, 13.130284125211332 ], [ -16.841524624081273, 13.151393947802561 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Guinea Bissau\", \"sov_a3\": \"GNB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Guinea Bissau\", \"adm0_a3\": \"GNB\", \"geou_dif\": 0.000000, \"geounit\": \"Guinea Bissau\", \"gu_a3\": \"GNB\", \"su_dif\": 0.000000, \"subunit\": \"Guinea Bissau\", \"su_a3\": \"GNB\", \"brk_diff\": 0.000000, \"name\": \"Guinea-Bissau\", \"name_long\": \"Guinea-Bissau\", \"brk_a3\": \"GNB\", \"brk_name\": \"Guinea-Bissau\", \"brk_group\": null, \"abbrev\": \"GnB.\", \"postal\": \"GW\", \"formal_en\": \"Republic of Guinea-Bissau\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Guinea-Bissau\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 4.000000, \"pop_est\": 1533964.000000, \"gdp_md_est\": 904.200000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GW\", \"iso_a3\": \"GNB\", \"iso_n3\": \"624\", \"un_a3\": \"624\", \"wb_a2\": \"GW\", \"wb_a3\": \"GNB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GNB\", \"adm0_a3_us\": \"GNB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 13.000000, \"long_len\": 13.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -15.130311245168173, 11.040411688679526 ], [ -15.664180467175527, 11.458474025920795 ], [ -16.085214199273565, 11.52459402103824 ], [ -16.314786749730203, 11.80651479740655 ], [ -16.30894731288123, 11.95870189050612 ], [ -16.613838263403281, 12.170911159712702 ], [ -16.677451951554573, 12.384851589401052 ], [ -16.147716844130585, 12.547761542201187 ], [ -15.816574266004254, 12.515567124883347 ], [ -15.54847693527401, 12.628170070847347 ], [ -13.700476040084325, 12.586182969610194 ], [ -13.718743658899513, 12.247185573775511 ], [ -13.828271857142125, 12.142644151249044 ], [ -13.743160773157413, 11.811269029177412 ], [ -13.900799729863776, 11.678718980348748 ], [ -14.121406419317779, 11.677117010947697 ], [ -14.382191534878729, 11.509271958863692 ], [ -14.685687221728898, 11.527823798056488 ], [ -15.130311245168173, 11.040411688679526 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Equatorial Guinea\", \"sov_a3\": \"GNQ\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Equatorial Guinea\", \"adm0_a3\": \"GNQ\", \"geou_dif\": 0.000000, \"geounit\": \"Equatorial Guinea\", \"gu_a3\": \"GNQ\", \"su_dif\": 0.000000, \"subunit\": \"Equatorial Guinea\", \"su_a3\": \"GNQ\", \"brk_diff\": 0.000000, \"name\": \"Eq. Guinea\", \"name_long\": \"Equatorial Guinea\", \"brk_a3\": \"GNQ\", \"brk_name\": \"Eq. Guinea\", \"brk_group\": null, \"abbrev\": \"Eq. G.\", \"postal\": \"GQ\", \"formal_en\": \"Republic of Equatorial Guinea\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Equatorial Guinea\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 8.000000, \"pop_est\": 650702.000000, \"gdp_md_est\": 14060.000000, \"pop_year\": 0.000000, \"lastcensus\": 2002.000000, \"gdp_year\": 0.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GQ\", \"iso_a3\": \"GNQ\", \"iso_n3\": \"226\", \"un_a3\": \"226\", \"wb_a2\": \"GQ\", \"wb_a3\": \"GNQ\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GNQ\", \"adm0_a3_us\": \"GNQ\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Middle Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 10.000000, \"long_len\": 17.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 9.492888624721985, 1.010119533691494 ], [ 9.305613234096256, 1.160911363119183 ], [ 9.649158155972628, 2.283866075037736 ], [ 11.276449008843713, 2.261050930180872 ], [ 11.285078973036462, 1.057661851400013 ], [ 9.830284051155644, 1.067893784993799 ], [ 9.492888624721985, 1.010119533691494 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Greece\", \"sov_a3\": \"GRC\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Greece\", \"adm0_a3\": \"GRC\", \"geou_dif\": 0.000000, \"geounit\": \"Greece\", \"gu_a3\": \"GRC\", \"su_dif\": 0.000000, \"subunit\": \"Greece\", \"su_a3\": \"GRC\", \"brk_diff\": 0.000000, \"name\": \"Greece\", \"name_long\": \"Greece\", \"brk_a3\": \"GRC\", \"brk_name\": \"Greece\", \"brk_group\": null, \"abbrev\": \"Greece\", \"postal\": \"GR\", \"formal_en\": \"Hellenic Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Greece\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 9.000000, \"pop_est\": 10737428.000000, \"gdp_md_est\": 343000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GR\", \"iso_a3\": \"GRC\", \"iso_n3\": \"300\", \"un_a3\": \"300\", \"wb_a2\": \"GR\", \"wb_a3\": \"GRC\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GRC\", \"adm0_a3_us\": \"GRC\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 23.699980096133004, 35.705004380835533 ], [ 24.24666507334868, 35.368022365860156 ], [ 25.02501549652888, 35.424995632461986 ], [ 25.769207797964185, 35.35401805270908 ], [ 25.745023227651586, 35.179997666966216 ], [ 26.290002882601726, 35.299990342747918 ], [ 26.164997592887659, 35.004995429009796 ], [ 24.724982130642303, 34.91998769788961 ], [ 24.735007358506948, 35.084990546197588 ], [ 23.514978468528113, 35.279991563450977 ], [ 23.699980096133004, 35.705004380835533 ] ] ], [ [ [ 26.604195590936285, 41.562114569661105 ], [ 26.29460208507578, 40.936261298174259 ], [ 26.056942172965506, 40.824123440100834 ], [ 25.447677036244187, 40.852545477861469 ], [ 24.925848422960939, 40.947061672523233 ], [ 23.714811232200816, 40.687129218095123 ], [ 24.407998894964066, 40.124992987624097 ], [ 23.899967889102584, 39.96200552017558 ], [ 23.3429993018608, 39.960997829745793 ], [ 22.813987664488963, 40.476005153966554 ], [ 22.626298862404781, 40.256561184239189 ], [ 22.849747755634809, 39.659310818025773 ], [ 23.350027296652598, 39.190011298167263 ], [ 22.973099399515547, 38.970903225249657 ], [ 23.530016310324953, 38.510001125638468 ], [ 24.025024855248944, 38.21999298761645 ], [ 24.040011020613605, 37.655014553369426 ], [ 23.115002882589152, 37.920011298162223 ], [ 23.409971958111072, 37.409990749657396 ], [ 22.774971958108637, 37.305010077456558 ], [ 23.15422529469862, 36.422505804992056 ], [ 22.490028110451107, 36.41000010837746 ], [ 21.670026482843696, 36.844986477194198 ], [ 21.295010613701578, 37.644989325504696 ], [ 21.120034213961333, 38.310323391262727 ], [ 20.730032179454582, 38.769985256498785 ], [ 20.217712029712857, 39.340234686839636 ], [ 20.15001590341052, 39.624997666984029 ], [ 20.615000441172782, 40.110006822259436 ], [ 20.674996779063633, 40.434999904943055 ], [ 20.999989861747281, 40.580003973953978 ], [ 21.020040317476429, 40.84272695572588 ], [ 21.674160597426976, 40.931274522457983 ], [ 22.05537763844427, 41.149865831052693 ], [ 22.597308383889015, 41.130487168943205 ], [ 22.76177, 41.3048 ], [ 22.952377150166569, 41.337993882811219 ], [ 23.692073601992462, 41.309080918943863 ], [ 24.492644891058035, 41.58389618587205 ], [ 25.197201368925533, 41.234485988930658 ], [ 26.106138136507184, 41.328898830727837 ], [ 26.117041863720914, 41.826904608724732 ], [ 26.604195590936285, 41.562114569661105 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Denmark\", \"sov_a3\": \"DN1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"Greenland\", \"adm0_a3\": \"GRL\", \"geou_dif\": 0.000000, \"geounit\": \"Greenland\", \"gu_a3\": \"GRL\", \"su_dif\": 0.000000, \"subunit\": \"Greenland\", \"su_a3\": \"GRL\", \"brk_diff\": 0.000000, \"name\": \"Greenland\", \"name_long\": \"Greenland\", \"brk_a3\": \"GRL\", \"brk_name\": \"Greenland\", \"brk_group\": null, \"abbrev\": \"Grlnd.\", \"postal\": \"GL\", \"formal_en\": \"Greenland\", \"formal_fr\": null, \"note_adm0\": \"Den.\", \"note_brk\": null, \"name_sort\": \"Greenland\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 12.000000, \"pop_est\": 57600.000000, \"gdp_md_est\": 1100.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GL\", \"iso_a3\": \"GRL\", \"iso_n3\": \"304\", \"un_a3\": \"304\", \"wb_a2\": \"GL\", \"wb_a3\": \"GRL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GRL\", \"adm0_a3_us\": \"GRL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Northern America\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": -99.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -46.76379, 82.62796 ], [ -43.40644, 83.22516 ], [ -39.89753, 83.18018 ], [ -38.62214, 83.54905 ], [ -35.08787, 83.64513 ], [ -27.10046, 83.51966 ], [ -20.84539, 82.72669 ], [ -22.69182, 82.34165 ], [ -26.51753, 82.29765 ], [ -31.9, 82.2 ], [ -31.39646, 82.02154 ], [ -27.85666, 82.13178 ], [ -24.84448, 81.78697 ], [ -22.90328, 82.09317 ], [ -22.07175, 81.73449 ], [ -23.16961, 81.15271 ], [ -20.62363, 81.52462 ], [ -15.76818, 81.91245 ], [ -12.77018, 81.71885 ], [ -12.20855, 81.29154 ], [ -16.28533, 80.58004 ], [ -16.85, 80.35 ], [ -20.04624, 80.17708 ], [ -17.73035, 80.12912 ], [ -18.9, 79.4 ], [ -19.70499, 78.75128 ], [ -19.67353, 77.63859 ], [ -18.47285, 76.98565 ], [ -20.03503, 76.94434 ], [ -21.67944, 76.62795 ], [ -19.83407, 76.09808 ], [ -19.59896, 75.24838 ], [ -20.66818, 75.15585 ], [ -19.37281, 74.29561 ], [ -21.59422, 74.22382 ], [ -20.43454, 73.81713 ], [ -20.76234, 73.46436 ], [ -22.17221, 73.30955 ], [ -23.56593, 73.30663 ], [ -22.31311, 72.62928 ], [ -22.29954, 72.18409 ], [ -24.27834, 72.59788 ], [ -24.79296, 72.3302 ], [ -23.44296, 72.08016 ], [ -22.13281, 71.46898 ], [ -21.75356, 70.66369 ], [ -23.53603, 70.471 ], [ -24.30702, 70.85649 ], [ -25.54341, 71.43094 ], [ -25.20135, 70.75226 ], [ -26.36276, 70.22646 ], [ -23.72742, 70.18401 ], [ -22.34902, 70.12946 ], [ -25.02927, 69.2588 ], [ -27.74737, 68.47046 ], [ -30.67371, 68.12503 ], [ -31.77665, 68.12078 ], [ -32.81105, 67.73547 ], [ -34.20196, 66.67974 ], [ -36.35284, 65.9789 ], [ -37.04378, 65.93768 ], [ -38.37505, 65.69213 ], [ -39.81222, 65.45848 ], [ -40.66899, 64.83997 ], [ -40.68281, 64.13902 ], [ -41.1887, 63.48246 ], [ -42.81938, 62.68233 ], [ -42.41666, 61.90093 ], [ -42.86619, 61.07404 ], [ -43.3784, 60.09772 ], [ -44.7875, 60.03676 ], [ -46.26364, 60.85328 ], [ -48.26294, 60.85843 ], [ -49.23308, 61.40681 ], [ -49.90039, 62.38336 ], [ -51.63325, 63.62691 ], [ -52.14014, 64.27842 ], [ -52.27659, 65.1767 ], [ -53.66166, 66.09957 ], [ -53.30161, 66.8365 ], [ -53.96911, 67.18899 ], [ -52.9804, 68.35759 ], [ -51.47536, 68.72958 ], [ -51.08041, 69.14781 ], [ -50.87122, 69.9291 ], [ -52.013585, 69.574925 ], [ -52.55792, 69.42616 ], [ -53.45629, 69.283625 ], [ -54.68336, 69.61003 ], [ -54.75001, 70.28932 ], [ -54.35884, 70.821315 ], [ -53.431315, 70.835755 ], [ -51.39014, 70.56978 ], [ -53.10937, 71.20485 ], [ -54.00422, 71.54719 ], [ -55.0, 71.406536967272572 ], [ -55.83468, 71.65444 ], [ -54.71819, 72.58625 ], [ -55.32634, 72.95861 ], [ -56.12003, 73.64977 ], [ -57.32363, 74.71026 ], [ -58.59679, 75.09861 ], [ -58.58516, 75.51727 ], [ -61.26861, 76.10238 ], [ -63.39165, 76.1752 ], [ -66.06427, 76.13486 ], [ -68.50438, 76.06141 ], [ -69.66485, 76.37975 ], [ -71.40257, 77.00857 ], [ -68.77671, 77.32312 ], [ -66.76397, 77.37595 ], [ -71.04293, 77.63595 ], [ -73.297, 78.04419 ], [ -73.15938, 78.43271 ], [ -69.37345, 78.91388 ], [ -65.7107, 79.39436 ], [ -65.3239, 79.75814 ], [ -68.02298, 80.11721 ], [ -67.15129, 80.51582 ], [ -63.68925, 81.21396 ], [ -62.23444, 81.3211 ], [ -62.65116, 81.77042 ], [ -60.28249, 82.03363 ], [ -57.20744, 82.19074 ], [ -54.13442, 82.19962 ], [ -53.04328, 81.88833 ], [ -50.39061, 82.43883 ], [ -48.00386, 82.06481 ], [ -46.59984, 81.985945 ], [ -44.523, 81.6607 ], [ -46.9007, 82.19979 ], [ -46.76379, 82.62796 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Guatemala\", \"sov_a3\": \"GTM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Guatemala\", \"adm0_a3\": \"GTM\", \"geou_dif\": 0.000000, \"geounit\": \"Guatemala\", \"gu_a3\": \"GTM\", \"su_dif\": 0.000000, \"subunit\": \"Guatemala\", \"su_a3\": \"GTM\", \"brk_diff\": 0.000000, \"name\": \"Guatemala\", \"name_long\": \"Guatemala\", \"brk_a3\": \"GTM\", \"brk_name\": \"Guatemala\", \"brk_group\": null, \"abbrev\": \"Guat.\", \"postal\": \"GT\", \"formal_en\": \"Republic of Guatemala\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Guatemala\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 6.000000, \"pop_est\": 13276517.000000, \"gdp_md_est\": 68580.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GT\", \"iso_a3\": \"GTM\", \"iso_n3\": \"320\", \"un_a3\": \"320\", \"wb_a2\": \"GT\", \"wb_a3\": \"GTM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GTM\", \"adm0_a3_us\": \"GTM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Central America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 5.000000, \"tiny\": 4.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -90.095554572290979, 13.735337632700734 ], [ -90.608624030300845, 13.909771429901951 ], [ -91.232410244496052, 13.927832342987957 ], [ -91.689746670279135, 14.126218166556455 ], [ -92.227750006869826, 14.538828640190928 ], [ -92.203229539747326, 14.830102850804069 ], [ -92.087215949252069, 15.064584662328441 ], [ -92.229248623406278, 15.25144664149586 ], [ -91.747960171255926, 16.066564846251723 ], [ -90.464472622422662, 16.069562079324655 ], [ -90.438866950222035, 16.410109768128095 ], [ -90.600846727240921, 16.470777899638762 ], [ -90.711821865587723, 16.687483018454728 ], [ -91.081670091500655, 16.918476670799407 ], [ -91.453921271515156, 17.252177232324172 ], [ -91.002269253284211, 17.25465770107418 ], [ -91.001519945015957, 17.81759491624571 ], [ -90.067933519230976, 17.819326076727478 ], [ -89.143080410503316, 17.808318996649319 ], [ -89.150806037130948, 17.015576687075836 ], [ -89.229121670269279, 15.886937567605171 ], [ -88.930612759135272, 15.887273464415076 ], [ -88.604586147805847, 15.70638011317736 ], [ -88.51836402052686, 15.855389105690975 ], [ -88.225022752622024, 15.727722479713904 ], [ -88.680679694355632, 15.346247056535304 ], [ -89.154810960633569, 15.06641917567481 ], [ -89.225220099631272, 14.874286200413621 ], [ -89.145535041037178, 14.678019110569082 ], [ -89.3533259752828, 14.424132798719114 ], [ -89.587342698916558, 14.36258616785949 ], [ -89.534219326520514, 14.244815578666305 ], [ -89.721933966820728, 14.134228013561696 ], [ -90.064677903996596, 13.881969509328925 ], [ -90.095554572290979, 13.735337632700734 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Guyana\", \"sov_a3\": \"GUY\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Guyana\", \"adm0_a3\": \"GUY\", \"geou_dif\": 0.000000, \"geounit\": \"Guyana\", \"gu_a3\": \"GUY\", \"su_dif\": 0.000000, \"subunit\": \"Guyana\", \"su_a3\": \"GUY\", \"brk_diff\": 0.000000, \"name\": \"Guyana\", \"name_long\": \"Guyana\", \"brk_a3\": \"GUY\", \"brk_name\": \"Guyana\", \"brk_group\": null, \"abbrev\": \"Guy.\", \"postal\": \"GY\", \"formal_en\": \"Co-operative Republic of Guyana\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Guyana\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 8.000000, \"pop_est\": 772298.000000, \"gdp_md_est\": 2966.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"GY\", \"iso_a3\": \"GUY\", \"iso_n3\": \"328\", \"un_a3\": \"328\", \"wb_a2\": \"GY\", \"wb_a3\": \"GUY\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"GUY\", \"adm0_a3_us\": \"GUY\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -59.758284878159195, 8.367034816924047 ], [ -59.101684129458661, 7.999201971870492 ], [ -58.482962205628063, 7.347691351750697 ], [ -58.454876064677421, 6.832787380394464 ], [ -58.078103196837375, 6.809093736188643 ], [ -57.542218593970645, 6.321268215353356 ], [ -57.147436489476888, 5.973149929219161 ], [ -57.307245856339506, 5.073566595882227 ], [ -57.914288906472137, 4.812626451024414 ], [ -57.860209520078698, 4.57680105226045 ], [ -58.044694383360678, 4.060863552258382 ], [ -57.60156897645787, 3.334654649260685 ], [ -57.28143347840971, 3.333491929534119 ], [ -57.150097825739913, 2.768926906745406 ], [ -56.539385748914555, 1.899522609866921 ], [ -56.782704230360828, 1.863710842288654 ], [ -57.335822923396904, 1.948537705895759 ], [ -57.660971035377372, 1.682584947105639 ], [ -58.113449876525017, 1.507195135907025 ], [ -58.429477098205965, 1.463941962078721 ], [ -58.540012986878295, 1.268088283692521 ], [ -59.030861579002647, 1.317697658692722 ], [ -59.646043667221257, 1.786893825686789 ], [ -59.718545701726747, 2.24963043864436 ], [ -59.974524909084558, 2.755232652188056 ], [ -59.815413174057866, 3.606498521332085 ], [ -59.538039923731233, 3.958802598481938 ], [ -59.767405768458715, 4.423502915866607 ], [ -60.11100236676738, 4.574966538914083 ], [ -59.980958624904886, 5.014061184098139 ], [ -60.213683437731333, 5.244486395687602 ], [ -60.733574184803722, 5.200277207861901 ], [ -61.410302903881956, 5.959068101419618 ], [ -61.139415045807951, 6.234296779806144 ], [ -61.159336310456482, 6.696077378766319 ], [ -60.543999192940987, 6.856584377464883 ], [ -60.295668097562398, 7.043911444522919 ], [ -60.637972785063766, 7.414999904810855 ], [ -60.5505879380582, 7.779602972846178 ], [ -59.758284878159195, 8.367034816924047 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Honduras\", \"sov_a3\": \"HND\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Honduras\", \"adm0_a3\": \"HND\", \"geou_dif\": 0.000000, \"geounit\": \"Honduras\", \"gu_a3\": \"HND\", \"su_dif\": 0.000000, \"subunit\": \"Honduras\", \"su_a3\": \"HND\", \"brk_diff\": 0.000000, \"name\": \"Honduras\", \"name_long\": \"Honduras\", \"brk_a3\": \"HND\", \"brk_name\": \"Honduras\", \"brk_group\": null, \"abbrev\": \"Hond.\", \"postal\": \"HN\", \"formal_en\": \"Republic of Honduras\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Honduras\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 5.000000, \"pop_est\": 7792854.000000, \"gdp_md_est\": 33720.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"HN\", \"iso_a3\": \"HND\", \"iso_n3\": \"340\", \"un_a3\": \"340\", \"wb_a2\": \"HN\", \"wb_a3\": \"HND\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"HND\", \"adm0_a3_us\": \"HND\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Central America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -87.316654425795491, 12.984685777229004 ], [ -87.489408738947134, 13.297534898323931 ], [ -87.79311113152653, 13.384480495655168 ], [ -87.723502977229316, 13.785050360565606 ], [ -87.859515347021613, 13.893312486217098 ], [ -88.065342576840123, 13.964625962779792 ], [ -88.503997972349623, 13.845485948130943 ], [ -88.541230841815945, 13.980154730683523 ], [ -88.843072882832757, 14.140506700085211 ], [ -89.058511929057659, 14.340029405164216 ], [ -89.353325975282814, 14.424132798719086 ], [ -89.145535041037192, 14.678019110569153 ], [ -89.225220099631258, 14.874286200413678 ], [ -89.15481096063354, 15.066419175674866 ], [ -88.680679694355604, 15.34624705653539 ], [ -88.225022752621953, 15.727722479714032 ], [ -88.121153123715374, 15.688655096901357 ], [ -87.901812506852423, 15.864458319558196 ], [ -87.615680101252337, 15.878798529519202 ], [ -87.522920905288458, 15.797278957578783 ], [ -87.367762417332131, 15.846940009011291 ], [ -86.903191291028179, 15.756712958229571 ], [ -86.440945604177386, 15.782835394753192 ], [ -86.119233974944336, 15.893448798073962 ], [ -86.001954311857844, 16.005405788634391 ], [ -85.683317430346278, 15.953651841693954 ], [ -85.444003872402561, 15.885749009662447 ], [ -85.182443610357211, 15.909158433490632 ], [ -84.983721889978824, 15.995923163308703 ], [ -84.526979743167146, 15.857223619037427 ], [ -84.368255581382584, 15.835157782448732 ], [ -84.063054572266822, 15.648244126849136 ], [ -83.773976610026125, 15.424071763566872 ], [ -83.410381232420377, 15.270902818253774 ], [ -83.147219000974133, 14.99582916916421 ], [ -83.489988776366033, 15.016267198135665 ], [ -83.628584967772895, 14.880073960830373 ], [ -83.97572140169359, 14.749435939996488 ], [ -84.228341640952408, 14.748764146376629 ], [ -84.449335903648603, 14.621614284722511 ], [ -84.649582078779645, 14.666805324761867 ], [ -84.820036790694303, 14.81958669683263 ], [ -84.924500698572331, 14.790492865452336 ], [ -85.052787441736882, 14.551541042534723 ], [ -85.148750576502891, 14.560196844943619 ], [ -85.165364549484821, 14.354369615125051 ], [ -85.514413011400279, 14.079011745657908 ], [ -85.698665330736958, 13.960078436738002 ], [ -85.801294725268519, 13.836054999237604 ], [ -86.096263800790609, 14.038187364147234 ], [ -86.312142096689854, 13.771356106008227 ], [ -86.52070817741992, 13.778487453664468 ], [ -86.755086636079625, 13.754845485890939 ], [ -86.733821784191491, 13.2630925562014 ], [ -86.880557013684381, 13.254204209847217 ], [ -87.005769009127448, 13.025794379117258 ], [ -87.316654425795491, 12.984685777229004 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Croatia\", \"sov_a3\": \"HRV\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Croatia\", \"adm0_a3\": \"HRV\", \"geou_dif\": 0.000000, \"geounit\": \"Croatia\", \"gu_a3\": \"HRV\", \"su_dif\": 0.000000, \"subunit\": \"Croatia\", \"su_a3\": \"HRV\", \"brk_diff\": 0.000000, \"name\": \"Croatia\", \"name_long\": \"Croatia\", \"brk_a3\": \"HRV\", \"brk_name\": \"Croatia\", \"brk_group\": null, \"abbrev\": \"Cro.\", \"postal\": \"HR\", \"formal_en\": \"Republic of Croatia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Croatia\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 1.000000, \"pop_est\": 4489409.000000, \"gdp_md_est\": 82390.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"HR\", \"iso_a3\": \"HRV\", \"iso_n3\": \"191\", \"un_a3\": \"191\", \"wb_a2\": \"HR\", \"wb_a3\": \"HRV\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"HRV\", \"adm0_a3_us\": \"HRV\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 18.829838087650046, 45.908877671891844 ], [ 19.072768995854176, 45.521511135432092 ], [ 19.390475701584592, 45.236515611342384 ], [ 19.005486281010121, 44.860233669609158 ], [ 18.553214145591653, 45.081589667331457 ], [ 17.861783481526402, 45.067740383477144 ], [ 17.002146030351014, 45.233776760430942 ], [ 16.534939406000206, 45.211607570977719 ], [ 16.318156772535872, 45.004126695325908 ], [ 15.959367303133376, 45.233776760430942 ], [ 15.750026075918981, 44.818711656262565 ], [ 16.239660271884532, 44.351143296885709 ], [ 16.456442905348865, 44.041239732431279 ], [ 16.916156447017329, 43.66772247982567 ], [ 17.297373488034452, 43.446340643887368 ], [ 17.674921502358984, 43.02856252702361 ], [ 18.56, 42.65 ], [ 18.450016310304818, 42.479991360029317 ], [ 17.509970330483327, 42.849994615239154 ], [ 16.930005730871642, 43.20999848080038 ], [ 16.015384555737683, 43.507215481127218 ], [ 15.174453973052096, 44.243191229827914 ], [ 15.376250441151797, 44.317915350922078 ], [ 14.920309279040509, 44.738483995129457 ], [ 14.901602410550879, 45.076060289076111 ], [ 14.258747592839995, 45.233776760430942 ], [ 13.952254672917036, 44.802123521496867 ], [ 13.656975538801191, 45.136935126315961 ], [ 13.679403110415819, 45.484149074885011 ], [ 13.715059848697251, 45.500323798192426 ], [ 14.411968214585499, 45.466165676447417 ], [ 14.59510949062792, 45.634940904312828 ], [ 14.935243767972963, 45.471695054702764 ], [ 15.327674594797429, 45.452316392593332 ], [ 15.323953891672431, 45.731782538427694 ], [ 15.671529575267641, 45.834153550797907 ], [ 15.768732944408612, 46.238108222023527 ], [ 16.564808383864943, 46.503750922219808 ], [ 16.882515089595415, 46.380631822284442 ], [ 17.630066359129557, 45.951769110694102 ], [ 18.456062452882861, 45.75948110613615 ], [ 18.829838087650046, 45.908877671891844 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Haiti\", \"sov_a3\": \"HTI\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Haiti\", \"adm0_a3\": \"HTI\", \"geou_dif\": 0.000000, \"geounit\": \"Haiti\", \"gu_a3\": \"HTI\", \"su_dif\": 0.000000, \"subunit\": \"Haiti\", \"su_a3\": \"HTI\", \"brk_diff\": 0.000000, \"name\": \"Haiti\", \"name_long\": \"Haiti\", \"brk_a3\": \"HTI\", \"brk_name\": \"Haiti\", \"brk_group\": null, \"abbrev\": \"Haiti\", \"postal\": \"HT\", \"formal_en\": \"Republic of Haiti\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Haiti\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 2.000000, \"pop_est\": 9035536.000000, \"gdp_md_est\": 11500.000000, \"pop_year\": -99.000000, \"lastcensus\": 2003.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"HT\", \"iso_a3\": \"HTI\", \"iso_n3\": \"332\", \"un_a3\": \"332\", \"wb_a2\": \"HT\", \"wb_a3\": \"HTI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"HTI\", \"adm0_a3_us\": \"HTI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Caribbean\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -73.189790615517623, 19.915683905511912 ], [ -72.579672817663621, 19.871500555902358 ], [ -71.712361416292964, 19.714455878167357 ], [ -71.624873216422827, 19.169837958243306 ], [ -71.701302659782499, 18.785416978424053 ], [ -71.945112067335558, 18.616900132720261 ], [ -71.68773759630588, 18.316660061104471 ], [ -71.708304816358051, 18.044997056546094 ], [ -72.372476162389347, 18.21496084235406 ], [ -72.844411180294884, 18.145611070218365 ], [ -73.454554816365032, 18.2179063989947 ], [ -73.922433234335656, 18.030992743395004 ], [ -74.458033616824778, 18.342549953682706 ], [ -74.369925299767132, 18.664907538319412 ], [ -73.449542202432724, 18.526052964751145 ], [ -72.694937099890637, 18.445799465401862 ], [ -72.334881557897006, 18.668421535715254 ], [ -72.791649542924887, 19.101625067618031 ], [ -72.784104783810278, 19.483591416903408 ], [ -73.415022345661754, 19.639550889560283 ], [ -73.189790615517623, 19.915683905511912 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Hungary\", \"sov_a3\": \"HUN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Hungary\", \"adm0_a3\": \"HUN\", \"geou_dif\": 0.000000, \"geounit\": \"Hungary\", \"gu_a3\": \"HUN\", \"su_dif\": 0.000000, \"subunit\": \"Hungary\", \"su_a3\": \"HUN\", \"brk_diff\": 0.000000, \"name\": \"Hungary\", \"name_long\": \"Hungary\", \"brk_a3\": \"HUN\", \"brk_name\": \"Hungary\", \"brk_group\": null, \"abbrev\": \"Hun.\", \"postal\": \"HU\", \"formal_en\": \"Republic of Hungary\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Hungary\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 5.000000, \"pop_est\": 9905596.000000, \"gdp_md_est\": 196600.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"HU\", \"iso_a3\": \"HUN\", \"iso_n3\": \"348\", \"un_a3\": \"348\", \"wb_a2\": \"HU\", \"wb_a3\": \"HUN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"HUN\", \"adm0_a3_us\": \"HUN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 16.202298211337364, 46.852385972676963 ], [ 16.534267612380376, 47.496170966169117 ], [ 16.340584344150415, 47.71290192320123 ], [ 16.903754103267261, 47.714865627628328 ], [ 16.979666782304037, 48.123497015976305 ], [ 17.48847293464982, 47.867466132186216 ], [ 17.857132602620027, 47.758428860050373 ], [ 18.696512892336926, 47.880953681014404 ], [ 18.777024773847671, 48.081768296900634 ], [ 19.174364861739889, 48.111378892603867 ], [ 19.661363559658497, 48.266614895208662 ], [ 19.769470656013112, 48.202691148463614 ], [ 20.239054396249347, 48.327567247096923 ], [ 20.473562045989866, 48.562850043321816 ], [ 20.801293979584926, 48.623854071642384 ], [ 21.872236362401736, 48.319970811550021 ], [ 22.085608351334855, 48.422264309271789 ], [ 22.640819939878753, 48.150239569687358 ], [ 22.710531447040495, 47.882193915389408 ], [ 22.099767693782837, 47.672439276716702 ], [ 21.626514926853872, 46.994237779318162 ], [ 21.021952345471249, 46.316087958351901 ], [ 20.220192498462836, 46.127468980486555 ], [ 19.596044549241583, 46.17172984474454 ], [ 18.829838087649961, 45.908877671891929 ], [ 18.456062452882861, 45.759481106136136 ], [ 17.630066359129557, 45.951769110694187 ], [ 16.882515089595302, 46.380631822284442 ], [ 16.564808383864857, 46.50375092221983 ], [ 16.370504998447416, 46.841327216166505 ], [ 16.202298211337364, 46.852385972676963 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Indonesia\", \"sov_a3\": \"IDN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Indonesia\", \"adm0_a3\": \"IDN\", \"geou_dif\": 0.000000, \"geounit\": \"Indonesia\", \"gu_a3\": \"IDN\", \"su_dif\": 0.000000, \"subunit\": \"Indonesia\", \"su_a3\": \"IDN\", \"brk_diff\": 0.000000, \"name\": \"Indonesia\", \"name_long\": \"Indonesia\", \"brk_a3\": \"IDN\", \"brk_name\": \"Indonesia\", \"brk_group\": null, \"abbrev\": \"Indo.\", \"postal\": \"INDO\", \"formal_en\": \"Republic of Indonesia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Indonesia\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 11.000000, \"pop_est\": 240271522.000000, \"gdp_md_est\": 914600.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"4. Emerging region: MIKT\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ID\", \"iso_a3\": \"IDN\", \"iso_n3\": \"360\", \"un_a3\": \"360\", \"wb_a2\": \"ID\", \"wb_a3\": \"IDN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"IDN\", \"adm0_a3_us\": \"IDN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 120.715608758630452, -10.239581394087864 ], [ 120.295014276206899, -10.258649997603527 ], [ 118.967808465654713, -9.557969252158031 ], [ 119.900309686361624, -9.361340427287516 ], [ 120.425755649905426, -9.665921319215798 ], [ 120.775501743656747, -9.969675388227458 ], [ 120.715608758630452, -10.239581394087864 ] ] ], [ [ [ 124.435950148619412, -10.140000909061442 ], [ 123.579981724136729, -10.359987481327963 ], [ 123.459989048355027, -10.239994805546175 ], [ 123.550009393407464, -9.90001555749798 ], [ 123.980008986508125, -9.290026950724695 ], [ 124.968682489116219, -8.892790215697048 ], [ 125.07001997284064, -9.089987481322837 ], [ 125.088520135601101, -9.393173109579322 ], [ 124.435950148619412, -10.140000909061442 ] ] ], [ [ [ 117.900018345207769, -8.095681247594925 ], [ 118.260616489740499, -8.362383314653329 ], [ 118.878459914222134, -8.28068287519983 ], [ 119.1265067892231, -8.705824883665073 ], [ 117.970401645989313, -8.906639499551261 ], [ 117.277730747549043, -9.040894870645559 ], [ 116.740140822416635, -9.032936700072639 ], [ 117.083737420725328, -8.457157891476541 ], [ 117.632024367342154, -8.449303073768192 ], [ 117.900018345207769, -8.095681247594925 ] ] ], [ [ [ 122.903537225436111, -8.094234307490737 ], [ 122.756982863456329, -8.649807631060639 ], [ 121.254490594570115, -8.933666273639943 ], [ 119.924390903809609, -8.810417982623875 ], [ 119.92092858284613, -8.444858900591072 ], [ 120.715091994307585, -8.236964613480865 ], [ 121.341668735846582, -8.536739597206022 ], [ 122.007364536630433, -8.460620212440162 ], [ 122.903537225436111, -8.094234307490737 ] ] ], [ [ [ 108.623478631628956, -6.777673841990676 ], [ 110.539227329553313, -6.877357679881683 ], [ 110.759575636845938, -6.465186455921753 ], [ 112.614811232556377, -6.946035658397591 ], [ 112.978768345188115, -7.59421314863458 ], [ 114.478935174621171, -7.776527601760279 ], [ 115.705526971501087, -8.370806573116866 ], [ 114.564511346496516, -8.751816908404834 ], [ 113.464733514460903, -8.348947442257426 ], [ 112.559672479301042, -8.376180922075164 ], [ 111.522061395312477, -8.302128594600958 ], [ 110.586149530074323, -8.122604668819022 ], [ 109.427667270955197, -7.740664157749762 ], [ 108.693655226681329, -7.641600437046222 ], [ 108.27776329959633, -7.766657403192582 ], [ 106.454102004016164, -7.354899590690948 ], [ 106.280624220812314, -6.924899997590202 ], [ 105.365486281355544, -6.85141611087117 ], [ 106.051645949327082, -5.8959188777945 ], [ 107.265008579540194, -5.954985039904059 ], [ 108.072091099074697, -6.345762220895239 ], [ 108.486846144649263, -6.421984958525769 ], [ 108.623478631628956, -6.777673841990676 ] ] ], [ [ [ 134.724624465066682, -6.214400730009288 ], [ 134.210133905168931, -6.895237725454706 ], [ 134.112775506731026, -6.142467136259015 ], [ 134.290335728085807, -5.783057549669039 ], [ 134.49962527886791, -5.445042006047899 ], [ 134.727001580952134, -5.73758228925216 ], [ 134.724624465066682, -6.214400730009288 ] ] ], [ [ [ 127.249215122588936, -3.45906503663889 ], [ 126.874922723498884, -3.79098276124958 ], [ 126.18380211802733, -3.607376397316557 ], [ 125.989033644719285, -3.177273451351326 ], [ 127.000651483264988, -3.12931772218441 ], [ 127.249215122588936, -3.45906503663889 ] ] ], [ [ [ 130.471344028851803, -3.09376433676762 ], [ 130.834836053592795, -3.858472181822762 ], [ 129.990546502808144, -3.446300957862817 ], [ 129.155248651242431, -3.362636813982249 ], [ 128.590683628453661, -3.428679294451257 ], [ 127.898891229362363, -3.393435967628193 ], [ 128.135879347852807, -2.843650404474914 ], [ 129.370997756060916, -2.802154229344552 ], [ 130.471344028851803, -3.09376433676762 ] ] ], [ [ [ 134.1433679546478, -1.151867364103595 ], [ 134.42262739475305, -2.769184665542383 ], [ 135.457602980694702, -3.367752780779114 ], [ 136.293314243718811, -2.30704233155609 ], [ 137.440737746327528, -1.703513278819372 ], [ 138.329727411044786, -1.702686455902651 ], [ 139.184920689042968, -2.051295668143638 ], [ 139.926684198160416, -2.409051608900285 ], [ 141.000210402591875, -2.600151055515624 ], [ 141.017056919519035, -5.859021905138022 ], [ 141.033851760013903, -9.117892754760419 ], [ 140.143415155192571, -8.297167657100957 ], [ 139.127766554928115, -8.096042982620943 ], [ 138.881476678624978, -8.380935153846096 ], [ 137.614473911692841, -8.411682631059762 ], [ 138.039099155835203, -7.597882175327356 ], [ 138.668621454014811, -7.320224704623072 ], [ 138.407913853102372, -6.232849216337485 ], [ 137.927839797110863, -5.393365573756 ], [ 135.989250116113482, -4.546543877789048 ], [ 135.164597609599724, -4.462931410340772 ], [ 133.662880487197896, -3.538853448097527 ], [ 133.367704705946807, -4.024818617370315 ], [ 132.983955519747354, -4.112978610860281 ], [ 132.756940952689007, -3.74628264731713 ], [ 132.753788690319226, -3.311787204607072 ], [ 131.989804315316206, -2.820551039240456 ], [ 133.066844517143494, -2.460417982598443 ], [ 133.780030959203515, -2.47984832114021 ], [ 133.696211786026169, -2.214541517753688 ], [ 132.232373488494233, -2.212526136894326 ], [ 131.836221958544712, -1.617161960459597 ], [ 130.942839797082826, -1.432522067880797 ], [ 130.519558140180067, -0.937720228686075 ], [ 131.867537876513637, -0.695461114101818 ], [ 132.380116408416797, -0.369537855636977 ], [ 133.985548130428441, -0.780210463060442 ], [ 134.1433679546478, -1.151867364103595 ] ] ], [ [ [ 125.240500522971587, 1.419836127117605 ], [ 124.437035353697382, 0.427881171058971 ], [ 123.685504998876723, 0.235593166500877 ], [ 122.723083123872897, 0.431136786293337 ], [ 121.056724888189109, 0.381217352699451 ], [ 120.183083123862758, 0.23724681233422 ], [ 120.040869582195484, -0.519657891444851 ], [ 120.935905389490728, -1.408905938323372 ], [ 121.475820754076182, -0.955962009285116 ], [ 123.340564813328484, -0.615672702643081 ], [ 123.258399285984495, -1.076213067228338 ], [ 122.822715285331611, -0.930950616055881 ], [ 122.388529901215378, -1.516858005381124 ], [ 121.508273553555483, -1.904482924002423 ], [ 122.454572381684301, -3.186058444840882 ], [ 122.271896193532569, -3.529500013852697 ], [ 123.170962762546566, -4.683693129091708 ], [ 123.162332798353788, -5.340603936385961 ], [ 122.628515252778726, -5.634591159694494 ], [ 122.236394484548072, -5.282933037948283 ], [ 122.719569126477069, -4.46417164471579 ], [ 121.738233677254385, -4.8513314754465 ], [ 121.489463332201268, -4.574552504091216 ], [ 121.619171177253889, -4.188477878438675 ], [ 120.898181593917712, -3.602105401222829 ], [ 120.972388950688782, -2.62764291749491 ], [ 120.305452915529912, -2.931603692235726 ], [ 120.390047235191759, -4.097579034037224 ], [ 120.430716587405385, -5.528241062037779 ], [ 119.796543410319515, -5.673400160345651 ], [ 119.366905552244958, -5.379878024927805 ], [ 119.653606398600147, -4.459417412944958 ], [ 119.498835483885983, -3.49441171632651 ], [ 119.078344354327015, -3.487021986508765 ], [ 118.767768996252897, -2.801999200047689 ], [ 119.18097374885869, -2.147103773612798 ], [ 119.323393996255078, -1.353147067880471 ], [ 119.825998976725856, 0.154254462073496 ], [ 120.035701938966355, 0.566477362465804 ], [ 120.885779250167701, 1.309222723796836 ], [ 121.666816847826993, 1.013943589681077 ], [ 122.927566766451861, 0.875192368977466 ], [ 124.07752241424285, 0.917101955566139 ], [ 125.065989211121831, 1.643259182131558 ], [ 125.240500522971587, 1.419836127117605 ] ] ], [ [ [ 128.688248732620735, 1.132385972494106 ], [ 128.63595218314137, 0.258485826006179 ], [ 128.120169712436194, 0.356412665199286 ], [ 127.968034295768888, -0.252077325037533 ], [ 128.37999881399972, -0.780003757331286 ], [ 128.100015903842319, -0.899996433112975 ], [ 127.696474644075039, -0.266598402511505 ], [ 127.399490187693772, 1.011721503092573 ], [ 127.600511509309086, 1.810690822757181 ], [ 127.932377557487513, 2.174596258956555 ], [ 128.004156121940838, 1.628531398928331 ], [ 128.594559360875479, 1.540810655112864 ], [ 128.688248732620735, 1.132385972494106 ] ] ], [ [ [ 117.875627069166029, 1.827640692548911 ], [ 118.996747267738186, 0.902219143066048 ], [ 117.811858351717802, 0.784241848143722 ], [ 117.478338657706075, 0.102474676917026 ], [ 117.521643507966616, -0.803723239753211 ], [ 116.560048455879524, -1.487660821136231 ], [ 116.5337968282752, -2.483517347832901 ], [ 116.148083937648636, -4.012726332214015 ], [ 116.00085778204911, -3.657037448749008 ], [ 114.864803094544556, -4.106984144714417 ], [ 114.468651564595092, -3.495703627133821 ], [ 113.755671828264127, -3.43916961020652 ], [ 113.256994256647573, -3.118775729996855 ], [ 112.068126255340673, -3.478392022316072 ], [ 111.70329064336002, -2.994442233902632 ], [ 111.048240187628238, -3.049425957861189 ], [ 110.223846063276, -2.934032484553484 ], [ 110.070935500124364, -1.592874037282414 ], [ 109.571947869914055, -1.314906507984489 ], [ 109.091873813922547, -0.459506524257051 ], [ 108.952657505328176, 0.415375474444346 ], [ 109.069136183714051, 1.341933905437642 ], [ 109.663260125773746, 2.006466986494985 ], [ 109.830226678508865, 1.338135687664192 ], [ 110.51406090702713, 0.773131415200993 ], [ 111.159137811326588, 0.976478176269509 ], [ 111.797548455860436, 0.904441229654651 ], [ 112.380251906383677, 1.410120957846758 ], [ 112.859809198052204, 1.497790025229946 ], [ 113.80584964401956, 1.217548732911041 ], [ 114.621355422017501, 1.430688177898887 ], [ 115.134037306785245, 2.821481838386219 ], [ 115.519078403792008, 3.169238389494396 ], [ 115.865517205876785, 4.306559149590157 ], [ 117.015214471506368, 4.306094061699469 ], [ 117.882034946770176, 4.137551377779488 ], [ 117.313232456533541, 3.234428208830579 ], [ 118.048329705885379, 2.287690131027361 ], [ 117.875627069166029, 1.827640692548911 ] ] ], [ [ [ 105.81765506390937, -5.852355645372413 ], [ 104.710384149191526, -5.873284600450646 ], [ 103.86821333213075, -5.037314955264975 ], [ 102.584260695406925, -4.220258884298204 ], [ 102.156173130301028, -3.614146009946765 ], [ 101.399113397225079, -2.799777113459172 ], [ 100.902502882900166, -2.05026213949786 ], [ 100.141980828860625, -0.650347588710957 ], [ 99.263739862060248, 0.183141587724663 ], [ 98.970011020913347, 1.042882391764536 ], [ 98.601351352943112, 1.823506577965617 ], [ 97.69959760944991, 2.453183905442117 ], [ 97.176942173249898, 3.30879059489861 ], [ 96.424016554757344, 3.868859768077911 ], [ 95.380876092513489, 4.970782172053674 ], [ 95.293026157617334, 5.479820868344817 ], [ 95.936862827541773, 5.439513251157109 ], [ 97.484882033277103, 5.246320909034011 ], [ 98.369169142655693, 4.268370266126368 ], [ 99.14255862833582, 3.590349636240916 ], [ 99.693997837322428, 3.174328518075157 ], [ 100.641433546961679, 2.099381211755798 ], [ 101.658012323007341, 2.083697414555189 ], [ 102.49827111207324, 1.398700466310217 ], [ 103.07684044801303, 0.561361395668854 ], [ 103.838396030698362, 0.104541734208667 ], [ 103.437645298274987, -0.711945896002845 ], [ 104.010788608824015, -1.059211521004229 ], [ 104.369991489684907, -1.084843031421016 ], [ 104.539490187602183, -1.782371514496717 ], [ 104.887892694114015, -2.340425306816655 ], [ 105.622111444116996, -2.42884368246807 ], [ 106.108593377712708, -3.06177662517895 ], [ 105.85744591677414, -4.305524997579724 ], [ 105.81765506390937, -5.852355645372413 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"India\", \"sov_a3\": \"IND\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"India\", \"adm0_a3\": \"IND\", \"geou_dif\": 0.000000, \"geounit\": \"India\", \"gu_a3\": \"IND\", \"su_dif\": 0.000000, \"subunit\": \"India\", \"su_a3\": \"IND\", \"brk_diff\": 0.000000, \"name\": \"India\", \"name_long\": \"India\", \"brk_a3\": \"IND\", \"brk_name\": \"India\", \"brk_group\": null, \"abbrev\": \"India\", \"postal\": \"IND\", \"formal_en\": \"Republic of India\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"India\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 2.000000, \"pop_est\": 1166079220.000000, \"gdp_md_est\": 3297000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"3. Emerging region: BRIC\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"IN\", \"iso_a3\": \"IND\", \"iso_n3\": \"356\", \"un_a3\": \"356\", \"wb_a2\": \"IN\", \"wb_a3\": \"IND\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"IND\", \"adm0_a3_us\": \"IND\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Southern Asia\", \"region_wb\": \"South Asia\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 77.837450799474567, 35.494009507787766 ], [ 78.912268914713223, 34.321936346975789 ], [ 78.811086460285736, 33.506198025032418 ], [ 79.208891636068586, 32.994394639613716 ], [ 79.17612877799553, 32.483779812137712 ], [ 78.458446486326011, 32.618164374312727 ], [ 78.738894484374015, 31.515906073527063 ], [ 79.721366815107103, 30.882714748654731 ], [ 81.111256138029319, 30.183480943313402 ], [ 80.476721225917402, 29.729865220655341 ], [ 80.088424513676273, 28.79447011974014 ], [ 81.057202589852025, 28.416095282499043 ], [ 81.999987420584972, 27.925479234319994 ], [ 83.304248895199549, 27.364505723575562 ], [ 84.675017938173795, 27.234901231387536 ], [ 85.251778598983378, 26.726198431906344 ], [ 86.024392938179176, 26.630984605408571 ], [ 87.227471958366294, 26.397898057556077 ], [ 88.06023766474982, 26.414615383402491 ], [ 88.174804315140918, 26.810405178325951 ], [ 88.043132765661227, 27.445818589786825 ], [ 88.12044070836987, 27.876541652939594 ], [ 88.730325962278556, 28.086864732367516 ], [ 88.814248488320558, 27.299315904239364 ], [ 88.83564253128938, 27.098966376243762 ], [ 89.744527622438852, 26.719402981059957 ], [ 90.373274774134075, 26.875724188742879 ], [ 91.217512648486434, 26.808648179628022 ], [ 92.033483514375092, 26.838310451763562 ], [ 92.103711785859744, 27.452614040633208 ], [ 91.696656528696678, 27.771741848251665 ], [ 92.503118931043645, 27.896876329046449 ], [ 93.413347609432691, 28.640629380807226 ], [ 94.565990431702943, 29.277438055939985 ], [ 95.40480228066464, 29.031716620392132 ], [ 96.117678664131034, 29.452802028922466 ], [ 96.586590610747493, 28.83097951915434 ], [ 96.248833449287787, 28.411030992134442 ], [ 97.327113885490036, 28.261582749946339 ], [ 97.402561476636137, 27.882536119085444 ], [ 97.051988559968095, 27.699058946233151 ], [ 97.133999058015306, 27.083773505149964 ], [ 96.419365675850969, 27.264589341739224 ], [ 95.124767694074961, 26.573572089132298 ], [ 95.155153436262594, 26.001307277932085 ], [ 94.603249139385383, 25.162495428970402 ], [ 94.55265791217164, 24.675238348890336 ], [ 94.106741977925068, 23.85074087167348 ], [ 93.325187615942795, 24.078556423432204 ], [ 93.286326938859276, 23.043658352139005 ], [ 93.060294224014626, 22.703110663335568 ], [ 93.166127557348375, 22.278459580977103 ], [ 92.672720981825563, 22.041238918541254 ], [ 92.146034783906813, 23.627498684172593 ], [ 91.869927606171316, 23.624346421802784 ], [ 91.706475050832111, 22.985263983649187 ], [ 91.158963250699728, 23.503526923104388 ], [ 91.467729933643682, 24.072639471934792 ], [ 91.915092807994426, 24.130413723237112 ], [ 92.376201613334814, 24.976692816664965 ], [ 91.79959598182208, 25.147431748957317 ], [ 90.872210727912119, 25.132600612889547 ], [ 89.920692580121852, 25.269749864192178 ], [ 89.832480910199621, 25.965082098895479 ], [ 89.35509402868729, 26.014407253518073 ], [ 88.563049350949768, 26.446525580342723 ], [ 88.209789259802506, 25.768065700782714 ], [ 88.931553989623083, 25.238692328384776 ], [ 88.306372511756024, 24.866079413344206 ], [ 88.084422235062419, 24.501657212821925 ], [ 88.699940220090923, 24.23371491138856 ], [ 88.529769728553788, 23.631141872649167 ], [ 88.876311883503092, 22.87914642993783 ], [ 89.031961297566227, 22.055708319582976 ], [ 88.888765903685425, 21.690588487224748 ], [ 88.208497348995223, 21.703171698487807 ], [ 86.975704380240273, 21.495561631755209 ], [ 87.033168572948867, 20.743307806882413 ], [ 86.499351027373791, 20.151638495356607 ], [ 85.060265740909699, 19.4785788029711 ], [ 83.941005893900012, 18.302009792549725 ], [ 83.189217156917849, 17.671221421778981 ], [ 82.192792189465919, 17.016636053937816 ], [ 82.191241896497189, 16.556664130107848 ], [ 81.692719354177484, 16.310219224507904 ], [ 80.791999139330144, 15.951972357644493 ], [ 80.324895867843878, 15.89918488205835 ], [ 80.025069207686442, 15.136414903214147 ], [ 80.233273553390404, 13.835770778859981 ], [ 80.286293572921863, 13.006260687710835 ], [ 79.862546828128501, 12.056215318240888 ], [ 79.857999302086824, 10.35727509199711 ], [ 79.340511509115998, 10.30885427493962 ], [ 78.885345493489183, 9.546135972527722 ], [ 79.189719679688295, 9.216543687370148 ], [ 78.277940708330505, 8.933046779816934 ], [ 77.941165399084355, 8.252959092639742 ], [ 77.539897902337941, 7.965534776232332 ], [ 76.592978957021671, 8.89927623131419 ], [ 76.130061476551077, 10.299630031775521 ], [ 75.746467319648502, 11.308250637248307 ], [ 75.396101108709587, 11.781245022015824 ], [ 74.864815708316826, 12.741935736537897 ], [ 74.616717156883539, 13.992582912649681 ], [ 74.443859490867226, 14.617221787977698 ], [ 73.534199253233396, 15.990652167214961 ], [ 73.119909295549434, 17.928570054592498 ], [ 72.820909458308648, 19.208233547436166 ], [ 72.824475132136797, 20.419503282141534 ], [ 72.630533481745402, 21.356009426351008 ], [ 71.175273471973952, 20.757441311114235 ], [ 70.470458611945105, 20.877330634031384 ], [ 69.164130080038831, 22.0892980005727 ], [ 69.644927606082405, 22.450774644454338 ], [ 69.349596795534353, 22.84317963306269 ], [ 68.176645135373406, 23.691965033456711 ], [ 68.842599318318776, 24.359133612560939 ], [ 71.043240187468228, 24.3565239527302 ], [ 70.844699334602836, 25.215102037043518 ], [ 70.282873162725593, 25.72222870533983 ], [ 70.168926629522019, 26.491871649678842 ], [ 69.514392938113133, 26.940965684511372 ], [ 70.616496209601934, 27.989196275335868 ], [ 71.777665643200322, 27.913180243434525 ], [ 72.823751662084703, 28.961591701772054 ], [ 73.450638462217427, 29.97641347911987 ], [ 74.421380242820277, 30.979814764931177 ], [ 74.405928989565012, 31.692639471965279 ], [ 75.258641798813215, 32.271105455040498 ], [ 74.451559279278712, 32.764899603805503 ], [ 74.104293654277342, 33.441473293586853 ], [ 73.749948358051967, 34.317698879527853 ], [ 74.240202671204969, 34.748887030571254 ], [ 75.757060988268336, 34.504922593721318 ], [ 76.871721632804025, 34.653544012992739 ], [ 77.837450799474567, 35.494009507787766 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Ireland\", \"sov_a3\": \"IRL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Ireland\", \"adm0_a3\": \"IRL\", \"geou_dif\": 0.000000, \"geounit\": \"Ireland\", \"gu_a3\": \"IRL\", \"su_dif\": 0.000000, \"subunit\": \"Ireland\", \"su_a3\": \"IRL\", \"brk_diff\": 0.000000, \"name\": \"Ireland\", \"name_long\": \"Ireland\", \"brk_a3\": \"IRL\", \"brk_name\": \"Ireland\", \"brk_group\": null, \"abbrev\": \"Ire.\", \"postal\": \"IRL\", \"formal_en\": \"Ireland\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Ireland\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 2.000000, \"pop_est\": 4203200.000000, \"gdp_md_est\": 188400.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"IE\", \"iso_a3\": \"IRL\", \"iso_n3\": \"372\", \"un_a3\": \"372\", \"wb_a2\": \"IE\", \"wb_a3\": \"IRL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"IRL\", \"adm0_a3_us\": \"IRL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -6.197884894220991, 53.867565009163364 ], [ -6.032985398777611, 53.153164170944351 ], [ -6.788856573910849, 52.260117906292336 ], [ -8.561616583683559, 51.669301255899356 ], [ -9.977085740590269, 51.820454820353078 ], [ -9.166282517930782, 52.864628811242682 ], [ -9.688524542672454, 53.881362616585299 ], [ -8.327987433292009, 54.664518947968631 ], [ -7.572167934591064, 55.131622219454869 ], [ -7.366030646178785, 54.595840969452723 ], [ -7.572167934591064, 54.059956366586 ], [ -6.953730231138067, 54.073702297575636 ], [ -6.197884894220991, 53.867565009163364 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Iran\", \"sov_a3\": \"IRN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Iran\", \"adm0_a3\": \"IRN\", \"geou_dif\": 0.000000, \"geounit\": \"Iran\", \"gu_a3\": \"IRN\", \"su_dif\": 0.000000, \"subunit\": \"Iran\", \"su_a3\": \"IRN\", \"brk_diff\": 0.000000, \"name\": \"Iran\", \"name_long\": \"Iran\", \"brk_a3\": \"IRN\", \"brk_name\": \"Iran\", \"brk_group\": null, \"abbrev\": \"Iran\", \"postal\": \"IRN\", \"formal_en\": \"Islamic Republic of Iran\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Iran, Islamic Rep.\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 13.000000, \"pop_est\": 66429284.000000, \"gdp_md_est\": 841700.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"IR\", \"iso_a3\": \"IRN\", \"iso_n3\": \"364\", \"un_a3\": \"364\", \"wb_a2\": \"IR\", \"wb_a3\": \"IRN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"IRN\", \"adm0_a3_us\": \"IRN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Southern Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 53.921597934795557, 37.198918361961262 ], [ 54.800303989486565, 37.392420762678185 ], [ 55.511578403551908, 37.964117133123167 ], [ 56.180374790273333, 37.93512665460743 ], [ 56.619366082592819, 38.121394354803485 ], [ 57.330433790928986, 38.02922943781094 ], [ 58.436154412678206, 37.522309475243802 ], [ 59.234761997316809, 37.412987982730343 ], [ 60.377637973883878, 36.527383124328367 ], [ 61.123070509694145, 36.491597194966246 ], [ 61.210817091725744, 35.650072333309225 ], [ 60.803193393807447, 34.404101874319863 ], [ 60.528429803311582, 33.676446031218006 ], [ 60.963700392506006, 33.528832302376259 ], [ 60.536077915290775, 32.981268825811568 ], [ 60.863654819588966, 32.182919623334428 ], [ 60.941944614511129, 31.548074652628753 ], [ 61.699314406180832, 31.379506130492672 ], [ 61.781221551363444, 30.735850328081238 ], [ 60.874248488208792, 29.829238999952608 ], [ 61.36930870956494, 29.303276272085924 ], [ 61.771868117118629, 28.699333807890799 ], [ 62.727830438085988, 28.25964488373539 ], [ 62.755425652929858, 27.378923448184988 ], [ 63.233897739520302, 27.217047024030709 ], [ 63.316631707619592, 26.756532497661667 ], [ 61.87418745305655, 26.239974880472104 ], [ 61.49736290878419, 25.078237006118499 ], [ 59.616134067630846, 25.380156561783778 ], [ 58.525761346272304, 25.609961656185732 ], [ 57.397251417882387, 25.739902045183641 ], [ 56.970765822177555, 26.966106268821363 ], [ 56.492138706290206, 27.143304755150197 ], [ 55.723710158110066, 26.964633490501043 ], [ 54.715089552637266, 26.480657863871514 ], [ 53.493096958231348, 26.812368882753049 ], [ 52.483597853409613, 27.580849107365495 ], [ 51.520762566947418, 27.865689602158298 ], [ 50.852948032439542, 28.814520575469388 ], [ 50.115008579311585, 30.147772528599717 ], [ 49.576850213423995, 29.985715236932407 ], [ 48.941333449098551, 30.317090359004037 ], [ 48.567971225789755, 29.926778265903522 ], [ 48.014568312376099, 30.452456773392598 ], [ 48.004698113808324, 30.985137437457244 ], [ 47.685286085812272, 30.984853217079632 ], [ 47.849203729042102, 31.70917593029867 ], [ 47.334661492711909, 32.469155381799112 ], [ 46.109361606639318, 33.017287299119005 ], [ 45.416690708199042, 33.967797756479584 ], [ 45.648459507028093, 34.748137722303014 ], [ 46.151787957550937, 35.093258775364291 ], [ 46.0763403664048, 35.677383327775487 ], [ 45.420618117053209, 35.977545884742824 ], [ 44.77267, 37.17045 ], [ 44.225755649600529, 37.971584377589352 ], [ 44.421402622257546, 38.281281236314541 ], [ 44.109225294782341, 39.428136298168099 ], [ 44.793989699081948, 39.713002631177048 ], [ 44.952688022650307, 39.33576467544637 ], [ 45.457721795438772, 38.874139105783058 ], [ 46.143623081248819, 38.741201483712217 ], [ 46.505719842317973, 38.770605373686294 ], [ 47.685079380083096, 39.508363959301221 ], [ 48.060095249225242, 39.58223541926246 ], [ 48.355529412637878, 39.288764960276907 ], [ 48.010744256386481, 38.794014797514521 ], [ 48.634375441284817, 38.270377509100967 ], [ 48.883249139202491, 38.320245266262617 ], [ 49.199612257693339, 37.582874253889884 ], [ 50.14777143738462, 37.374566555321337 ], [ 50.842354363819709, 36.872814235983398 ], [ 52.264024692601424, 36.700421657857703 ], [ 53.825789829326418, 36.965030829408235 ], [ 53.921597934795557, 37.198918361961262 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Iraq\", \"sov_a3\": \"IRQ\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Iraq\", \"adm0_a3\": \"IRQ\", \"geou_dif\": 0.000000, \"geounit\": \"Iraq\", \"gu_a3\": \"IRQ\", \"su_dif\": 0.000000, \"subunit\": \"Iraq\", \"su_a3\": \"IRQ\", \"brk_diff\": 0.000000, \"name\": \"Iraq\", \"name_long\": \"Iraq\", \"brk_a3\": \"IRQ\", \"brk_name\": \"Iraq\", \"brk_group\": null, \"abbrev\": \"Iraq\", \"postal\": \"IRQ\", \"formal_en\": \"Republic of Iraq\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Iraq\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 1.000000, \"pop_est\": 31129225.000000, \"gdp_md_est\": 103900.000000, \"pop_year\": -99.000000, \"lastcensus\": 1997.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"IQ\", \"iso_a3\": \"IRQ\", \"iso_n3\": \"368\", \"un_a3\": \"368\", \"wb_a2\": \"IQ\", \"wb_a3\": \"IRQ\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"IRQ\", \"adm0_a3_us\": \"IRQ\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 45.420618117053209, 35.977545884742824 ], [ 46.0763403664048, 35.677383327775487 ], [ 46.151787957550937, 35.093258775364291 ], [ 45.648459507028093, 34.748137722303014 ], [ 45.416690708199042, 33.967797756479584 ], [ 46.109361606639318, 33.017287299119005 ], [ 47.334661492711909, 32.469155381799112 ], [ 47.849203729042102, 31.70917593029867 ], [ 47.685286085812272, 30.984853217079632 ], [ 48.004698113808324, 30.985137437457244 ], [ 48.014568312376099, 30.452456773392598 ], [ 48.567971225789755, 29.926778265903522 ], [ 47.974519077349896, 29.975819200148504 ], [ 47.302622104690961, 30.059069932570722 ], [ 46.568713413281756, 29.09902517345229 ], [ 44.709498732284743, 29.178891099559383 ], [ 41.889980910007836, 31.190008653278369 ], [ 40.399994337736246, 31.889991766887935 ], [ 39.195468377444968, 32.161008816042667 ], [ 38.792340529136084, 33.378686428352225 ], [ 41.006158888519934, 34.419372260062119 ], [ 41.383965285005814, 35.628316555314356 ], [ 41.289707472505455, 36.358814602192268 ], [ 41.837064243340961, 36.605853786763575 ], [ 42.349591098811771, 37.229872544904097 ], [ 42.779125604021829, 37.385263576805755 ], [ 43.942258742047301, 37.25622752537295 ], [ 44.293451775902867, 37.001514390606303 ], [ 44.772699008977696, 37.170444647768434 ], [ 45.420618117053209, 35.977545884742824 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Iceland\", \"sov_a3\": \"ISL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Iceland\", \"adm0_a3\": \"ISL\", \"geou_dif\": 0.000000, \"geounit\": \"Iceland\", \"gu_a3\": \"ISL\", \"su_dif\": 0.000000, \"subunit\": \"Iceland\", \"su_a3\": \"ISL\", \"brk_diff\": 0.000000, \"name\": \"Iceland\", \"name_long\": \"Iceland\", \"brk_a3\": \"ISL\", \"brk_name\": \"Iceland\", \"brk_group\": null, \"abbrev\": \"Iceland\", \"postal\": \"IS\", \"formal_en\": \"Republic of Iceland\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Iceland\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 9.000000, \"pop_est\": 306694.000000, \"gdp_md_est\": 12710.000000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"IS\", \"iso_a3\": \"ISL\", \"iso_n3\": \"352\", \"un_a3\": \"352\", \"wb_a2\": \"IS\", \"wb_a3\": \"ISL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ISL\", \"adm0_a3_us\": \"ISL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 7.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -14.508695441129234, 66.455892239031428 ], [ -14.739637417041607, 65.808748277440301 ], [ -13.60973222497981, 65.126671047619865 ], [ -14.909833746794902, 64.364081936288684 ], [ -17.794438035543422, 63.678749091233854 ], [ -18.656245896874992, 63.49638296167582 ], [ -19.97275468594276, 63.643634955491528 ], [ -22.762971971110158, 63.960178941495386 ], [ -21.778484259517683, 64.402115790455511 ], [ -23.955043911219111, 64.891129869233495 ], [ -22.184402635170358, 65.084968166760305 ], [ -22.227423265053332, 65.378593655042735 ], [ -24.326184047939336, 65.611189276788465 ], [ -23.650514695723089, 66.262519029395222 ], [ -22.134922451250887, 66.41046865504687 ], [ -20.57628373867955, 65.732112128351432 ], [ -19.05684160000159, 66.276600857194765 ], [ -17.798623826559052, 65.993853257909777 ], [ -16.167818976292125, 66.526792304135867 ], [ -14.508695441129234, 66.455892239031428 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Israel\", \"sov_a3\": \"ISR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Israel\", \"adm0_a3\": \"ISR\", \"geou_dif\": 0.000000, \"geounit\": \"Israel\", \"gu_a3\": \"ISR\", \"su_dif\": 0.000000, \"subunit\": \"Israel\", \"su_a3\": \"ISR\", \"brk_diff\": 0.000000, \"name\": \"Israel\", \"name_long\": \"Israel\", \"brk_a3\": \"ISR\", \"brk_name\": \"Israel\", \"brk_group\": null, \"abbrev\": \"Isr.\", \"postal\": \"IS\", \"formal_en\": \"State of Israel\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Israel\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 9.000000, \"pop_est\": 7233701.000000, \"gdp_md_est\": 201400.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"IL\", \"iso_a3\": \"ISR\", \"iso_n3\": \"376\", \"un_a3\": \"376\", \"wb_a2\": \"IL\", \"wb_a3\": \"ISR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ISR\", \"adm0_a3_us\": \"ISR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 35.719918247222751, 32.709192409794866 ], [ 35.545665317534542, 32.393992011030576 ], [ 35.183930291491436, 32.532510687788943 ], [ 34.974640740709333, 31.866582343059722 ], [ 35.22589155451243, 31.754341132121766 ], [ 34.970506626125996, 31.61677846936081 ], [ 34.927408481594568, 31.353435370401414 ], [ 35.397560662586045, 31.489086005167582 ], [ 35.420918409981965, 31.100065822874356 ], [ 34.92260257339143, 29.501326198844524 ], [ 34.265433383935687, 31.219360866820153 ], [ 34.556371697738911, 31.548823960896996 ], [ 34.488107130681357, 31.605538845337321 ], [ 34.752587111151172, 32.072926337201167 ], [ 34.955417107896778, 32.827376410446377 ], [ 35.098457472480675, 33.080539252244265 ], [ 35.126052687324545, 33.090900376918782 ], [ 35.460709262846706, 33.089040025356283 ], [ 35.552796665190812, 33.264274807258019 ], [ 35.821100701650238, 33.277426459276299 ], [ 35.836396925608625, 32.868123277308513 ], [ 35.700797967274752, 32.716013698857381 ], [ 35.719918247222751, 32.709192409794866 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Italy\", \"sov_a3\": \"ITA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Italy\", \"adm0_a3\": \"ITA\", \"geou_dif\": 0.000000, \"geounit\": \"Italy\", \"gu_a3\": \"ITA\", \"su_dif\": 0.000000, \"subunit\": \"Italy\", \"su_a3\": \"ITA\", \"brk_diff\": 0.000000, \"name\": \"Italy\", \"name_long\": \"Italy\", \"brk_a3\": \"ITA\", \"brk_name\": \"Italy\", \"brk_group\": null, \"abbrev\": \"Italy\", \"postal\": \"I\", \"formal_en\": \"Italian Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Italy\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 7.000000, \"mapcolor9\": 8.000000, \"mapcolor13\": 7.000000, \"pop_est\": 58126212.000000, \"gdp_md_est\": 1823000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2012.000000, \"gdp_year\": -99.000000, \"economy\": \"1. Developed region: G7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"IT\", \"iso_a3\": \"ITA\", \"iso_n3\": \"380\", \"un_a3\": \"380\", \"wb_a2\": \"IT\", \"wb_a3\": \"ITA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ITA\", \"adm0_a3_us\": \"ITA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 15.520376010813834, 38.231155096991472 ], [ 15.160242954171736, 37.44404551853782 ], [ 15.309897902089006, 37.1342194687318 ], [ 15.099988234119451, 36.619987290995397 ], [ 14.335228712632016, 36.996630967754754 ], [ 13.82673261887993, 37.1045313583802 ], [ 12.431003859108813, 37.612949937483819 ], [ 12.570943637755136, 38.12638113051969 ], [ 13.741156447004585, 38.034965521795357 ], [ 14.76124922044616, 38.143873602850505 ], [ 15.520376010813834, 38.231155096991472 ] ] ], [ [ [ 9.210011834356266, 41.209991360024219 ], [ 9.809975213264977, 40.500008856766101 ], [ 9.669518670295673, 39.177376410471794 ], [ 9.214817742559489, 39.240473334300134 ], [ 8.806935662479731, 38.906617743478478 ], [ 8.428302443077115, 39.171847032216618 ], [ 8.388253208050941, 40.378310858718805 ], [ 8.15999840661766, 40.950007229163788 ], [ 8.709990675500109, 40.899984442705232 ], [ 9.210011834356266, 41.209991360024219 ] ] ], [ [ [ 12.376485223040845, 46.767559109069879 ], [ 13.806475457421556, 46.509306138691187 ], [ 13.698109978905478, 46.016778062517375 ], [ 13.937630242578336, 45.591015936864665 ], [ 13.141606479554298, 45.736691799495418 ], [ 12.328581170306308, 45.381778062514854 ], [ 12.383874952858605, 44.885374253919082 ], [ 12.261453484759159, 44.600482082694015 ], [ 12.589237094786483, 44.091365871754476 ], [ 13.526905958722494, 43.587727362637906 ], [ 14.029820997787027, 42.76100779883248 ], [ 15.142569614327954, 41.955139675456905 ], [ 15.926191033601896, 41.961315009115737 ], [ 16.169897088290412, 41.740294908203424 ], [ 15.889345737377795, 41.541082261718202 ], [ 16.785001661860576, 41.179605617836586 ], [ 17.519168735431208, 40.877143459632236 ], [ 18.376687452882578, 40.355624904942658 ], [ 18.480247023195403, 40.168866278639825 ], [ 18.293385044028099, 39.810774441073249 ], [ 17.738380161213286, 40.277671006830303 ], [ 16.869595981522338, 40.442234605463852 ], [ 16.448743116937322, 39.79540070246648 ], [ 17.171489698971499, 39.424699815420723 ], [ 17.052840610429342, 38.902871202137305 ], [ 16.635088331781844, 38.843572496082402 ], [ 16.100960727613057, 37.985898749334183 ], [ 15.684086948314501, 37.90884918878703 ], [ 15.687962680736319, 38.214592800441864 ], [ 15.891981235424709, 38.750942491199226 ], [ 16.109332309644316, 38.964547024077689 ], [ 15.718813510814641, 39.544072374014945 ], [ 15.413612501698822, 40.04835683853517 ], [ 14.998495721098237, 40.172948716790927 ], [ 14.70326826341477, 40.604550279292624 ], [ 14.060671827865264, 40.786347968095441 ], [ 13.627985060285397, 41.188287258461656 ], [ 12.88808190273042, 41.253089504555618 ], [ 12.10668257004491, 41.704534817057407 ], [ 11.191906365614187, 42.355425319989678 ], [ 10.511947869517797, 42.931462510747224 ], [ 10.200028924204048, 43.920006822274615 ], [ 9.702488234097814, 44.03627879493132 ], [ 8.888946160526871, 44.36633616797954 ], [ 8.428560825238577, 44.231228135752417 ], [ 7.850766635783202, 43.767147935555244 ], [ 7.435184767291844, 43.693844916349178 ], [ 7.549596388386163, 44.127901109384823 ], [ 7.007562290076663, 44.254766750661389 ], [ 6.749955275101712, 45.028517971367592 ], [ 7.096652459347837, 45.333098863295874 ], [ 6.802355177445662, 45.70857982032868 ], [ 6.843592970414562, 45.991146552100673 ], [ 7.273850945676685, 45.776947740250762 ], [ 7.755992058959833, 45.824490057959281 ], [ 8.316629672894379, 46.163642483090854 ], [ 8.489952426801295, 46.00515086525175 ], [ 8.966305779667834, 46.036931871111165 ], [ 9.182881707403112, 46.440214748716983 ], [ 9.922836541390353, 46.314899400409189 ], [ 10.363378126678668, 46.483571275409844 ], [ 10.442701450246602, 46.893546250997446 ], [ 11.048555942436508, 46.751358547546403 ], [ 11.164827915093326, 46.941579494812743 ], [ 12.153088006243081, 47.115393174826437 ], [ 12.376485223040845, 46.767559109069879 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Jamaica\", \"sov_a3\": \"JAM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Jamaica\", \"adm0_a3\": \"JAM\", \"geou_dif\": 0.000000, \"geounit\": \"Jamaica\", \"gu_a3\": \"JAM\", \"su_dif\": 0.000000, \"subunit\": \"Jamaica\", \"su_a3\": \"JAM\", \"brk_diff\": 0.000000, \"name\": \"Jamaica\", \"name_long\": \"Jamaica\", \"brk_a3\": \"JAM\", \"brk_name\": \"Jamaica\", \"brk_group\": null, \"abbrev\": \"Jam.\", \"postal\": \"J\", \"formal_en\": \"Jamaica\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Jamaica\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 10.000000, \"pop_est\": 2825928.000000, \"gdp_md_est\": 20910.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"JM\", \"iso_a3\": \"JAM\", \"iso_n3\": \"388\", \"un_a3\": \"388\", \"wb_a2\": \"JM\", \"wb_a3\": \"JAM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"JAM\", \"adm0_a3_us\": \"JAM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Caribbean\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -77.569600796199211, 18.490525417550487 ], [ -76.896618618462128, 18.400866807524082 ], [ -76.365359056285541, 18.160700588447597 ], [ -76.199658576141644, 17.886867173732966 ], [ -76.9025614081757, 17.868237819891746 ], [ -77.206341315403478, 17.701116237859821 ], [ -77.766022915340614, 17.861597398342241 ], [ -78.33771928578561, 18.225967922432233 ], [ -78.217726610003879, 18.454532782459196 ], [ -77.797364671525628, 18.524218451404778 ], [ -77.569600796199211, 18.490525417550487 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Jordan\", \"sov_a3\": \"JOR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Jordan\", \"adm0_a3\": \"JOR\", \"geou_dif\": 0.000000, \"geounit\": \"Jordan\", \"gu_a3\": \"JOR\", \"su_dif\": 0.000000, \"subunit\": \"Jordan\", \"su_a3\": \"JOR\", \"brk_diff\": 0.000000, \"name\": \"Jordan\", \"name_long\": \"Jordan\", \"brk_a3\": \"JOR\", \"brk_name\": \"Jordan\", \"brk_group\": null, \"abbrev\": \"Jord.\", \"postal\": \"J\", \"formal_en\": \"Hashemite Kingdom of Jordan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Jordan\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 4.000000, \"pop_est\": 6342948.000000, \"gdp_md_est\": 31610.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"JO\", \"iso_a3\": \"JOR\", \"iso_n3\": \"400\", \"un_a3\": \"400\", \"wb_a2\": \"JO\", \"wb_a3\": \"JOR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"JOR\", \"adm0_a3_us\": \"JOR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 35.545665317534542, 32.393992011030576 ], [ 35.719918247222751, 32.709192409794866 ], [ 36.834062127435544, 32.312937526980775 ], [ 38.792340529136084, 33.378686428352225 ], [ 39.195468377444968, 32.161008816042667 ], [ 39.004885695152552, 32.010216986614978 ], [ 37.002165561681011, 31.508412990844747 ], [ 37.998848911294374, 30.508499864213135 ], [ 37.668119744626381, 30.338665269485901 ], [ 37.503581984209035, 30.003776150018407 ], [ 36.74052778498725, 29.86528331147619 ], [ 36.50121422704359, 29.505253607698705 ], [ 36.068940870922063, 29.197494615184453 ], [ 34.956037225084259, 29.356554673778845 ], [ 34.92260257339143, 29.501326198844524 ], [ 35.420918409981965, 31.100065822874356 ], [ 35.397560662586045, 31.489086005167582 ], [ 35.545251906076203, 31.782504787720839 ], [ 35.545665317534542, 32.393992011030576 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Japan\", \"sov_a3\": \"JPN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Japan\", \"adm0_a3\": \"JPN\", \"geou_dif\": 0.000000, \"geounit\": \"Japan\", \"gu_a3\": \"JPN\", \"su_dif\": 0.000000, \"subunit\": \"Japan\", \"su_a3\": \"JPN\", \"brk_diff\": 0.000000, \"name\": \"Japan\", \"name_long\": \"Japan\", \"brk_a3\": \"JPN\", \"brk_name\": \"Japan\", \"brk_group\": null, \"abbrev\": \"Japan\", \"postal\": \"J\", \"formal_en\": \"Japan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Japan\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 4.000000, \"pop_est\": 127078679.000000, \"gdp_md_est\": 4329000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"1. Developed region: G7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"JP\", \"iso_a3\": \"JPN\", \"iso_n3\": \"392\", \"un_a3\": \"392\", \"wb_a2\": \"JP\", \"wb_a3\": \"JPN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"JPN\", \"adm0_a3_us\": \"JPN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 134.638428176003885, 34.149233710256425 ], [ 134.766379022358507, 33.80633474378368 ], [ 134.203415968970859, 33.201177883429636 ], [ 133.792950067276507, 33.521985175097598 ], [ 133.280268182508877, 33.289570420864948 ], [ 133.014858026257883, 32.70456736910478 ], [ 132.363114862192703, 32.98938202568138 ], [ 132.371176385630207, 33.463642483040076 ], [ 132.924372593314814, 34.060298570282043 ], [ 133.492968377822223, 33.944620876596701 ], [ 133.904106073136376, 34.364931138642618 ], [ 134.638428176003885, 34.149233710256425 ] ] ], [ [ [ 140.976387567305295, 37.142074286440163 ], [ 140.599769728762141, 36.343983466124541 ], [ 140.77407433488267, 35.842877102190243 ], [ 140.253279250245129, 35.13811391859366 ], [ 138.975527785396224, 34.667600002576108 ], [ 137.217598911691226, 34.606285915661857 ], [ 135.792983026268899, 33.464805202766627 ], [ 135.120982700745429, 33.84907115328906 ], [ 135.079434849182718, 34.59654490817482 ], [ 133.340316196831992, 34.375938218720762 ], [ 132.156770868051325, 33.904933376596517 ], [ 130.98614464734348, 33.885761420216284 ], [ 132.00003624891005, 33.149992377244615 ], [ 131.332790155157369, 31.450354519164847 ], [ 130.686317987185959, 31.029579169228242 ], [ 130.202419875204981, 31.418237616495418 ], [ 130.447676222862157, 32.319474595665724 ], [ 129.814691603718899, 32.610309556604392 ], [ 129.408463169472583, 33.29605581311759 ], [ 130.353935174684665, 33.6041507024417 ], [ 130.878450962447147, 34.232742824840045 ], [ 131.88422936414392, 34.749713853487918 ], [ 132.617672967662514, 35.43339305270942 ], [ 134.608300815977799, 35.731617743465819 ], [ 135.67753787652893, 35.527134100886826 ], [ 136.723830601142453, 37.304984239240383 ], [ 137.390611607004502, 36.827390651998826 ], [ 138.857602166906275, 37.827484646143461 ], [ 139.426404657142911, 38.215962225897641 ], [ 140.054790073812086, 39.438807481436385 ], [ 139.883379347899876, 40.563312486323696 ], [ 140.30578250545372, 41.195005194659558 ], [ 141.368973423426695, 41.378559882160289 ], [ 141.914263136970504, 39.991616115878685 ], [ 141.884600864834994, 39.180864569651504 ], [ 140.959489373945786, 38.17400096287659 ], [ 140.976387567305295, 37.142074286440163 ] ] ], [ [ [ 143.910161981379503, 44.174099839853739 ], [ 144.613426548439662, 43.960882880217525 ], [ 145.320825230083102, 44.384732977875444 ], [ 145.543137241802782, 43.262088324550604 ], [ 144.059661899999895, 42.988358262700558 ], [ 143.183849725517319, 41.995214748699198 ], [ 141.611490920172486, 42.678790595056086 ], [ 141.067286411706647, 41.584593817707997 ], [ 139.955106235921079, 41.569555975911044 ], [ 139.817543573159952, 42.563758856774399 ], [ 140.312087030193226, 43.333272610032651 ], [ 141.380548944260028, 43.388824774746496 ], [ 141.67195234595394, 44.772125352551484 ], [ 141.96764489152801, 45.551483466161358 ], [ 143.142870314709825, 44.510358384776964 ], [ 143.910161981379503, 44.174099839853739 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Kazakhstan\", \"sov_a3\": \"KAZ\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Kazakhstan\", \"adm0_a3\": \"KAZ\", \"geou_dif\": 0.000000, \"geounit\": \"Kazakhstan\", \"gu_a3\": \"KAZ\", \"su_dif\": 0.000000, \"subunit\": \"Kazakhstan\", \"su_a3\": \"KAZ\", \"brk_diff\": 0.000000, \"name\": \"Kazakhstan\", \"name_long\": \"Kazakhstan\", \"brk_a3\": \"KAZ\", \"brk_name\": \"Kazakhstan\", \"brk_group\": null, \"abbrev\": \"Kaz.\", \"postal\": \"KZ\", \"formal_en\": \"Republic of Kazakhstan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Kazakhstan\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 1.000000, \"pop_est\": 15399437.000000, \"gdp_md_est\": 175800.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"KZ\", \"iso_a3\": \"KAZ\", \"iso_n3\": \"398\", \"un_a3\": \"398\", \"wb_a2\": \"KZ\", \"wb_a3\": \"KAZ\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"KAZ\", \"adm0_a3_us\": \"KAZ\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Central Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 70.962314894499286, 42.266154283205537 ], [ 70.388964878220804, 42.081307684897524 ], [ 69.070027296835235, 41.384244289712342 ], [ 68.632482944620051, 40.668680731766869 ], [ 68.259895867795649, 40.662324530594901 ], [ 67.98585574735182, 41.135990708982206 ], [ 66.714047072216601, 41.168443508461564 ], [ 66.510648634715722, 41.987644151368556 ], [ 66.023391554635623, 41.994646307944038 ], [ 66.098012322865202, 42.997660020513081 ], [ 64.900824415959335, 43.728080552742654 ], [ 63.185786981056594, 43.650074978198006 ], [ 62.013300408786279, 43.504476630215663 ], [ 61.058319940032504, 44.405816962250583 ], [ 60.239971958258479, 44.784036770194746 ], [ 58.689989048095811, 45.500013739598728 ], [ 58.50312706892845, 45.586804307632974 ], [ 55.928917270741181, 44.995858466159177 ], [ 55.968191359283026, 41.308641669269377 ], [ 55.455251092353819, 41.25985911718584 ], [ 54.755345493392667, 42.043971462566617 ], [ 54.079417759014973, 42.324109402020838 ], [ 52.944293247291739, 42.116034247397579 ], [ 52.502459751196284, 41.78331553808647 ], [ 52.446339145727222, 42.027150783855575 ], [ 52.692112257707265, 42.443895372073371 ], [ 52.501426222550322, 42.792297878585202 ], [ 51.342427199108215, 43.132974758469345 ], [ 50.891291945200237, 44.031033637053781 ], [ 50.339129266161365, 44.284015611338475 ], [ 50.305642938036272, 44.609835516938915 ], [ 51.278503452363225, 44.514854234386462 ], [ 51.316899041556042, 45.245998236667901 ], [ 52.167389764215727, 45.408391425145112 ], [ 53.040876499245201, 45.259046535821767 ], [ 53.220865512917726, 46.234645901059935 ], [ 53.042736850807785, 46.853006089864493 ], [ 52.042022739475613, 46.804636949239239 ], [ 51.191945428274266, 47.048704738953916 ], [ 50.034083286342479, 46.608989976582222 ], [ 49.101160000000107, 46.399330000000134 ], [ 48.593241001180502, 46.561034247415478 ], [ 48.694733514201744, 47.075628160177928 ], [ 48.057253045449272, 47.743752753279523 ], [ 47.315231154170249, 47.715847479841955 ], [ 46.46644575377627, 48.39415233010493 ], [ 47.043671502476514, 49.152038886097614 ], [ 46.751596307162743, 49.356005764353768 ], [ 47.549480421749308, 50.454698391311126 ], [ 48.57784142435753, 49.874759629915673 ], [ 48.702381626181023, 50.605128485712839 ], [ 50.766648390512159, 51.692762356159903 ], [ 52.328723585830971, 51.718652248738124 ], [ 54.532878452376224, 51.026239732459317 ], [ 55.716940545479815, 50.621716620478537 ], [ 56.777961053296565, 51.043551337277052 ], [ 58.36329064314674, 51.063653469438577 ], [ 59.642282342370606, 50.545442206415714 ], [ 59.932807244715491, 50.842194118851864 ], [ 61.337424350840934, 50.799070136104262 ], [ 61.588003371024172, 51.272658799843214 ], [ 59.967533807215545, 51.960420437215703 ], [ 60.92726850774028, 52.447548326215042 ], [ 60.739993117114579, 52.719986477257748 ], [ 61.699986199800605, 52.979996446334269 ], [ 60.978066440683165, 53.664993394579142 ], [ 61.436591424409073, 54.006264553434789 ], [ 65.178533563095925, 54.354227810272107 ], [ 65.666875848253994, 54.601266994843456 ], [ 68.169100376258825, 54.970391750704323 ], [ 69.068166945272878, 55.385250149143531 ], [ 70.865266554655136, 55.169733588270105 ], [ 71.180131056609412, 54.133285224008262 ], [ 72.224150018202181, 54.376655381886735 ], [ 73.508516066384402, 54.035616766976602 ], [ 73.425678745420441, 53.489810289109755 ], [ 74.384845005190073, 53.54686107036008 ], [ 76.891100294913429, 54.490524400441927 ], [ 76.525179477854749, 54.177003485727141 ], [ 77.800915561844249, 53.404414984747575 ], [ 80.035559523441691, 50.864750881547252 ], [ 80.568446893235489, 51.38833649352847 ], [ 81.945985548839928, 50.812195949906368 ], [ 83.38300377801238, 51.069182847693924 ], [ 83.935114780618846, 50.889245510453577 ], [ 84.416377394553081, 50.311399644565824 ], [ 85.115559523462025, 50.117302964877638 ], [ 85.541269972682471, 49.692858588248157 ], [ 86.829356723989633, 49.826674709668168 ], [ 87.359970330762678, 49.214980780629162 ], [ 86.598776483103393, 48.549181626980612 ], [ 85.768232863308299, 48.455750637396989 ], [ 85.720483839870724, 47.452969468773119 ], [ 85.164290399113384, 47.000955715516113 ], [ 83.180483839860472, 47.330031236350862 ], [ 82.458925815769135, 45.539649563166506 ], [ 81.947070753918126, 45.317027492853242 ], [ 79.966106398441411, 44.917516994804657 ], [ 80.86620649610137, 43.180362046881044 ], [ 80.180150180994303, 42.920067857426943 ], [ 80.25999026888536, 42.349999294599115 ], [ 79.643645460940149, 42.496682847659656 ], [ 79.142177361979805, 42.856092434249604 ], [ 77.65839196158322, 42.960685533208334 ], [ 76.000353631498569, 42.988022365890629 ], [ 75.636964959622105, 42.877899888676779 ], [ 74.212865838522589, 43.298339341803512 ], [ 73.645303582660915, 43.09127187760987 ], [ 73.489757521462366, 42.50089447689129 ], [ 71.844638299450651, 42.845395412765185 ], [ 71.186280552052267, 42.704292914392227 ], [ 70.962314894499286, 42.266154283205537 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Kenya\", \"sov_a3\": \"KEN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Kenya\", \"adm0_a3\": \"KEN\", \"geou_dif\": 0.000000, \"geounit\": \"Kenya\", \"gu_a3\": \"KEN\", \"su_dif\": 0.000000, \"subunit\": \"Kenya\", \"su_a3\": \"KEN\", \"brk_diff\": 0.000000, \"name\": \"Kenya\", \"name_long\": \"Kenya\", \"brk_a3\": \"KEN\", \"brk_name\": \"Kenya\", \"brk_group\": null, \"abbrev\": \"Ken.\", \"postal\": \"KE\", \"formal_en\": \"Republic of Kenya\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Kenya\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 3.000000, \"pop_est\": 39002772.000000, \"gdp_md_est\": 61510.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"KE\", \"iso_a3\": \"KEN\", \"iso_n3\": \"404\", \"un_a3\": \"404\", \"wb_a2\": \"KE\", \"wb_a3\": \"KEN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"KEN\", \"adm0_a3_us\": \"KEN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 40.993, -0.85829 ], [ 41.58513, -1.68325 ], [ 40.88477, -2.08255 ], [ 40.63785, -2.49979 ], [ 40.26304, -2.57309 ], [ 40.12119, -3.27768 ], [ 39.80006, -3.68116 ], [ 39.60489, -4.34653 ], [ 39.20222, -4.67677 ], [ 37.7669, -3.67712 ], [ 37.69869, -3.09699 ], [ 34.07262, -1.05982 ], [ 33.903711197104528, -0.95 ], [ 33.893568969666944, 0.109813537861896 ], [ 34.18, 0.515 ], [ 34.6721, 1.17694 ], [ 35.03599, 1.90584 ], [ 34.59607, 3.05374 ], [ 34.47913, 3.5556 ], [ 34.005, 4.249884947362048 ], [ 34.620196267853878, 4.847122742081988 ], [ 35.298007118232981, 5.506 ], [ 35.817447662353516, 5.338232082790797 ], [ 35.817447662353516, 4.77696566346189 ], [ 36.159078632855646, 4.447864127672769 ], [ 36.855093238008124, 4.447864127672769 ], [ 38.120915, 3.598605 ], [ 38.43697, 3.58851 ], [ 38.67114, 3.61607 ], [ 38.89251, 3.50074 ], [ 39.559384258765853, 3.42206 ], [ 39.85494, 3.83879 ], [ 40.76848, 4.25702 ], [ 41.1718, 3.91909 ], [ 41.855083092643973, 3.918911920483727 ], [ 40.98105, 2.78452 ], [ 40.993, -0.85829 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Kyrgyzstan\", \"sov_a3\": \"KGZ\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Kyrgyzstan\", \"adm0_a3\": \"KGZ\", \"geou_dif\": 0.000000, \"geounit\": \"Kyrgyzstan\", \"gu_a3\": \"KGZ\", \"su_dif\": 0.000000, \"subunit\": \"Kyrgyzstan\", \"su_a3\": \"KGZ\", \"brk_diff\": 0.000000, \"name\": \"Kyrgyzstan\", \"name_long\": \"Kyrgyzstan\", \"brk_a3\": \"KGZ\", \"brk_name\": \"Kyrgyzstan\", \"brk_group\": null, \"abbrev\": \"Kgz.\", \"postal\": \"KG\", \"formal_en\": \"Kyrgyz Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Kyrgyz Republic\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 7.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 6.000000, \"pop_est\": 5431747.000000, \"gdp_md_est\": 11610.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"KG\", \"iso_a3\": \"KGZ\", \"iso_n3\": \"417\", \"un_a3\": \"417\", \"wb_a2\": \"KG\", \"wb_a3\": \"KGZ\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"KGZ\", \"adm0_a3_us\": \"KGZ\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Central Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 70.962314894499144, 42.266154283205495 ], [ 71.186280552052125, 42.704292914392141 ], [ 71.844638299450594, 42.8453954127651 ], [ 73.489757521462366, 42.500894476891318 ], [ 73.645303582660915, 43.091271877609827 ], [ 74.212865838522561, 43.29833934180337 ], [ 75.63696495962202, 42.87789988867668 ], [ 76.000353631498456, 42.988022365890671 ], [ 77.65839196158322, 42.960685533208263 ], [ 79.142177361979776, 42.856092434249518 ], [ 79.643645460940121, 42.496682847659528 ], [ 80.259990268885304, 42.349999294599058 ], [ 80.119430373051387, 42.123940741538249 ], [ 78.54366092317531, 41.582242540038692 ], [ 78.187196893225973, 41.185315863604806 ], [ 76.904484490877081, 41.066485907549648 ], [ 76.526368035797447, 40.427946071935118 ], [ 75.467827996730705, 40.56207225194867 ], [ 74.776862420556057, 40.366425279291633 ], [ 73.822243686828301, 39.893973497063186 ], [ 73.960013055318427, 39.660008449861735 ], [ 73.675379266254794, 39.431236884105601 ], [ 71.784693637992007, 39.27946320246437 ], [ 70.549161818325615, 39.604197902986499 ], [ 69.46488691597753, 39.526683254548701 ], [ 69.559609816368521, 40.103211371412982 ], [ 70.648018833299972, 39.935753892571171 ], [ 71.01419803252017, 40.244365546218233 ], [ 71.77487511585656, 40.145844428053778 ], [ 73.05541710804917, 40.866033026689465 ], [ 71.870114780570475, 41.392900092121266 ], [ 71.157858514291604, 41.143587144529121 ], [ 70.42002241402821, 41.519998277343142 ], [ 71.259247674448233, 42.167710679689463 ], [ 70.962314894499144, 42.266154283205495 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Cambodia\", \"sov_a3\": \"KHM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Cambodia\", \"adm0_a3\": \"KHM\", \"geou_dif\": 0.000000, \"geounit\": \"Cambodia\", \"gu_a3\": \"KHM\", \"su_dif\": 0.000000, \"subunit\": \"Cambodia\", \"su_a3\": \"KHM\", \"brk_diff\": 0.000000, \"name\": \"Cambodia\", \"name_long\": \"Cambodia\", \"brk_a3\": \"KHM\", \"brk_name\": \"Cambodia\", \"brk_group\": null, \"abbrev\": \"Camb.\", \"postal\": \"KH\", \"formal_en\": \"Kingdom of Cambodia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Cambodia\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 5.000000, \"pop_est\": 14494293.000000, \"gdp_md_est\": 27940.000000, \"pop_year\": -99.000000, \"lastcensus\": 2008.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"KH\", \"iso_a3\": \"KHM\", \"iso_n3\": \"116\", \"un_a3\": \"116\", \"wb_a2\": \"KH\", \"wb_a3\": \"KHM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"KHM\", \"adm0_a3_us\": \"KHM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 103.497279901139706, 10.632555446815928 ], [ 103.090689731867258, 11.153660590047165 ], [ 102.584932489026698, 12.186594956913282 ], [ 102.348099399833018, 13.394247341358223 ], [ 102.988422072361629, 14.225721136934467 ], [ 104.281418084736615, 14.416743068901367 ], [ 105.218776890078885, 14.273211778210694 ], [ 106.043946160915525, 13.881091009979956 ], [ 106.496373325630884, 14.570583807834282 ], [ 107.382727492301086, 14.202440904186972 ], [ 107.61454796756243, 13.535530707244206 ], [ 107.49140302941089, 12.337205918827948 ], [ 105.81052371625313, 11.567614650921229 ], [ 106.249670037869464, 10.961811835163587 ], [ 105.199914992292349, 10.889309800658097 ], [ 104.334334751403475, 10.48654368737523 ], [ 103.497279901139706, 10.632555446815928 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"South Korea\", \"sov_a3\": \"KOR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"South Korea\", \"adm0_a3\": \"KOR\", \"geou_dif\": 0.000000, \"geounit\": \"South Korea\", \"gu_a3\": \"KOR\", \"su_dif\": 0.000000, \"subunit\": \"South Korea\", \"su_a3\": \"KOR\", \"brk_diff\": 0.000000, \"name\": \"Korea\", \"name_long\": \"Republic of Korea\", \"brk_a3\": \"KOR\", \"brk_name\": \"Republic of Korea\", \"brk_group\": null, \"abbrev\": \"S.K.\", \"postal\": \"KR\", \"formal_en\": \"Republic of Korea\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Korea, Rep.\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 5.000000, \"pop_est\": 48508972.000000, \"gdp_md_est\": 1335000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"4. Emerging region: MIKT\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"KR\", \"iso_a3\": \"KOR\", \"iso_n3\": \"410\", \"un_a3\": \"410\", \"wb_a2\": \"KR\", \"wb_a3\": \"KOR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"KOR\", \"adm0_a3_us\": \"KOR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 5.000000, \"long_len\": 17.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 128.349716424676615, 38.61224294692785 ], [ 129.212919549680066, 37.432392483055949 ], [ 129.460449660358165, 36.784189154602828 ], [ 129.4683044780665, 35.632140611303953 ], [ 129.091376580929591, 35.082484239231434 ], [ 128.185850457879098, 34.890377102186392 ], [ 127.386519403188402, 34.475673733044118 ], [ 126.485747511908755, 34.39004588473648 ], [ 126.373919712429142, 34.934560451795946 ], [ 126.559231398627787, 35.684540513647903 ], [ 126.117397902532289, 36.725484727519259 ], [ 126.860143263863392, 36.893924058574626 ], [ 126.174758742376241, 37.74968577732804 ], [ 126.237338901881756, 37.840377916000278 ], [ 126.683719924018931, 37.804772854151182 ], [ 127.07330854706737, 38.2561148137884 ], [ 127.780035435091008, 38.304535630845891 ], [ 128.205745884311455, 38.370397243801889 ], [ 128.349716424676615, 38.61224294692785 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Kosovo\", \"sov_a3\": \"KOS\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Kosovo\", \"adm0_a3\": \"KOS\", \"geou_dif\": 0.000000, \"geounit\": \"Kosovo\", \"gu_a3\": \"KOS\", \"su_dif\": 0.000000, \"subunit\": \"Kosovo\", \"su_a3\": \"KOS\", \"brk_diff\": 1.000000, \"name\": \"Kosovo\", \"name_long\": \"Kosovo\", \"brk_a3\": \"B57\", \"brk_name\": \"Kosovo\", \"brk_group\": null, \"abbrev\": \"Kos.\", \"postal\": \"KO\", \"formal_en\": \"Republic of Kosovo\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": \"Self admin.; Claimed by Serbia\", \"name_sort\": \"Kosovo\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 11.000000, \"pop_est\": 1804838.000000, \"gdp_md_est\": 5352.000000, \"pop_year\": -99.000000, \"lastcensus\": 1981.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"-99\", \"iso_a3\": \"-99\", \"iso_n3\": \"-99\", \"un_a3\": \"-099\", \"wb_a2\": \"KV\", \"wb_a3\": \"KSV\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SRB\", \"adm0_a3_us\": \"KOS\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 20.76216, 42.05186 ], [ 20.717310000000111, 41.84711 ], [ 20.59023, 41.85541 ], [ 20.52295, 42.21787 ], [ 20.28374, 42.320250000000101 ], [ 20.0707, 42.58863 ], [ 20.25758, 42.812750000000108 ], [ 20.49679, 42.88469 ], [ 20.63508, 43.21671 ], [ 20.81448, 43.27205 ], [ 20.95651, 43.13094 ], [ 21.143395, 43.06868500000013 ], [ 21.27421, 42.90959 ], [ 21.43866, 42.86255 ], [ 21.63302, 42.67717 ], [ 21.77505, 42.6827 ], [ 21.66292, 42.43922 ], [ 21.54332, 42.320250000000101 ], [ 21.576635989402121, 42.245224397061861 ], [ 21.352700000000141, 42.2068 ], [ 20.76216, 42.05186 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Kuwait\", \"sov_a3\": \"KWT\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Kuwait\", \"adm0_a3\": \"KWT\", \"geou_dif\": 0.000000, \"geounit\": \"Kuwait\", \"gu_a3\": \"KWT\", \"su_dif\": 0.000000, \"subunit\": \"Kuwait\", \"su_a3\": \"KWT\", \"brk_diff\": 0.000000, \"name\": \"Kuwait\", \"name_long\": \"Kuwait\", \"brk_a3\": \"KWT\", \"brk_name\": \"Kuwait\", \"brk_group\": null, \"abbrev\": \"Kwt.\", \"postal\": \"KW\", \"formal_en\": \"State of Kuwait\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Kuwait\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 2.000000, \"pop_est\": 2691158.000000, \"gdp_md_est\": 149100.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"KW\", \"iso_a3\": \"KWT\", \"iso_n3\": \"414\", \"un_a3\": \"414\", \"wb_a2\": \"KW\", \"wb_a3\": \"KWT\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"KWT\", \"adm0_a3_us\": \"KWT\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 47.974519077349896, 29.975819200148504 ], [ 48.18318851094449, 29.534476630159762 ], [ 48.093943312376418, 29.306299343375002 ], [ 48.416094191283946, 28.55200429942667 ], [ 47.708850538937384, 28.526062730416143 ], [ 47.459821811722833, 29.002519436147224 ], [ 46.568713413281756, 29.09902517345229 ], [ 47.302622104690961, 30.059069932570722 ], [ 47.974519077349896, 29.975819200148504 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Laos\", \"sov_a3\": \"LAO\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Laos\", \"adm0_a3\": \"LAO\", \"geou_dif\": 0.000000, \"geounit\": \"Laos\", \"gu_a3\": \"LAO\", \"su_dif\": 0.000000, \"subunit\": \"Laos\", \"su_a3\": \"LAO\", \"brk_diff\": 0.000000, \"name\": \"Lao PDR\", \"name_long\": \"Lao PDR\", \"brk_a3\": \"LAO\", \"brk_name\": \"Laos\", \"brk_group\": null, \"abbrev\": \"Laos\", \"postal\": \"LA\", \"formal_en\": \"Lao People's Democratic Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Lao PDR\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 9.000000, \"pop_est\": 6834942.000000, \"gdp_md_est\": 13980.000000, \"pop_year\": -99.000000, \"lastcensus\": 2005.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LA\", \"iso_a3\": \"LAO\", \"iso_n3\": \"418\", \"un_a3\": \"418\", \"wb_a2\": \"LA\", \"wb_a3\": \"LAO\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LAO\", \"adm0_a3_us\": \"LAO\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 105.218776890078885, 14.273211778210694 ], [ 105.544338413517693, 14.723933620660418 ], [ 105.589038527450157, 15.570316066952858 ], [ 104.779320509868796, 16.441864935771449 ], [ 104.716947056092494, 17.428858954330082 ], [ 103.956476678485302, 18.240954087796879 ], [ 103.20019209189374, 18.309632066312773 ], [ 102.998705682387708, 17.961694647691601 ], [ 102.413004998791621, 17.932781683824288 ], [ 102.113591750092482, 18.109101670804165 ], [ 101.059547560635167, 17.51249725999449 ], [ 101.035931431077771, 18.408928330961615 ], [ 101.282014601651696, 19.462584947176765 ], [ 100.606293573003157, 19.508344427971224 ], [ 100.548881056726884, 20.109237982661128 ], [ 100.115987583417848, 20.417849636308187 ], [ 100.329101190189533, 20.786121731036232 ], [ 101.180005324307544, 21.436572984294028 ], [ 101.270025669359967, 21.201651923095184 ], [ 101.803119744882935, 21.174366766845068 ], [ 101.652017856861519, 22.318198757409547 ], [ 102.170435825613581, 22.464753119389304 ], [ 102.754896274834664, 21.675137233969465 ], [ 103.203861118586445, 20.766562201413748 ], [ 104.435000441508052, 20.758733221921531 ], [ 104.822573683697101, 19.886641750563882 ], [ 104.183387892678937, 19.624668077060221 ], [ 103.896532017026715, 19.265180975821806 ], [ 105.094598423281525, 18.66697459561108 ], [ 105.925762160264028, 17.485315456608959 ], [ 106.556007928495688, 16.604283962464805 ], [ 107.312705926545604, 15.908538316303179 ], [ 107.564525181103903, 15.202173163305559 ], [ 107.382727492301086, 14.202440904186972 ], [ 106.496373325630884, 14.570583807834282 ], [ 106.043946160915525, 13.881091009979956 ], [ 105.218776890078885, 14.273211778210694 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Lebanon\", \"sov_a3\": \"LBN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Lebanon\", \"adm0_a3\": \"LBN\", \"geou_dif\": 0.000000, \"geounit\": \"Lebanon\", \"gu_a3\": \"LBN\", \"su_dif\": 0.000000, \"subunit\": \"Lebanon\", \"su_a3\": \"LBN\", \"brk_diff\": 0.000000, \"name\": \"Lebanon\", \"name_long\": \"Lebanon\", \"brk_a3\": \"LBN\", \"brk_name\": \"Lebanon\", \"brk_group\": null, \"abbrev\": \"Leb.\", \"postal\": \"LB\", \"formal_en\": \"Lebanese Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Lebanon\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 12.000000, \"pop_est\": 4017095.000000, \"gdp_md_est\": 44060.000000, \"pop_year\": -99.000000, \"lastcensus\": 1970.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LB\", \"iso_a3\": \"LBN\", \"iso_n3\": \"422\", \"un_a3\": \"422\", \"wb_a2\": \"LB\", \"wb_a3\": \"LBN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LBN\", \"adm0_a3_us\": \"LBN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": 4.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 35.821100701650238, 33.277426459276299 ], [ 35.552796665190812, 33.264274807258019 ], [ 35.460709262846706, 33.089040025356283 ], [ 35.126052687324545, 33.090900376918782 ], [ 35.482206658680127, 33.905450140919442 ], [ 35.979592319489399, 34.610058295219133 ], [ 35.998402540843642, 34.644914048800004 ], [ 36.448194207512103, 34.593935248344067 ], [ 36.611750115715893, 34.201788641897181 ], [ 36.066460402172055, 33.82491242119255 ], [ 35.821100701650238, 33.277426459276299 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Liberia\", \"sov_a3\": \"LBR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Liberia\", \"adm0_a3\": \"LBR\", \"geou_dif\": 0.000000, \"geounit\": \"Liberia\", \"gu_a3\": \"LBR\", \"su_dif\": 0.000000, \"subunit\": \"Liberia\", \"su_a3\": \"LBR\", \"brk_diff\": 0.000000, \"name\": \"Liberia\", \"name_long\": \"Liberia\", \"brk_a3\": \"LBR\", \"brk_name\": \"Liberia\", \"brk_group\": null, \"abbrev\": \"Liberia\", \"postal\": \"LR\", \"formal_en\": \"Republic of Liberia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Liberia\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 9.000000, \"pop_est\": 3441790.000000, \"gdp_md_est\": 1526.000000, \"pop_year\": -99.000000, \"lastcensus\": 2008.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LR\", \"iso_a3\": \"LBR\", \"iso_n3\": \"430\", \"un_a3\": \"430\", \"wb_a2\": \"LR\", \"wb_a3\": \"LBR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LBR\", \"adm0_a3_us\": \"LBR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 7.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -7.71215938966975, 4.364565944837722 ], [ -7.974107224957251, 4.355755113131963 ], [ -9.004793667018674, 4.8324185245922 ], [ -9.913420376006684, 5.593560695819207 ], [ -10.765383876986645, 6.140710760925558 ], [ -11.438779466182055, 6.785916856305747 ], [ -11.199801805048279, 7.105845648624737 ], [ -11.146704270868383, 7.396706447779536 ], [ -10.695594855176481, 7.939464016141088 ], [ -10.23009355309128, 8.406205552601293 ], [ -10.016566534861255, 8.428503933135232 ], [ -9.755342169625834, 8.541055202666925 ], [ -9.337279832384581, 7.928534450711354 ], [ -9.40334815106975, 7.526905218938907 ], [ -9.208786383490846, 7.313920803247953 ], [ -8.926064622422004, 7.309037380396376 ], [ -8.722123582382125, 7.71167430259851 ], [ -8.439298468448698, 7.686042792181738 ], [ -8.48544552248535, 7.39520783124307 ], [ -8.385451626000574, 6.911800645368743 ], [ -8.60288021486862, 6.46756419517166 ], [ -8.311347622094019, 6.193033148621083 ], [ -7.993692592795881, 6.126189683451543 ], [ -7.570152553731688, 5.707352199725904 ], [ -7.539715135111763, 5.313345241716519 ], [ -7.635368211284031, 5.188159084489456 ], [ -7.71215938966975, 4.364565944837722 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Libya\", \"sov_a3\": \"LBY\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Libya\", \"adm0_a3\": \"LBY\", \"geou_dif\": 0.000000, \"geounit\": \"Libya\", \"gu_a3\": \"LBY\", \"su_dif\": 0.000000, \"subunit\": \"Libya\", \"su_a3\": \"LBY\", \"brk_diff\": 0.000000, \"name\": \"Libya\", \"name_long\": \"Libya\", \"brk_a3\": \"LBY\", \"brk_name\": \"Libya\", \"brk_group\": null, \"abbrev\": \"Libya\", \"postal\": \"LY\", \"formal_en\": \"Libya\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Libya\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 11.000000, \"pop_est\": 6310434.000000, \"gdp_md_est\": 88830.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LY\", \"iso_a3\": \"LBY\", \"iso_n3\": \"434\", \"un_a3\": \"434\", \"wb_a2\": \"LY\", \"wb_a3\": \"LBY\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LBY\", \"adm0_a3_us\": \"LBY\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Northern Africa\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 14.8513, 22.862950000000126 ], [ 14.143870883855243, 22.491288967371133 ], [ 13.581424594790462, 23.040506089769281 ], [ 11.999505649471701, 23.471668402596435 ], [ 11.560669386449035, 24.097909247325617 ], [ 10.771363559622955, 24.562532050061748 ], [ 10.303846876678449, 24.379313259370974 ], [ 9.948261346078027, 24.936953640232616 ], [ 9.910692579801776, 25.365454616796796 ], [ 9.31941084151822, 26.094324856057483 ], [ 9.716285841519664, 26.512206325785655 ], [ 9.629056023811074, 27.140953477481048 ], [ 9.756128370816782, 27.688258571884205 ], [ 9.683884718472882, 28.144173895779318 ], [ 9.859997999723475, 28.959989732371071 ], [ 9.805634392952356, 29.424638373323376 ], [ 9.482139926805417, 30.307556057246188 ], [ 9.970017124072967, 30.539324856075382 ], [ 10.056575148161699, 30.961831366493527 ], [ 9.950225050505196, 31.376069647745283 ], [ 10.636901482799487, 31.761420803345686 ], [ 10.944789666394513, 32.081814683555365 ], [ 11.432253452203781, 32.368903103152832 ], [ 11.488787469131012, 33.136995754523241 ], [ 12.66331, 32.79278 ], [ 13.08326, 32.87882 ], [ 13.91868, 32.71196 ], [ 15.24563, 32.26508 ], [ 15.71394, 31.37626 ], [ 16.61162, 31.18218 ], [ 18.02109, 30.76357 ], [ 19.08641, 30.26639 ], [ 19.57404, 30.52582 ], [ 20.05335, 30.98576 ], [ 19.82033, 31.751790000000142 ], [ 20.13397, 32.2382 ], [ 20.85452, 32.7068 ], [ 21.54298, 32.8432 ], [ 22.89576, 32.63858 ], [ 23.2368, 32.19149 ], [ 23.609130000000107, 32.18726 ], [ 23.9275, 32.01667 ], [ 24.92114, 31.89936 ], [ 25.16482, 31.56915 ], [ 24.80287, 31.08929 ], [ 24.95762, 30.6616 ], [ 24.70007, 30.04419 ], [ 25.000000000000114, 29.238654529533562 ], [ 25.000000000000114, 25.682499996361003 ], [ 25.000000000000114, 22.0 ], [ 25.000000000000114, 20.00304 ], [ 23.850000000000136, 20.0 ], [ 23.837660000000142, 19.580470000000105 ], [ 19.84926, 21.49509 ], [ 15.86085, 23.40972 ], [ 14.8513, 22.862950000000126 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Sri Lanka\", \"sov_a3\": \"LKA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Sri Lanka\", \"adm0_a3\": \"LKA\", \"geou_dif\": 0.000000, \"geounit\": \"Sri Lanka\", \"gu_a3\": \"LKA\", \"su_dif\": 0.000000, \"subunit\": \"Sri Lanka\", \"su_a3\": \"LKA\", \"brk_diff\": 0.000000, \"name\": \"Sri Lanka\", \"name_long\": \"Sri Lanka\", \"brk_a3\": \"LKA\", \"brk_name\": \"Sri Lanka\", \"brk_group\": null, \"abbrev\": \"Sri L.\", \"postal\": \"LK\", \"formal_en\": \"Democratic Socialist Republic of Sri Lanka\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Sri Lanka\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 9.000000, \"pop_est\": 21324791.000000, \"gdp_md_est\": 91870.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LK\", \"iso_a3\": \"LKA\", \"iso_n3\": \"144\", \"un_a3\": \"144\", \"wb_a2\": \"LK\", \"wb_a3\": \"LKA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LKA\", \"adm0_a3_us\": \"LKA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Southern Asia\", \"region_wb\": \"South Asia\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 81.787959018891399, 7.523055324733164 ], [ 81.637322218760588, 6.481775214051922 ], [ 81.218019647144331, 6.197141424988288 ], [ 80.348356968104412, 5.968369859232155 ], [ 79.872468703128533, 6.76346344647493 ], [ 79.695166863935128, 8.200843410673386 ], [ 80.147800734379643, 9.824077663609557 ], [ 80.838817986986555, 9.268426825391188 ], [ 81.304319289071771, 8.56420624433369 ], [ 81.787959018891399, 7.523055324733164 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Lesotho\", \"sov_a3\": \"LSO\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Lesotho\", \"adm0_a3\": \"LSO\", \"geou_dif\": 0.000000, \"geounit\": \"Lesotho\", \"gu_a3\": \"LSO\", \"su_dif\": 0.000000, \"subunit\": \"Lesotho\", \"su_a3\": \"LSO\", \"brk_diff\": 0.000000, \"name\": \"Lesotho\", \"name_long\": \"Lesotho\", \"brk_a3\": \"LSO\", \"brk_name\": \"Lesotho\", \"brk_group\": null, \"abbrev\": \"Les.\", \"postal\": \"LS\", \"formal_en\": \"Kingdom of Lesotho\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Lesotho\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 8.000000, \"pop_est\": 2130819.000000, \"gdp_md_est\": 3293.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LS\", \"iso_a3\": \"LSO\", \"iso_n3\": \"426\", \"un_a3\": \"426\", \"wb_a2\": \"LS\", \"wb_a3\": \"LSO\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LSO\", \"adm0_a3_us\": \"LSO\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Southern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 28.978262566857243, -28.955596612261711 ], [ 29.325166456832591, -29.257386976846256 ], [ 29.018415154748027, -29.743765557577369 ], [ 28.848399692507741, -30.070050551068256 ], [ 28.29106937023991, -30.2262167294543 ], [ 28.107204624145425, -30.545732110314951 ], [ 27.749397006956485, -30.645105889612225 ], [ 26.999261915807637, -29.875953871379984 ], [ 27.532511020627478, -29.24271087007536 ], [ 28.074338413207784, -28.851468601193588 ], [ 28.541700066855498, -28.647501722937569 ], [ 28.978262566857243, -28.955596612261711 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Lithuania\", \"sov_a3\": \"LTU\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Lithuania\", \"adm0_a3\": \"LTU\", \"geou_dif\": 0.000000, \"geounit\": \"Lithuania\", \"gu_a3\": \"LTU\", \"su_dif\": 0.000000, \"subunit\": \"Lithuania\", \"su_a3\": \"LTU\", \"brk_diff\": 0.000000, \"name\": \"Lithuania\", \"name_long\": \"Lithuania\", \"brk_a3\": \"LTU\", \"brk_name\": \"Lithuania\", \"brk_group\": null, \"abbrev\": \"Lith.\", \"postal\": \"LT\", \"formal_en\": \"Republic of Lithuania\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Lithuania\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 9.000000, \"pop_est\": 3555179.000000, \"gdp_md_est\": 63330.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LT\", \"iso_a3\": \"LTU\", \"iso_n3\": \"440\", \"un_a3\": \"440\", \"wb_a2\": \"LT\", \"wb_a3\": \"LTU\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LTU\", \"adm0_a3_us\": \"LTU\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 22.731098667092652, 54.327536932993326 ], [ 22.651051873472539, 54.582740993866736 ], [ 22.757763706155259, 54.85657440858138 ], [ 22.315723504330577, 55.015298570365864 ], [ 21.268448927503467, 55.190481675835315 ], [ 21.055800408622417, 56.031076361711065 ], [ 22.201156853939494, 56.33780182557949 ], [ 23.878263787539964, 56.273671373105273 ], [ 24.86068444184076, 56.37252838807963 ], [ 25.000934279080894, 56.164530748104838 ], [ 25.533046502390334, 56.100296942766036 ], [ 26.494331495883756, 55.615106919977634 ], [ 26.588279249790389, 55.167175604871673 ], [ 25.768432651479799, 54.846962592175089 ], [ 25.536353794056993, 54.282423407602529 ], [ 24.450683628037037, 53.905702216194754 ], [ 23.484127638449849, 53.912497667041137 ], [ 23.243987257589509, 54.220566718149144 ], [ 22.731098667092652, 54.327536932993326 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Luxembourg\", \"sov_a3\": \"LUX\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Luxembourg\", \"adm0_a3\": \"LUX\", \"geou_dif\": 0.000000, \"geounit\": \"Luxembourg\", \"gu_a3\": \"LUX\", \"su_dif\": 0.000000, \"subunit\": \"Luxembourg\", \"su_a3\": \"LUX\", \"brk_diff\": 0.000000, \"name\": \"Luxembourg\", \"name_long\": \"Luxembourg\", \"brk_a3\": \"LUX\", \"brk_name\": \"Luxembourg\", \"brk_group\": null, \"abbrev\": \"Lux.\", \"postal\": \"L\", \"formal_en\": \"Grand Duchy of Luxembourg\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Luxembourg\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 7.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 7.000000, \"pop_est\": 491775.000000, \"gdp_md_est\": 39370.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LU\", \"iso_a3\": \"LUX\", \"iso_n3\": \"442\", \"un_a3\": \"442\", \"wb_a2\": \"LU\", \"wb_a3\": \"LUX\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LUX\", \"adm0_a3_us\": \"LUX\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Western Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": 5.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 6.043073357781111, 50.128051662794235 ], [ 6.242751092156993, 49.902225653678727 ], [ 6.186320428094177, 49.463802802114515 ], [ 5.897759230176405, 49.442667141307027 ], [ 5.674051954784829, 49.529483547557504 ], [ 5.782417433300907, 50.09032786722122 ], [ 6.043073357781111, 50.128051662794235 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Latvia\", \"sov_a3\": \"LVA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Latvia\", \"adm0_a3\": \"LVA\", \"geou_dif\": 0.000000, \"geounit\": \"Latvia\", \"gu_a3\": \"LVA\", \"su_dif\": 0.000000, \"subunit\": \"Latvia\", \"su_a3\": \"LVA\", \"brk_diff\": 0.000000, \"name\": \"Latvia\", \"name_long\": \"Latvia\", \"brk_a3\": \"LVA\", \"brk_name\": \"Latvia\", \"brk_group\": null, \"abbrev\": \"Lat.\", \"postal\": \"LV\", \"formal_en\": \"Republic of Latvia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Latvia\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 7.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 13.000000, \"pop_est\": 2231503.000000, \"gdp_md_est\": 38860.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"LV\", \"iso_a3\": \"LVA\", \"iso_n3\": \"428\", \"un_a3\": \"428\", \"wb_a2\": \"LV\", \"wb_a3\": \"LVA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"LVA\", \"adm0_a3_us\": \"LVA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 21.055800408622417, 56.031076361711065 ], [ 21.090423618257972, 56.783872789122938 ], [ 21.581866489353672, 57.411870632549935 ], [ 22.524341261492879, 57.753374335350763 ], [ 23.318452996522097, 57.006236477274868 ], [ 24.120729607853431, 57.025692654032767 ], [ 24.312862583114622, 57.793423570376973 ], [ 25.164593540149269, 57.970156968815189 ], [ 25.602809685984369, 57.847528794986573 ], [ 26.463532342237787, 57.47638865826633 ], [ 27.288184848751513, 57.474528306703832 ], [ 27.770015903440932, 57.244258124411232 ], [ 27.855282016722526, 56.759326483784292 ], [ 28.176709425577997, 56.169129950578814 ], [ 27.102459751094528, 55.783313707087686 ], [ 26.494331495883756, 55.615106919977634 ], [ 25.533046502390334, 56.100296942766036 ], [ 25.000934279080894, 56.164530748104838 ], [ 24.86068444184076, 56.37252838807963 ], [ 23.878263787539964, 56.273671373105273 ], [ 22.201156853939494, 56.33780182557949 ], [ 21.055800408622417, 56.031076361711065 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Morocco\", \"sov_a3\": \"MAR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Morocco\", \"adm0_a3\": \"MAR\", \"geou_dif\": 0.000000, \"geounit\": \"Morocco\", \"gu_a3\": \"MAR\", \"su_dif\": 0.000000, \"subunit\": \"Morocco\", \"su_a3\": \"MAR\", \"brk_diff\": 0.000000, \"name\": \"Morocco\", \"name_long\": \"Morocco\", \"brk_a3\": \"MAR\", \"brk_name\": \"Morocco\", \"brk_group\": null, \"abbrev\": \"Mor.\", \"postal\": \"MA\", \"formal_en\": \"Kingdom of Morocco\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Morocco\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 9.000000, \"pop_est\": 34859364.000000, \"gdp_md_est\": 136600.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MA\", \"iso_a3\": \"MAR\", \"iso_n3\": \"504\", \"un_a3\": \"504\", \"wb_a2\": \"MA\", \"wb_a3\": \"MAR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MAR\", \"adm0_a3_us\": \"MAR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Northern Africa\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -5.193863491222032, 35.755182196590852 ], [ -4.591006232105144, 35.330711981745651 ], [ -3.640056525070008, 35.399855048151977 ], [ -2.604305792644112, 35.179093329401127 ], [ -2.169913702798624, 35.168396307916709 ], [ -1.792985805661658, 34.527918606091305 ], [ -1.73345455566141, 33.919712836232122 ], [ -1.388049282222596, 32.864015000941379 ], [ -1.124551153966195, 32.651521511357203 ], [ -1.30789913573787, 32.262888902306031 ], [ -2.616604783529567, 32.094346218386164 ], [ -3.068980271812649, 31.724497992473289 ], [ -3.647497931320146, 31.637294012980817 ], [ -3.690441046554668, 30.896951605751156 ], [ -4.859646165374443, 30.501187649043885 ], [ -5.242129278982787, 30.000443020135577 ], [ -6.060632290053746, 29.731699734001808 ], [ -7.059227667661901, 29.579228420524657 ], [ -8.674116176782832, 28.84128896739665 ], [ -8.665589565454837, 27.65642588959247 ], [ -8.817809007940525, 27.65642588959247 ], [ -8.817828334986643, 27.65642588959247 ], [ -8.794883999049034, 27.12069631602256 ], [ -9.413037482124508, 27.088476060488546 ], [ -9.735343390328751, 26.860944729107416 ], [ -10.189424200877454, 26.860944729107416 ], [ -10.551262579785259, 26.990807603456886 ], [ -11.39255489749695, 26.883423977154393 ], [ -11.718219773800342, 26.104091701760808 ], [ -12.030758836301658, 26.030866197203125 ], [ -12.50096269372537, 24.770116278578143 ], [ -13.891110398809047, 23.691009019459386 ], [ -14.221167771857154, 22.310163072188345 ], [ -14.630832688850944, 21.860939846274874 ], [ -14.750954555713406, 21.500600083903805 ], [ -17.002961798561074, 21.420734157796687 ], [ -17.020428432675772, 21.422310288981635 ], [ -16.973247849993186, 21.885744533774954 ], [ -16.58913692876763, 22.158234361250095 ], [ -16.261921759495664, 22.679339504481277 ], [ -16.326413946995899, 23.017768459560898 ], [ -15.982610642958065, 23.723358466074103 ], [ -15.426003790742186, 24.359133612561038 ], [ -15.089331834360735, 24.520260728446971 ], [ -14.824645148161693, 25.103532619725314 ], [ -14.800925665739669, 25.636264960222292 ], [ -14.439939947964831, 26.254418443297652 ], [ -13.773804897506466, 26.618892320252286 ], [ -13.139941779014293, 27.640147813420498 ], [ -13.121613369914712, 27.654147671719812 ], [ -12.618836635783111, 28.038185533148663 ], [ -11.688919236690765, 28.148643907172584 ], [ -10.900956997104402, 28.83214223888092 ], [ -10.399592251008642, 29.09858592377779 ], [ -9.564811163765626, 29.933573716749862 ], [ -9.814718390329176, 31.17773550060906 ], [ -9.434793260119363, 32.038096421836485 ], [ -9.300692918321829, 32.564679266890636 ], [ -8.65747636558504, 33.240245266242397 ], [ -7.654178432638219, 33.697064927702513 ], [ -6.91254411460136, 34.110476386037448 ], [ -6.244342006851411, 35.145865383437524 ], [ -5.929994269219833, 35.75998810479399 ], [ -5.193863491222032, 35.755182196590852 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Moldova\", \"sov_a3\": \"MDA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Moldova\", \"adm0_a3\": \"MDA\", \"geou_dif\": 0.000000, \"geounit\": \"Moldova\", \"gu_a3\": \"MDA\", \"su_dif\": 0.000000, \"subunit\": \"Moldova\", \"su_a3\": \"MDA\", \"brk_diff\": 0.000000, \"name\": \"Moldova\", \"name_long\": \"Moldova\", \"brk_a3\": \"MDA\", \"brk_name\": \"Moldova\", \"brk_group\": null, \"abbrev\": \"Mda.\", \"postal\": \"MD\", \"formal_en\": \"Republic of Moldova\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Moldova\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 12.000000, \"pop_est\": 4320748.000000, \"gdp_md_est\": 10670.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MD\", \"iso_a3\": \"MDA\", \"iso_n3\": \"498\", \"un_a3\": \"498\", \"wb_a2\": \"MD\", \"wb_a3\": \"MDA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MDA\", \"adm0_a3_us\": \"MDA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 26.619336785597795, 48.220726223333472 ], [ 26.857823520624805, 48.368210761094495 ], [ 27.522537469195157, 48.467119452501116 ], [ 28.259546746541844, 48.155562242213421 ], [ 28.670891147585166, 48.118148505234103 ], [ 29.122698195113031, 47.849095160506465 ], [ 29.050867954227328, 47.510226955752501 ], [ 29.415135125452736, 47.346645209332578 ], [ 29.559674106573112, 46.928582872091326 ], [ 29.908851759569302, 46.674360663431457 ], [ 29.838210076626297, 46.525325832701689 ], [ 30.024658644335375, 46.42393667254504 ], [ 29.759971958136394, 46.349987697935362 ], [ 29.170653924279886, 46.3792623968287 ], [ 29.072106967899291, 46.517677720722496 ], [ 28.862972446414062, 46.437889309263831 ], [ 28.933717482221624, 46.258830471372498 ], [ 28.659987420371579, 45.939986884131642 ], [ 28.485269402792767, 45.596907050145902 ], [ 28.233553501099042, 45.488283189468376 ], [ 28.054442986775399, 45.944586086605625 ], [ 28.160017937947714, 46.371562608417221 ], [ 28.128030226359044, 46.810476386088254 ], [ 27.551166212684848, 47.405117092470832 ], [ 27.233872918412743, 47.826770941756379 ], [ 26.924176059687568, 48.123264472030996 ], [ 26.619336785597795, 48.220726223333472 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Madagascar\", \"sov_a3\": \"MDG\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Madagascar\", \"adm0_a3\": \"MDG\", \"geou_dif\": 0.000000, \"geounit\": \"Madagascar\", \"gu_a3\": \"MDG\", \"su_dif\": 0.000000, \"subunit\": \"Madagascar\", \"su_a3\": \"MDG\", \"brk_diff\": 0.000000, \"name\": \"Madagascar\", \"name_long\": \"Madagascar\", \"brk_a3\": \"MDG\", \"brk_name\": \"Madagascar\", \"brk_group\": null, \"abbrev\": \"Mad.\", \"postal\": \"MG\", \"formal_en\": \"Republic of Madagascar\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Madagascar\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 3.000000, \"pop_est\": 20653556.000000, \"gdp_md_est\": 20130.000000, \"pop_year\": -99.000000, \"lastcensus\": 1993.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MG\", \"iso_a3\": \"MDG\", \"iso_n3\": \"450\", \"un_a3\": \"450\", \"wb_a2\": \"MG\", \"wb_a3\": \"MDG\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MDG\", \"adm0_a3_us\": \"MDG\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 49.543518914595751, -12.469832858940554 ], [ 49.808980747279094, -12.895284925999555 ], [ 50.056510857957164, -13.555761407121985 ], [ 50.217431268114069, -14.758788750876796 ], [ 50.476536899625529, -15.226512139550543 ], [ 50.377111443895956, -15.706069431219127 ], [ 50.200274692593183, -16.000263360256767 ], [ 49.860605503138679, -15.414252618066918 ], [ 49.672606642460863, -15.710203545802479 ], [ 49.863344354050156, -16.451036879138776 ], [ 49.774564243372708, -16.875042006093601 ], [ 49.498612094934117, -17.106035658438273 ], [ 49.435618523970305, -17.953064060134366 ], [ 49.041792433473944, -19.118781019774445 ], [ 48.548540887248009, -20.496888116134127 ], [ 47.930749139198667, -22.391501153251085 ], [ 47.547723423051309, -23.781958916928517 ], [ 47.095761346226595, -24.941629733990453 ], [ 46.282477654817086, -25.178462823184105 ], [ 45.409507684110451, -25.601434421493089 ], [ 44.833573846217554, -25.34610116953894 ], [ 44.039720493349762, -24.988345228782308 ], [ 43.763768344911171, -24.460677178649991 ], [ 43.697777540874455, -23.574116306250602 ], [ 43.345654331237625, -22.776903985283873 ], [ 43.254187046081, -22.057413018484123 ], [ 43.43329756040464, -21.336475111580189 ], [ 43.893682895692926, -21.163307386970128 ], [ 43.896370070172104, -20.830459486578174 ], [ 44.374325392439658, -20.072366224856388 ], [ 44.464397413924388, -19.435454196859048 ], [ 44.232421909366167, -18.961994724200906 ], [ 44.042976108584156, -18.331387220943171 ], [ 43.963084344260913, -17.409944756746782 ], [ 44.31246870298628, -16.850495700754955 ], [ 44.446517368351401, -16.216219170804507 ], [ 44.944936557806528, -16.179373874580399 ], [ 45.502731967964991, -15.974373467678539 ], [ 45.872993605336262, -15.793454278224687 ], [ 46.31224327981721, -15.780018405828798 ], [ 46.882182651564285, -15.210182386946315 ], [ 47.705129835812357, -14.594302666891764 ], [ 48.005214878131255, -14.091232598530375 ], [ 47.869047479042166, -13.663868503476586 ], [ 48.293827752481377, -13.784067884987486 ], [ 48.845060255738787, -13.089174899958664 ], [ 48.863508742066983, -12.487867933810421 ], [ 49.194651320193316, -12.04055673589197 ], [ 49.543518914595751, -12.469832858940554 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Mexico\", \"sov_a3\": \"MEX\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Mexico\", \"adm0_a3\": \"MEX\", \"geou_dif\": 0.000000, \"geounit\": \"Mexico\", \"gu_a3\": \"MEX\", \"su_dif\": 0.000000, \"subunit\": \"Mexico\", \"su_a3\": \"MEX\", \"brk_diff\": 0.000000, \"name\": \"Mexico\", \"name_long\": \"Mexico\", \"brk_a3\": \"MEX\", \"brk_name\": \"Mexico\", \"brk_group\": null, \"abbrev\": \"Mex.\", \"postal\": \"MX\", \"formal_en\": \"United Mexican States\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Mexico\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 3.000000, \"pop_est\": 111211789.000000, \"gdp_md_est\": 1563000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"4. Emerging region: MIKT\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MX\", \"iso_a3\": \"MEX\", \"iso_n3\": \"484\", \"un_a3\": \"484\", \"wb_a2\": \"MX\", \"wb_a3\": \"MEX\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MEX\", \"adm0_a3_us\": \"MEX\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Central America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -97.140008307670712, 25.869997463478398 ], [ -97.528072475966553, 24.9921440699203 ], [ -97.702945522842242, 24.272343044526735 ], [ -97.776041836319052, 22.93257986092766 ], [ -97.872366706111109, 22.44421173755336 ], [ -97.699043952204192, 21.898689480064263 ], [ -97.388959520236767, 21.411018988525825 ], [ -97.189333462293291, 20.635433254473128 ], [ -96.525575527720321, 19.890930894444068 ], [ -96.292127244841765, 19.320371405509547 ], [ -95.900884975959968, 18.82802419684873 ], [ -94.839063483442715, 18.562717393462208 ], [ -94.425729539756219, 18.144370835843347 ], [ -93.548651292682393, 18.423836981677937 ], [ -92.786113857783505, 18.524838568592259 ], [ -92.037348192090406, 18.704569200103435 ], [ -91.407903408559264, 18.87608327888023 ], [ -90.771869879910867, 19.284120388256781 ], [ -90.533589850613055, 19.867418117751299 ], [ -90.451475999701245, 20.707521877520435 ], [ -90.278618333684904, 20.999855454995554 ], [ -89.601321173851488, 21.261725775634488 ], [ -88.543866339862859, 21.49367544197662 ], [ -87.658416510757718, 21.458845526611981 ], [ -87.051890224948067, 21.543543199138298 ], [ -86.811982388032959, 21.331514797444754 ], [ -86.845907965832623, 20.849864610268355 ], [ -87.383291185235862, 20.25540477139873 ], [ -87.62105445021075, 19.646553046135921 ], [ -87.436750454441778, 19.472403469312269 ], [ -87.586560431655926, 19.040130113190742 ], [ -87.837191128271513, 18.25981598558343 ], [ -88.090664028663184, 18.516647854074051 ], [ -88.30003109409364, 18.49998220466 ], [ -88.490122850279306, 18.48683055264172 ], [ -88.848343878926585, 17.883198147040332 ], [ -89.029857347351765, 18.001511338772559 ], [ -89.150909389995491, 17.955467637600407 ], [ -89.14308041050333, 17.808318996649405 ], [ -90.067933519230905, 17.819326076727521 ], [ -91.001519945015957, 17.817594916245696 ], [ -91.002269253284169, 17.254657701074279 ], [ -91.453921271515128, 17.252177232324186 ], [ -91.081670091500598, 16.918476670799521 ], [ -90.711821865587638, 16.68748301845477 ], [ -90.600846727240935, 16.47077789963879 ], [ -90.438866950222007, 16.410109768128109 ], [ -90.464472622422647, 16.069562079324726 ], [ -91.747960171255954, 16.066564846251765 ], [ -92.229248623406306, 15.251446641495875 ], [ -92.087215949252027, 15.064584662328514 ], [ -92.203229539747269, 14.83010285080411 ], [ -92.227750006869826, 14.538828640190957 ], [ -93.35946387406176, 15.615429592343673 ], [ -93.875168830118525, 15.940164292865916 ], [ -94.691656460330137, 16.200975246642884 ], [ -95.250227016973042, 16.128318182840644 ], [ -96.053382127653322, 15.752087917539598 ], [ -96.557434048228288, 15.653515122942792 ], [ -97.263592495496653, 15.917064927631316 ], [ -98.01302995480961, 16.107311713113916 ], [ -98.947675747456515, 16.566043402568766 ], [ -99.697397427147052, 16.706164048728169 ], [ -100.829498867581322, 17.17107107184205 ], [ -101.666088629954459, 17.649026394109626 ], [ -101.918528001700224, 17.916090196193977 ], [ -102.478132086988921, 17.975750637275098 ], [ -103.500989549558085, 18.292294623278849 ], [ -103.917527432046825, 18.748571682200009 ], [ -104.992009650475495, 19.316133938061682 ], [ -105.49303849976144, 19.946767279535436 ], [ -105.731396043707662, 20.434101874264115 ], [ -105.39777299683135, 20.531718654863425 ], [ -105.50066077352443, 20.816895046466129 ], [ -105.270752326257934, 21.076284898355141 ], [ -105.265817226974036, 21.422103583252351 ], [ -105.603160976975403, 21.871145941652571 ], [ -105.693413865973127, 22.269080308516152 ], [ -106.028716396898972, 22.773752346278627 ], [ -106.90998043498837, 23.767774359628902 ], [ -107.915448778091388, 24.54891531015295 ], [ -108.401904873470983, 25.172313951105934 ], [ -109.260198737406654, 25.580609442644061 ], [ -109.444089321717343, 25.82488393808768 ], [ -109.291643846456282, 26.442934068298428 ], [ -109.801457689231825, 26.676175645447927 ], [ -110.391731737085706, 27.16211497650454 ], [ -110.641018846461634, 27.859876003525528 ], [ -111.178918830187854, 27.94124054616907 ], [ -111.759606899851633, 28.467952582303951 ], [ -112.228234626090398, 28.954408677683489 ], [ -112.271823696728688, 29.266844387320077 ], [ -112.809594489373978, 30.021113593052348 ], [ -113.163810594518679, 30.786880804969428 ], [ -113.14866939985717, 31.170965887978923 ], [ -113.871881069781864, 31.567608344035193 ], [ -114.20573666060352, 31.524045111613134 ], [ -114.776451178835032, 31.79953217216115 ], [ -114.936699795372135, 31.393484605427602 ], [ -114.771231859173497, 30.913617255165263 ], [ -114.673899298951767, 30.162681179315996 ], [ -114.330974494262932, 29.750432440707414 ], [ -113.588875088335442, 29.061611436473015 ], [ -113.424053107540544, 28.82617361095123 ], [ -113.27196936730553, 28.754782619739899 ], [ -113.140039435664391, 28.411289374295961 ], [ -112.962298346796501, 28.42519033458251 ], [ -112.761587083774884, 27.780216783147523 ], [ -112.457910529411663, 27.525813706974759 ], [ -112.244951951936798, 27.171726792910761 ], [ -111.616489020619213, 26.662817287700477 ], [ -111.284674648873022, 25.732589830014433 ], [ -110.987819383572401, 25.294606228124564 ], [ -110.710006883571339, 24.826004340101861 ], [ -110.655048997828885, 24.298594672131117 ], [ -110.172856208113444, 24.265547593680424 ], [ -109.77184709352855, 23.811182562754198 ], [ -109.409104377055712, 23.364672349536249 ], [ -109.433392300232924, 23.185587673428699 ], [ -109.854219326601708, 22.818271592698068 ], [ -110.031391974714438, 22.823077500901206 ], [ -110.295070970483664, 23.430973212166691 ], [ -110.949501309028051, 24.000964260345995 ], [ -111.670568407012695, 24.484423122652515 ], [ -112.182035895621482, 24.738412787367167 ], [ -112.148988817170846, 25.470125230404051 ], [ -112.300710822379699, 26.012004299416617 ], [ -112.777296719191554, 26.321959540303169 ], [ -113.464670783321935, 26.768185533143424 ], [ -113.596729906043834, 26.639459540304472 ], [ -113.848936733844255, 26.90006378835244 ], [ -114.465746629680041, 27.142090358991368 ], [ -115.055142178185008, 27.722726752222911 ], [ -114.982252570437424, 27.798200181585116 ], [ -114.570365566854946, 27.741485297144891 ], [ -114.19932878299926, 28.115002549750557 ], [ -114.162018398884641, 28.566111965442303 ], [ -114.931842210736647, 29.27947927501549 ], [ -115.518653937626993, 29.556361599235402 ], [ -115.887365282029577, 30.180793768834178 ], [ -116.258350389452914, 30.836464341753583 ], [ -116.721526252084971, 31.635743720012044 ], [ -117.127759999999853, 32.53534 ], [ -115.99135, 32.612390000000119 ], [ -114.72139, 32.72083 ], [ -114.815, 32.52528 ], [ -113.30498, 32.03914 ], [ -111.02361, 31.33472 ], [ -109.035, 31.341940000000136 ], [ -108.24194, 31.34222 ], [ -108.24, 31.754853718166373 ], [ -106.50759, 31.75452 ], [ -106.1429, 31.39995 ], [ -105.63159, 31.08383 ], [ -105.03737, 30.64402 ], [ -104.70575, 30.12173 ], [ -104.456969999999899, 29.57196 ], [ -103.94, 29.27 ], [ -103.11, 28.97 ], [ -102.48, 29.76 ], [ -101.6624, 29.7793 ], [ -100.9576, 29.380710000000136 ], [ -100.45584, 28.696120000000121 ], [ -100.11, 28.110000000000127 ], [ -99.52, 27.54 ], [ -99.3, 26.84 ], [ -99.02, 26.37 ], [ -98.24, 26.06 ], [ -97.53, 25.84 ], [ -97.140008307670712, 25.869997463478398 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Macedonia\", \"sov_a3\": \"MKD\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Macedonia\", \"adm0_a3\": \"MKD\", \"geou_dif\": 0.000000, \"geounit\": \"Macedonia\", \"gu_a3\": \"MKD\", \"su_dif\": 0.000000, \"subunit\": \"Macedonia\", \"su_a3\": \"MKD\", \"brk_diff\": 0.000000, \"name\": \"Macedonia\", \"name_long\": \"Macedonia\", \"brk_a3\": \"MKD\", \"brk_name\": \"Macedonia\", \"brk_group\": null, \"abbrev\": \"Mkd.\", \"postal\": \"MK\", \"formal_en\": \"Former Yugoslav Republic of Macedonia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Macedonia, FYR\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 3.000000, \"pop_est\": 2066718.000000, \"gdp_md_est\": 18780.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MK\", \"iso_a3\": \"MKD\", \"iso_n3\": \"807\", \"un_a3\": \"807\", \"wb_a2\": \"MK\", \"wb_a3\": \"MKD\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MKD\", \"adm0_a3_us\": \"MKD\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 20.59023, 41.85541 ], [ 20.717310000000111, 41.84711 ], [ 20.76216, 42.05186 ], [ 21.352700000000141, 42.2068 ], [ 21.576635989402121, 42.245224397061861 ], [ 21.917080000000112, 42.30364 ], [ 22.380525750424681, 42.320259507815081 ], [ 22.881373732197346, 41.999297186850356 ], [ 22.952377150166512, 41.33799388281119 ], [ 22.76177, 41.3048 ], [ 22.597308383889015, 41.130487168943205 ], [ 22.05537763844427, 41.149865831052693 ], [ 21.674160597426976, 40.931274522457954 ], [ 21.020040317476401, 40.84272695572588 ], [ 20.60518, 41.08622 ], [ 20.46315, 41.5150900000001 ], [ 20.59023, 41.85541 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Mali\", \"sov_a3\": \"MLI\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Mali\", \"adm0_a3\": \"MLI\", \"geou_dif\": 0.000000, \"geounit\": \"Mali\", \"gu_a3\": \"MLI\", \"su_dif\": 0.000000, \"subunit\": \"Mali\", \"su_a3\": \"MLI\", \"brk_diff\": 0.000000, \"name\": \"Mali\", \"name_long\": \"Mali\", \"brk_a3\": \"MLI\", \"brk_name\": \"Mali\", \"brk_group\": null, \"abbrev\": \"Mali\", \"postal\": \"ML\", \"formal_en\": \"Republic of Mali\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Mali\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 7.000000, \"pop_est\": 12666987.000000, \"gdp_md_est\": 14590.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ML\", \"iso_a3\": \"MLI\", \"iso_n3\": \"466\", \"un_a3\": \"466\", \"wb_a2\": \"ML\", \"wb_a3\": \"MLI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MLI\", \"adm0_a3_us\": \"MLI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -12.170750291380301, 14.616834214735505 ], [ -11.834207526079467, 14.799096991428939 ], [ -11.666078253617854, 15.388208319556298 ], [ -11.349095017939504, 15.411256008358478 ], [ -10.650791388379417, 15.132745876521426 ], [ -10.086846482778213, 15.330485744686271 ], [ -9.700255092802706, 15.264107367407362 ], [ -9.550238409859389, 15.486496893775438 ], [ -5.537744309908447, 15.501689764869257 ], [ -5.315277268891933, 16.201853745991841 ], [ -5.488522508150439, 16.325102037007966 ], [ -5.971128709324248, 20.640833441647629 ], [ -6.453786586930335, 24.956590684503425 ], [ -4.923337368174231, 24.974574082941 ], [ -1.550054897457613, 22.792665920497384 ], [ 1.823227573259032, 20.610809434486043 ], [ 2.06099083823392, 20.142233384679486 ], [ 2.683588494486429, 19.856230170160117 ], [ 3.1466610042539, 19.693578599521445 ], [ 3.158133172222705, 19.057364203360038 ], [ 4.267419467800039, 19.155265204336999 ], [ 4.270209995143802, 16.852227484601215 ], [ 3.723421665063483, 16.184283759012615 ], [ 3.638258904646477, 15.568119818580456 ], [ 2.749992709981484, 15.409524847876696 ], [ 1.385528191746858, 15.323561102759172 ], [ 1.01578331869851, 14.968182277887948 ], [ 0.374892205414682, 14.92890818934613 ], [ -0.26625729003058, 14.924308986872148 ], [ -0.515854458000348, 15.116157741755728 ], [ -1.066363491205664, 14.973815009007765 ], [ -2.001035122068771, 14.559008287000893 ], [ -2.191824510090385, 14.246417548067356 ], [ -2.967694464520577, 13.79815033615151 ], [ -3.10370683431276, 13.541266791228594 ], [ -3.522802700199861, 13.337661647998615 ], [ -4.006390753587226, 13.472485459848116 ], [ -4.28040503581488, 13.228443508349741 ], [ -4.427166103523803, 12.542645575404295 ], [ -5.220941941743121, 11.713858954307227 ], [ -5.197842576508648, 11.37514577885014 ], [ -5.470564947929006, 10.951269842976048 ], [ -5.404341599946974, 10.370736802609146 ], [ -5.816926235365287, 10.222554633012194 ], [ -6.050452032892267, 10.096360785355444 ], [ -6.205222947606431, 10.524060777219134 ], [ -6.493965013037268, 10.411302801958271 ], [ -6.666460944027548, 10.430810655148449 ], [ -6.850506557635057, 10.138993841996239 ], [ -7.622759161804809, 10.147236232946796 ], [ -7.899589809592372, 10.297382106970828 ], [ -8.029943610048619, 10.206534939001713 ], [ -8.33537716310974, 10.494811916541934 ], [ -8.282357143578281, 10.792597357623846 ], [ -8.407310756860028, 10.909256903522762 ], [ -8.620321010767128, 10.810890814655183 ], [ -8.581305304386774, 11.136245632364805 ], [ -8.376304897484914, 11.393645941610629 ], [ -8.786099005559464, 11.812560939984706 ], [ -8.90526485842453, 12.088358059126437 ], [ -9.127473517279583, 12.308060411015333 ], [ -9.327616339546012, 12.334286200403454 ], [ -9.567911749703214, 12.194243068892476 ], [ -9.890992804392013, 12.060478623904972 ], [ -10.165213792348837, 11.844083563682744 ], [ -10.593223842806282, 11.92397532800598 ], [ -10.870829637078215, 12.17788747807211 ], [ -11.03655595543826, 12.211244615116515 ], [ -11.297573614944511, 12.077971096235771 ], [ -11.456168585648271, 12.076834214725338 ], [ -11.513942836950591, 12.442987575729418 ], [ -11.467899135778524, 12.754518947800975 ], [ -11.553397793005431, 13.141213690641067 ], [ -11.927716030311615, 13.422075100147396 ], [ -12.124887457721259, 13.994727484589788 ], [ -12.170750291380301, 14.616834214735505 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Myanmar\", \"sov_a3\": \"MMR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Myanmar\", \"adm0_a3\": \"MMR\", \"geou_dif\": 0.000000, \"geounit\": \"Myanmar\", \"gu_a3\": \"MMR\", \"su_dif\": 0.000000, \"subunit\": \"Myanmar\", \"su_a3\": \"MMR\", \"brk_diff\": 0.000000, \"name\": \"Myanmar\", \"name_long\": \"Myanmar\", \"brk_a3\": \"MMR\", \"brk_name\": \"Myanmar\", \"brk_group\": null, \"abbrev\": \"Myan.\", \"postal\": \"MM\", \"formal_en\": \"Republic of the Union of Myanmar\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Myanmar\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 13.000000, \"pop_est\": 48137741.000000, \"gdp_md_est\": 55130.000000, \"pop_year\": -99.000000, \"lastcensus\": 1983.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MM\", \"iso_a3\": \"MMR\", \"iso_n3\": \"104\", \"un_a3\": \"104\", \"wb_a2\": \"MM\", \"wb_a3\": \"MMR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MMR\", \"adm0_a3_us\": \"MMR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 99.543309360759309, 20.186597601802063 ], [ 98.959675734454876, 19.752980658440947 ], [ 98.25372399291561, 19.708203029860044 ], [ 97.797782830804408, 18.627080389881755 ], [ 97.375896437573545, 18.445437730375815 ], [ 97.859122755934862, 17.567946071843664 ], [ 98.49376102091135, 16.837835598207931 ], [ 98.903348423256759, 16.177824204976119 ], [ 98.537375929765716, 15.308497422746084 ], [ 98.192074009191401, 15.123702500870351 ], [ 98.430819126379873, 14.622027696180837 ], [ 99.097755161538757, 13.827502549693278 ], [ 99.212011753336085, 13.269293728076464 ], [ 99.196353794351666, 12.80474843998867 ], [ 99.587286004639722, 11.892762762901697 ], [ 99.038120558673981, 10.960545762572437 ], [ 98.553550653073046, 9.932959906448545 ], [ 98.457174106848726, 10.67526601810515 ], [ 98.764545526120784, 11.441291612183749 ], [ 98.428338657629851, 12.032986761925685 ], [ 98.509574009192676, 13.122377631070677 ], [ 98.103603957107694, 13.640459703012851 ], [ 97.777732375075175, 14.837285874892642 ], [ 97.597071567782763, 16.100567938699768 ], [ 97.164539829499802, 16.92873444260934 ], [ 96.505768670642993, 16.427240505432849 ], [ 95.369352248112406, 15.714389960182601 ], [ 94.80840457558412, 15.803454291237641 ], [ 94.188804152404543, 16.037936102762018 ], [ 94.533485955791349, 17.277240301985728 ], [ 94.324816522196755, 18.2135139022499 ], [ 93.540988397193644, 19.366492621330025 ], [ 93.663254835996213, 19.726961574781996 ], [ 93.078277622452191, 19.855144965081976 ], [ 92.36855350135562, 20.670883287025347 ], [ 92.303234490938678, 21.475485337809818 ], [ 92.65225711463799, 21.324047552978485 ], [ 92.672720981825563, 22.041238918541254 ], [ 93.166127557348375, 22.278459580977103 ], [ 93.060294224014626, 22.703110663335568 ], [ 93.286326938859276, 23.043658352139005 ], [ 93.325187615942795, 24.078556423432204 ], [ 94.106741977925068, 23.85074087167348 ], [ 94.55265791217164, 24.675238348890336 ], [ 94.603249139385383, 25.162495428970402 ], [ 95.155153436262594, 26.001307277932085 ], [ 95.124767694074961, 26.573572089132298 ], [ 96.419365675850969, 27.264589341739224 ], [ 97.133999058015306, 27.083773505149964 ], [ 97.051988559968095, 27.699058946233151 ], [ 97.402561476636137, 27.882536119085444 ], [ 97.327113885490036, 28.261582749946339 ], [ 97.911987746169444, 28.335945136014345 ], [ 98.246230910233294, 27.747221381129179 ], [ 98.682690057370465, 27.508812160750619 ], [ 98.712093947344513, 26.743535874940267 ], [ 98.671838006589155, 25.918702500913525 ], [ 97.724609002679145, 25.083637193293001 ], [ 97.604719679761985, 23.897404690033042 ], [ 98.660262485755766, 24.063286037689966 ], [ 98.898749220782776, 23.142722072842531 ], [ 99.531992222087396, 22.949038804612581 ], [ 99.240898878987252, 22.118314317304581 ], [ 99.983489211021492, 21.742936713136402 ], [ 100.416537713627378, 21.558839423096614 ], [ 101.15003299357825, 21.849984442629022 ], [ 101.180005324307544, 21.436572984294028 ], [ 100.329101190189533, 20.786121731036232 ], [ 100.115987583417848, 20.417849636308187 ], [ 99.543309360759309, 20.186597601802063 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Montenegro\", \"sov_a3\": \"MNE\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Montenegro\", \"adm0_a3\": \"MNE\", \"geou_dif\": 0.000000, \"geounit\": \"Montenegro\", \"gu_a3\": \"MNE\", \"su_dif\": 0.000000, \"subunit\": \"Montenegro\", \"su_a3\": \"MNE\", \"brk_diff\": 0.000000, \"name\": \"Montenegro\", \"name_long\": \"Montenegro\", \"brk_a3\": \"MNE\", \"brk_name\": \"Montenegro\", \"brk_group\": null, \"abbrev\": \"Mont.\", \"postal\": \"ME\", \"formal_en\": \"Montenegro\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Montenegro\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 5.000000, \"pop_est\": 672180.000000, \"gdp_md_est\": 6816.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ME\", \"iso_a3\": \"MNE\", \"iso_n3\": \"499\", \"un_a3\": \"499\", \"wb_a2\": \"ME\", \"wb_a3\": \"MNE\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MNE\", \"adm0_a3_us\": \"MNE\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 19.801613396898688, 42.500093492190842 ], [ 19.738051385179631, 42.688247382165571 ], [ 19.304490000000101, 42.19574 ], [ 19.37177000000014, 41.87755 ], [ 19.16246, 41.95502 ], [ 18.88214, 42.28151 ], [ 18.45, 42.48 ], [ 18.56, 42.65 ], [ 18.70648, 43.20011 ], [ 19.03165, 43.43253 ], [ 19.21852, 43.52384 ], [ 19.48389, 43.35229 ], [ 19.63, 43.213779970270537 ], [ 19.95857, 43.10604 ], [ 20.3398, 42.89852 ], [ 20.25758, 42.812750000000108 ], [ 20.0707, 42.58863 ], [ 19.801613396898688, 42.500093492190842 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Mongolia\", \"sov_a3\": \"MNG\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Mongolia\", \"adm0_a3\": \"MNG\", \"geou_dif\": 0.000000, \"geounit\": \"Mongolia\", \"gu_a3\": \"MNG\", \"su_dif\": 0.000000, \"subunit\": \"Mongolia\", \"su_a3\": \"MNG\", \"brk_diff\": 0.000000, \"name\": \"Mongolia\", \"name_long\": \"Mongolia\", \"brk_a3\": \"MNG\", \"brk_name\": \"Mongolia\", \"brk_group\": null, \"abbrev\": \"Mong.\", \"postal\": \"MN\", \"formal_en\": \"Mongolia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Mongolia\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 6.000000, \"pop_est\": 3041142.000000, \"gdp_md_est\": 9476.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MN\", \"iso_a3\": \"MNG\", \"iso_n3\": \"496\", \"un_a3\": \"496\", \"wb_a2\": \"MN\", \"wb_a3\": \"MNG\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MNG\", \"adm0_a3_us\": \"MNG\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 87.751264276076711, 49.297197984405486 ], [ 88.805566847695516, 49.470520738312423 ], [ 90.71366743364068, 50.331811835321091 ], [ 92.234711541719676, 50.802170722041723 ], [ 93.10421919146269, 50.495290228876428 ], [ 94.147566359435629, 50.48053660745709 ], [ 94.815949334698729, 50.013433335970852 ], [ 95.814027947983988, 49.977466539095715 ], [ 97.25972781778141, 49.726060695995741 ], [ 98.231761509191557, 50.422400621128745 ], [ 97.825739780674311, 51.010995184933179 ], [ 98.861490513100335, 52.047366034546691 ], [ 99.981732212323536, 51.634006252643992 ], [ 100.889480421962617, 51.516855780638323 ], [ 102.065222609467327, 51.259920559283124 ], [ 102.255908644624327, 50.510560614618683 ], [ 103.676545444760222, 50.089966132195116 ], [ 104.621552362081701, 50.275329494826074 ], [ 105.886591424586754, 50.406019192092224 ], [ 106.88880415245535, 50.274295966180233 ], [ 107.86817589725095, 49.793705145865815 ], [ 108.475167270951289, 49.28254771585074 ], [ 109.402449171996665, 49.29296051695755 ], [ 110.662010532678778, 49.130128078805868 ], [ 111.581230910286621, 49.377968248077693 ], [ 112.897739699354389, 49.543565375356991 ], [ 114.362456496235268, 50.248302720737414 ], [ 114.962109816550182, 50.140247300815126 ], [ 115.485695428531415, 49.805177313834605 ], [ 116.67880089728618, 49.888531399121391 ], [ 116.191802199367572, 49.134598090199106 ], [ 115.485282017073061, 48.135382595403442 ], [ 115.742837355615791, 47.726544501326288 ], [ 116.308952671373234, 47.85341014260284 ], [ 117.29550744025741, 47.697709052107427 ], [ 118.064142694166719, 48.066730455103688 ], [ 118.866574334794947, 47.747060044946167 ], [ 119.772823927897505, 47.048058783550132 ], [ 119.663269891438759, 46.692679958678923 ], [ 118.874325799638726, 46.805412095723653 ], [ 117.421701287914189, 46.67273285581426 ], [ 116.717868280098855, 46.388202419615212 ], [ 115.985096470200091, 45.727235012386004 ], [ 114.460331658996068, 45.339816799493825 ], [ 113.463906691544167, 44.808893134127118 ], [ 112.436062453258813, 45.011645616224293 ], [ 111.873306105600307, 45.102079372735062 ], [ 111.348376906379457, 44.45744171811009 ], [ 111.66773725794323, 44.073175767587713 ], [ 111.82958784388137, 43.743118394539522 ], [ 111.129682244920232, 43.40683401140015 ], [ 110.412103306115284, 42.871233628911028 ], [ 109.243595819131457, 42.5194463160841 ], [ 107.744772576937947, 42.481515814781872 ], [ 106.129315627061686, 42.134327704428912 ], [ 104.964993931093474, 41.597409572916348 ], [ 104.522281935648991, 41.908346666016556 ], [ 103.312278273534815, 41.907468166667599 ], [ 101.833040399179936, 42.514872951826277 ], [ 100.845865513108265, 42.663804429691453 ], [ 99.515817498780038, 42.524691473961724 ], [ 97.451757440178014, 42.74888967546002 ], [ 96.349395786527808, 42.725635280928685 ], [ 95.762454868556688, 43.319449164394605 ], [ 95.306875441471533, 44.241330878265472 ], [ 94.688928664125328, 44.352331854828421 ], [ 93.480733677141302, 44.975472113619965 ], [ 92.133890822318222, 45.115075995456458 ], [ 90.945539585334302, 45.286073309910279 ], [ 90.585768263718279, 45.719716091487527 ], [ 90.970809360725013, 46.88814606382293 ], [ 90.280825636763922, 47.69354909930793 ], [ 88.854297723346761, 48.069081732772965 ], [ 88.013832228551735, 48.599462795600616 ], [ 87.751264276076711, 49.297197984405486 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Mozambique\", \"sov_a3\": \"MOZ\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Mozambique\", \"adm0_a3\": \"MOZ\", \"geou_dif\": 0.000000, \"geounit\": \"Mozambique\", \"gu_a3\": \"MOZ\", \"su_dif\": 0.000000, \"subunit\": \"Mozambique\", \"su_a3\": \"MOZ\", \"brk_diff\": 0.000000, \"name\": \"Mozambique\", \"name_long\": \"Mozambique\", \"brk_a3\": \"MOZ\", \"brk_name\": \"Mozambique\", \"brk_group\": null, \"abbrev\": \"Moz.\", \"postal\": \"MZ\", \"formal_en\": \"Republic of Mozambique\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Mozambique\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 4.000000, \"pop_est\": 21669278.000000, \"gdp_md_est\": 18940.000000, \"pop_year\": -99.000000, \"lastcensus\": 2007.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MZ\", \"iso_a3\": \"MOZ\", \"iso_n3\": \"508\", \"un_a3\": \"508\", \"wb_a2\": \"MZ\", \"wb_a3\": \"MOZ\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MOZ\", \"adm0_a3_us\": \"MOZ\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 34.559989047999352, -11.520020033415925 ], [ 35.312397902169039, -11.439146416879147 ], [ 36.514081658684262, -11.720938002166735 ], [ 36.775150994622805, -11.594537448780805 ], [ 37.47128421402661, -11.568750909067161 ], [ 37.82764489111139, -11.268769219612835 ], [ 38.427556593587752, -11.285202325081656 ], [ 39.521029900883775, -10.896853936408228 ], [ 40.316588576017189, -10.317096042525698 ], [ 40.478387485523029, -10.765440769089993 ], [ 40.437253045418686, -11.761710707245015 ], [ 40.560811395028573, -12.639176527561027 ], [ 40.59962039567975, -14.201975192931862 ], [ 40.775475294768995, -14.691764418194241 ], [ 40.477250604012603, -15.406294447493972 ], [ 40.089263950365222, -16.10077402106446 ], [ 39.452558628097051, -16.72089120856694 ], [ 38.538350864421517, -17.101023044505958 ], [ 37.411132846838882, -17.586368096591237 ], [ 36.281279331209362, -18.659687595293448 ], [ 35.896496616364061, -18.842260430580637 ], [ 35.198399692533144, -19.552811374593894 ], [ 34.786383497870048, -19.784011732667736 ], [ 34.701892531072843, -20.497043145431011 ], [ 35.176127150215365, -21.254361260668411 ], [ 35.373427768705739, -21.840837090748877 ], [ 35.385848253705404, -22.14 ], [ 35.562545536369086, -22.09 ], [ 35.533934767404304, -23.070787855727758 ], [ 35.371774122872381, -23.535358982031699 ], [ 35.607470330555628, -23.706563002214683 ], [ 35.458745558419622, -24.122609958596549 ], [ 35.040734897610662, -24.478350518493805 ], [ 34.215824008935471, -24.816314385682659 ], [ 33.013210076639012, -25.357573337507738 ], [ 32.574632195777866, -25.727318210556092 ], [ 32.660363396950089, -26.148584486599447 ], [ 32.915955031065693, -26.215867201443466 ], [ 32.830120477028885, -26.742191664336197 ], [ 32.071665480281069, -26.733820082304909 ], [ 31.985779249811969, -26.291779880480227 ], [ 31.83777794772806, -25.843331801051349 ], [ 31.752408481581881, -25.484283949487413 ], [ 31.930588820124253, -24.369416599222539 ], [ 31.670397983534656, -23.658969008073864 ], [ 31.191409132621288, -22.251509698172399 ], [ 32.244988234188014, -21.116488539313693 ], [ 32.508693068173443, -20.395292250248307 ], [ 32.65974327976258, -20.304290052982317 ], [ 32.772707960752626, -19.715592136313298 ], [ 32.611994256324891, -19.419382826416275 ], [ 32.654885695127149, -18.672089939043495 ], [ 32.849860874164392, -17.979057305577179 ], [ 32.847638787575846, -16.713398125884616 ], [ 32.328238966610229, -16.392074069893752 ], [ 31.852040643040599, -16.319417006091378 ], [ 31.636498243951195, -16.071990248277885 ], [ 31.17306399915768, -15.860943698797874 ], [ 30.338954705534544, -15.880839125230246 ], [ 30.27425581230511, -15.507786960515213 ], [ 30.17948123548183, -14.796099134991529 ], [ 33.214024692525214, -13.971860039936153 ], [ 33.789700148256685, -14.45183074306307 ], [ 34.064825473778626, -14.35995004644812 ], [ 34.459633416488543, -14.613009535381423 ], [ 34.517666049952311, -15.013708591372612 ], [ 34.307291294092096, -15.478641452702597 ], [ 34.381291945134052, -16.183559665596043 ], [ 35.033810255683534, -16.801299737213093 ], [ 35.339062941231646, -16.107440280830112 ], [ 35.771904738108361, -15.896858819240727 ], [ 35.68684533055594, -14.611045830954332 ], [ 35.267956170398008, -13.887834161029566 ], [ 34.907151320136165, -13.565424899960568 ], [ 34.559989047999352, -13.579997653866876 ], [ 34.28000613784198, -12.280025323132506 ], [ 34.559989047999352, -11.520020033415925 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Mauritania\", \"sov_a3\": \"MRT\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Mauritania\", \"adm0_a3\": \"MRT\", \"geou_dif\": 0.000000, \"geounit\": \"Mauritania\", \"gu_a3\": \"MRT\", \"su_dif\": 0.000000, \"subunit\": \"Mauritania\", \"su_a3\": \"MRT\", \"brk_diff\": 0.000000, \"name\": \"Mauritania\", \"name_long\": \"Mauritania\", \"brk_a3\": \"MRT\", \"brk_name\": \"Mauritania\", \"brk_group\": null, \"abbrev\": \"Mrt.\", \"postal\": \"MR\", \"formal_en\": \"Islamic Republic of Mauritania\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Mauritania\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 1.000000, \"pop_est\": 3129486.000000, \"gdp_md_est\": 6308.000000, \"pop_year\": -99.000000, \"lastcensus\": 2000.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MR\", \"iso_a3\": \"MRT\", \"iso_n3\": \"478\", \"un_a3\": \"478\", \"wb_a2\": \"MR\", \"wb_a3\": \"MRT\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MRT\", \"adm0_a3_us\": \"MRT\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -12.170750291380301, 14.616834214735505 ], [ -12.830658331747516, 15.303691514542948 ], [ -13.435737677453062, 16.039383042866191 ], [ -14.099521450242179, 16.304302273010492 ], [ -14.577347581428981, 16.598263658102809 ], [ -15.135737270558819, 16.587282416240782 ], [ -15.623666144258692, 16.369337063049812 ], [ -16.120690070041931, 16.455662543193384 ], [ -16.463098110407884, 16.13503611903846 ], [ -16.549707810929064, 16.673892116761962 ], [ -16.270551723688357, 17.166962795474873 ], [ -16.14634741867485, 18.108481553616656 ], [ -16.256883307347167, 19.096715806550307 ], [ -16.37765112961327, 19.593817246981985 ], [ -16.277838100641517, 20.092520656814699 ], [ -16.536323614965468, 20.567866319251493 ], [ -17.063423224342571, 20.999752102130827 ], [ -16.845193650773993, 21.333323472574879 ], [ -12.929101935263532, 21.327070624267563 ], [ -13.118754441774712, 22.771220201096256 ], [ -12.874221564169575, 23.284832261645178 ], [ -11.937224493853321, 23.374594224536168 ], [ -11.969418911171161, 25.933352769468268 ], [ -8.6872936670174, 25.881056219988906 ], [ -8.684399786809053, 27.395744126896005 ], [ -4.923337368174231, 24.974574082941 ], [ -6.453786586930335, 24.956590684503425 ], [ -5.971128709324248, 20.640833441647629 ], [ -5.488522508150439, 16.325102037007966 ], [ -5.315277268891933, 16.201853745991841 ], [ -5.537744309908447, 15.501689764869257 ], [ -9.550238409859389, 15.486496893775438 ], [ -9.700255092802706, 15.264107367407362 ], [ -10.086846482778213, 15.330485744686271 ], [ -10.650791388379417, 15.132745876521426 ], [ -11.349095017939504, 15.411256008358478 ], [ -11.666078253617854, 15.388208319556298 ], [ -11.834207526079467, 14.799096991428939 ], [ -12.170750291380301, 14.616834214735505 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Malawi\", \"sov_a3\": \"MWI\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Malawi\", \"adm0_a3\": \"MWI\", \"geou_dif\": 0.000000, \"geounit\": \"Malawi\", \"gu_a3\": \"MWI\", \"su_dif\": 0.000000, \"subunit\": \"Malawi\", \"su_a3\": \"MWI\", \"brk_diff\": 0.000000, \"name\": \"Malawi\", \"name_long\": \"Malawi\", \"brk_a3\": \"MWI\", \"brk_name\": \"Malawi\", \"brk_group\": null, \"abbrev\": \"Mal.\", \"postal\": \"MW\", \"formal_en\": \"Republic of Malawi\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Malawi\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 5.000000, \"pop_est\": 14268711.000000, \"gdp_md_est\": 11810.000000, \"pop_year\": -99.000000, \"lastcensus\": 2008.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MW\", \"iso_a3\": \"MWI\", \"iso_n3\": \"454\", \"un_a3\": \"454\", \"wb_a2\": \"MW\", \"wb_a3\": \"MWI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MWI\", \"adm0_a3_us\": \"MWI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 34.559989047999352, -11.520020033415925 ], [ 34.28000613784198, -12.280025323132506 ], [ 34.559989047999352, -13.579997653866876 ], [ 34.907151320136165, -13.565424899960568 ], [ 35.267956170398008, -13.887834161029566 ], [ 35.68684533055594, -14.611045830954332 ], [ 35.771904738108361, -15.896858819240727 ], [ 35.339062941231646, -16.107440280830112 ], [ 35.033810255683534, -16.801299737213093 ], [ 34.381291945134052, -16.183559665596043 ], [ 34.307291294092096, -15.478641452702597 ], [ 34.517666049952311, -15.013708591372612 ], [ 34.459633416488543, -14.613009535381423 ], [ 34.064825473778626, -14.35995004644812 ], [ 33.789700148256685, -14.45183074306307 ], [ 33.214024692525214, -13.971860039936153 ], [ 32.688165317523129, -13.712857761289277 ], [ 32.991764357237884, -12.783870537978274 ], [ 33.306422153463075, -12.435778090060218 ], [ 33.114289178201915, -11.607198174692314 ], [ 33.315310499817286, -10.796549981329697 ], [ 33.485687697083591, -10.525558770391115 ], [ 33.231387973775298, -9.676721693564801 ], [ 32.759375441221323, -9.23059905358906 ], [ 33.73972903823045, -9.417150974162723 ], [ 33.940837724096539, -9.693673841980294 ], [ 34.28000613784198, -10.159999688358404 ], [ 34.559989047999352, -11.520020033415925 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Malaysia\", \"sov_a3\": \"MYS\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Malaysia\", \"adm0_a3\": \"MYS\", \"geou_dif\": 0.000000, \"geounit\": \"Malaysia\", \"gu_a3\": \"MYS\", \"su_dif\": 0.000000, \"subunit\": \"Malaysia\", \"su_a3\": \"MYS\", \"brk_diff\": 0.000000, \"name\": \"Malaysia\", \"name_long\": \"Malaysia\", \"brk_a3\": \"MYS\", \"brk_name\": \"Malaysia\", \"brk_group\": null, \"abbrev\": \"Malay.\", \"postal\": \"MY\", \"formal_en\": \"Malaysia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Malaysia\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 6.000000, \"pop_est\": 25715819.000000, \"gdp_md_est\": 384300.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"MY\", \"iso_a3\": \"MYS\", \"iso_n3\": \"458\", \"un_a3\": \"458\", \"wb_a2\": \"MY\", \"wb_a3\": \"MYS\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MYS\", \"adm0_a3_us\": \"MYS\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 101.075515578213327, 6.204867051615892 ], [ 101.154218784593837, 5.691384182147715 ], [ 101.814281854258041, 5.810808417174229 ], [ 102.141186964936452, 6.221636053894656 ], [ 102.37114708863524, 6.128205064310961 ], [ 102.961705356866702, 5.524495144061078 ], [ 103.381214634212171, 4.855001125503748 ], [ 103.438575474056194, 4.181605536308382 ], [ 103.332122023534879, 3.726697902842972 ], [ 103.429428745540548, 3.38286876058902 ], [ 103.502447544368891, 2.791018581550205 ], [ 103.854674106870362, 2.515454006353764 ], [ 104.247931756611507, 1.631141058759056 ], [ 104.228811476663537, 1.293048000489534 ], [ 103.519707472754448, 1.226333726400682 ], [ 102.5736153503548, 1.967115383304744 ], [ 101.390638462329179, 2.760813706875624 ], [ 101.273539666755852, 3.270291652841181 ], [ 100.695435418706694, 3.93913971599487 ], [ 100.557407668055106, 4.76728038168828 ], [ 100.196706170657734, 5.31249258058368 ], [ 100.306260207116537, 6.040561835143876 ], [ 100.085756870527092, 6.464489447450291 ], [ 100.259596388756933, 6.642824815289572 ], [ 101.075515578213327, 6.204867051615892 ] ] ], [ [ [ 118.618320754064854, 4.478202419447541 ], [ 117.882034946770176, 4.137551377779488 ], [ 117.015214471506368, 4.306094061699469 ], [ 115.865517205876785, 4.306559149590157 ], [ 115.519078403792008, 3.169238389494396 ], [ 115.134037306785245, 2.821481838386219 ], [ 114.621355422017501, 1.430688177898887 ], [ 113.80584964401956, 1.217548732911041 ], [ 112.859809198052204, 1.497790025229946 ], [ 112.380251906383677, 1.410120957846758 ], [ 111.797548455860436, 0.904441229654651 ], [ 111.159137811326588, 0.976478176269509 ], [ 110.51406090702713, 0.773131415200993 ], [ 109.830226678508865, 1.338135687664192 ], [ 109.663260125773746, 2.006466986494985 ], [ 110.396135288537067, 1.663774725751395 ], [ 111.168852980597507, 1.850636704918784 ], [ 111.370081007942105, 2.697303371588873 ], [ 111.79692833867287, 2.885896511238073 ], [ 112.995614862115275, 3.102394924324869 ], [ 113.712935418758747, 3.893509426281128 ], [ 114.204016554828428, 4.52587392823682 ], [ 114.659595981913554, 4.00763682699781 ], [ 114.869557326315402, 4.348313706881953 ], [ 115.347460972150685, 4.316636053887009 ], [ 115.405700311343622, 4.955227565933825 ], [ 115.450710483869813, 5.447729803891562 ], [ 116.220741001450989, 6.143191229675622 ], [ 116.725102980619766, 6.924771429873999 ], [ 117.129626092600489, 6.928052883324568 ], [ 117.643393182446317, 6.422166449403306 ], [ 117.689075148592366, 5.987490139180181 ], [ 118.347691278152212, 5.708695786965464 ], [ 119.181903924639954, 5.407835598162251 ], [ 119.110693800941732, 5.016128241389865 ], [ 118.43972700406411, 4.96651886638962 ], [ 118.618320754064854, 4.478202419447541 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Namibia\", \"sov_a3\": \"NAM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Namibia\", \"adm0_a3\": \"NAM\", \"geou_dif\": 0.000000, \"geounit\": \"Namibia\", \"gu_a3\": \"NAM\", \"su_dif\": 0.000000, \"subunit\": \"Namibia\", \"su_a3\": \"NAM\", \"brk_diff\": 0.000000, \"name\": \"Namibia\", \"name_long\": \"Namibia\", \"brk_a3\": \"NAM\", \"brk_name\": \"Namibia\", \"brk_group\": null, \"abbrev\": \"Nam.\", \"postal\": \"NA\", \"formal_en\": \"Republic of Namibia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Namibia\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 7.000000, \"pop_est\": 2108665.000000, \"gdp_md_est\": 13250.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NA\", \"iso_a3\": \"NAM\", \"iso_n3\": \"516\", \"un_a3\": \"516\", \"wb_a2\": \"NA\", \"wb_a3\": \"NAM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NAM\", \"adm0_a3_us\": \"NAM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Southern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 16.344976840895242, -28.576705010697701 ], [ 15.601818068105816, -27.821247247022804 ], [ 15.210472446359461, -27.090955905874047 ], [ 14.989710727608553, -26.117371921495156 ], [ 14.743214145576331, -25.39292001719538 ], [ 14.408144158595833, -23.853014011329847 ], [ 14.385716586981149, -22.656652927340691 ], [ 14.257714064194175, -22.111208184499958 ], [ 13.86864220546866, -21.699036960539978 ], [ 13.352497999737439, -20.872834161057504 ], [ 12.826845330464494, -19.673165785401665 ], [ 12.608564080463621, -19.045348809487699 ], [ 11.794918654028066, -18.069129327061916 ], [ 11.734198846085121, -17.301889336824473 ], [ 12.215461460019355, -17.111668389558083 ], [ 12.814081251688407, -16.941342868724071 ], [ 13.462362094789967, -16.971211846588773 ], [ 14.05850141770901, -17.423380629142663 ], [ 14.209706658595024, -17.353100681225719 ], [ 18.263309360434164, -17.309950860262006 ], [ 18.956186964603603, -17.789094740472258 ], [ 21.377176141045567, -17.930636488519696 ], [ 23.215048455506064, -17.523116143465984 ], [ 24.033861525170778, -17.295843194246324 ], [ 24.682349074001507, -17.353410739819473 ], [ 25.076950310982259, -17.578823337476621 ], [ 25.084443393664571, -17.661815687737374 ], [ 24.520705193792537, -17.887124932529936 ], [ 24.217364536239213, -17.889347019118489 ], [ 23.579005568137717, -18.281261081620059 ], [ 23.196858351339301, -17.869038181227786 ], [ 21.655040317478978, -18.219146010005225 ], [ 20.910641310314535, -18.252218926672022 ], [ 20.88113406747587, -21.814327080983148 ], [ 19.895457797940679, -21.849156996347869 ], [ 19.895767856534434, -24.767790215760591 ], [ 19.894734327888614, -28.461104831660776 ], [ 19.002127312911085, -28.972443129188868 ], [ 18.464899122804752, -29.045461928017279 ], [ 17.83615197110953, -28.856377862261319 ], [ 17.387497185951503, -28.783514092729781 ], [ 17.218928663815404, -28.355943291946812 ], [ 16.824017368240902, -28.08216155366447 ], [ 16.344976840895242, -28.576705010697701 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"France\", \"sov_a3\": \"FR1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Dependency\", \"admin\": \"New Caledonia\", \"adm0_a3\": \"NCL\", \"geou_dif\": 0.000000, \"geounit\": \"New Caledonia\", \"gu_a3\": \"NCL\", \"su_dif\": 0.000000, \"subunit\": \"New Caledonia\", \"su_a3\": \"NCL\", \"brk_diff\": 0.000000, \"name\": \"New Caledonia\", \"name_long\": \"New Caledonia\", \"brk_a3\": \"NCL\", \"brk_name\": \"New Caledonia\", \"brk_group\": null, \"abbrev\": \"New C.\", \"postal\": \"NC\", \"formal_en\": \"New Caledonia\", \"formal_fr\": \"Nouvelle-Calédonie\", \"note_adm0\": \"Fr.\", \"note_brk\": null, \"name_sort\": \"New Caledonia\", \"name_alt\": null, \"mapcolor7\": 7.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 9.000000, \"mapcolor13\": 11.000000, \"pop_est\": 227436.000000, \"gdp_md_est\": 3158.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NC\", \"iso_a3\": \"NCL\", \"iso_n3\": \"540\", \"un_a3\": \"540\", \"wb_a2\": \"NC\", \"wb_a3\": \"NCL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NCL\", \"adm0_a3_us\": \"NCL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Oceania\", \"region_un\": \"Oceania\", \"subregion\": \"Melanesia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 13.000000, \"long_len\": 13.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": -99.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 165.779989862326374, -21.080004978115628 ], [ 166.599991489933842, -21.700018812753527 ], [ 167.120011428086912, -22.159990736583492 ], [ 166.740034621444806, -22.39997608814695 ], [ 166.18973229396866, -22.129708347260454 ], [ 165.474375441752215, -21.679606621998232 ], [ 164.829815301775682, -21.149819838141951 ], [ 164.167995233413649, -20.444746595951628 ], [ 164.029605747736014, -20.105645847252354 ], [ 164.459967075862721, -20.120011895429499 ], [ 165.02003624904205, -20.45999114347773 ], [ 165.46000939357512, -20.80002206795826 ], [ 165.779989862326374, -21.080004978115628 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Niger\", \"sov_a3\": \"NER\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Niger\", \"adm0_a3\": \"NER\", \"geou_dif\": 0.000000, \"geounit\": \"Niger\", \"gu_a3\": \"NER\", \"su_dif\": 0.000000, \"subunit\": \"Niger\", \"su_a3\": \"NER\", \"brk_diff\": 0.000000, \"name\": \"Niger\", \"name_long\": \"Niger\", \"brk_a3\": \"NER\", \"brk_name\": \"Niger\", \"brk_group\": null, \"abbrev\": \"Niger\", \"postal\": \"NE\", \"formal_en\": \"Republic of Niger\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Niger\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 13.000000, \"pop_est\": 15306252.000000, \"gdp_md_est\": 10040.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NE\", \"iso_a3\": \"NER\", \"iso_n3\": \"562\", \"un_a3\": \"562\", \"wb_a2\": \"NE\", \"wb_a3\": \"NER\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NER\", \"adm0_a3_us\": \"NER\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 2.15447350424995, 11.940150051313424 ], [ 2.177107781593918, 12.625017808477537 ], [ 1.024103224297619, 12.851825669806601 ], [ 0.993045688490156, 13.335749620003867 ], [ 0.429927605805517, 13.988733018443895 ], [ 0.295646396495215, 14.444234930880668 ], [ 0.374892205414767, 14.928908189346146 ], [ 1.015783318698482, 14.96818227788799 ], [ 1.385528191746971, 15.323561102759243 ], [ 2.749992709981541, 15.409524847876753 ], [ 3.638258904646591, 15.568119818580442 ], [ 3.723421665063597, 16.184283759012658 ], [ 4.270209995143887, 16.852227484601315 ], [ 4.267419467800096, 19.155265204337127 ], [ 5.677565952180714, 19.601206976799801 ], [ 8.572893100629869, 21.565660712159229 ], [ 11.999505649471701, 23.471668402596435 ], [ 13.581424594790462, 23.040506089769281 ], [ 14.143870883855243, 22.491288967371133 ], [ 14.8513, 22.862950000000126 ], [ 15.096887648181848, 21.308518785074909 ], [ 15.471076694407316, 21.048457139565983 ], [ 15.487148064850146, 20.730414537025638 ], [ 15.903246697664315, 20.387618923417506 ], [ 15.685740594147774, 19.957180080642388 ], [ 15.300441114979719, 17.927949937405003 ], [ 15.247731154041844, 16.627305813050782 ], [ 13.972201775781684, 15.684365953021143 ], [ 13.540393507550789, 14.367133693901224 ], [ 13.956698846094127, 13.996691189016929 ], [ 13.95447675950561, 13.353448798063766 ], [ 14.595781284247607, 13.330426947477861 ], [ 14.495787387762903, 12.859396267137356 ], [ 14.213530714584749, 12.802035427293333 ], [ 14.18133629726691, 12.483656927943173 ], [ 13.995352817448293, 12.461565253138303 ], [ 13.318701613018561, 13.556356309457954 ], [ 13.083987257548813, 13.596147162322495 ], [ 12.302071160540549, 13.037189032437539 ], [ 11.527803175511508, 13.328980007373559 ], [ 10.989593133191534, 13.387322699431195 ], [ 10.701031935273818, 13.246917832894042 ], [ 10.114814487354749, 13.277251898649467 ], [ 9.524928012743089, 12.851102199754564 ], [ 9.014933302454438, 12.826659247280418 ], [ 7.804671258178871, 13.343526923063735 ], [ 7.330746697630047, 13.098038031461215 ], [ 6.820441928747812, 13.115091254117601 ], [ 6.445426059605722, 13.492768459522722 ], [ 5.443058302440136, 13.865923977102227 ], [ 4.368343540066007, 13.747481594289411 ], [ 4.107945997747379, 13.531215725147945 ], [ 3.967282749048934, 12.956108710171577 ], [ 3.680633579125924, 12.552903347214169 ], [ 3.611180454125588, 11.660167141155966 ], [ 2.848643019226586, 12.235635891158211 ], [ 2.490163608418015, 12.233052069543589 ], [ 2.15447350424995, 11.940150051313424 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Nigeria\", \"sov_a3\": \"NGA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Nigeria\", \"adm0_a3\": \"NGA\", \"geou_dif\": 0.000000, \"geounit\": \"Nigeria\", \"gu_a3\": \"NGA\", \"su_dif\": 0.000000, \"subunit\": \"Nigeria\", \"su_a3\": \"NGA\", \"brk_diff\": 0.000000, \"name\": \"Nigeria\", \"name_long\": \"Nigeria\", \"brk_a3\": \"NGA\", \"brk_name\": \"Nigeria\", \"brk_group\": null, \"abbrev\": \"Nigeria\", \"postal\": \"NG\", \"formal_en\": \"Federal Republic of Nigeria\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Nigeria\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 2.000000, \"pop_est\": 149229090.000000, \"gdp_md_est\": 335400.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NG\", \"iso_a3\": \"NGA\", \"iso_n3\": \"566\", \"un_a3\": \"566\", \"wb_a2\": \"NG\", \"wb_a3\": \"NGA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NGA\", \"adm0_a3_us\": \"NGA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 7.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 8.500287713259695, 4.771982937026849 ], [ 7.462108188515941, 4.412108262546241 ], [ 7.082596469764439, 4.464689032403228 ], [ 6.6980721370806, 4.240594183769517 ], [ 5.898172641634687, 4.262453314628985 ], [ 5.362804803090881, 4.887970689305959 ], [ 5.033574252959369, 5.611802476418234 ], [ 4.325607130560684, 6.270651149923467 ], [ 3.574180128604553, 6.258300482605719 ], [ 2.691701694356254, 6.258817246928629 ], [ 2.74906253420022, 7.870734361192888 ], [ 2.723792758809509, 8.506845404489709 ], [ 2.912308383810256, 9.137607937044322 ], [ 3.220351596702101, 9.444152533399702 ], [ 3.705438266625919, 10.063210354040208 ], [ 3.600070021182802, 10.332186184119408 ], [ 3.797112257511714, 10.734745591673105 ], [ 3.572216424177469, 11.32793935795152 ], [ 3.611180454125559, 11.660167141155968 ], [ 3.680633579125811, 12.552903347214226 ], [ 3.967282749048849, 12.956108710171575 ], [ 4.107945997747322, 13.531215725147831 ], [ 4.368343540066064, 13.747481594289326 ], [ 5.443058302440164, 13.865923977102298 ], [ 6.445426059605637, 13.492768459522678 ], [ 6.820441928747754, 13.115091254117518 ], [ 7.330746697630019, 13.098038031461201 ], [ 7.804671258178786, 13.343526923063747 ], [ 9.014933302454466, 12.82665924728043 ], [ 9.524928012742947, 12.851102199754479 ], [ 10.114814487354693, 13.277251898649411 ], [ 10.701031935273706, 13.246917832894084 ], [ 10.989593133191535, 13.38732269943111 ], [ 11.527803175511394, 13.328980007373588 ], [ 12.302071160540523, 13.037189032437524 ], [ 13.08398725754887, 13.596147162322566 ], [ 13.318701613018561, 13.556356309457826 ], [ 13.995352817448349, 12.461565253138346 ], [ 14.181336297266794, 12.483656927943116 ], [ 14.577177768622533, 12.085360826053503 ], [ 14.468192172918975, 11.904751695193411 ], [ 14.415378859116684, 11.572368882692075 ], [ 13.572949659894562, 10.798565985553566 ], [ 13.308676385153918, 10.160362046748928 ], [ 13.167599724997103, 9.640626328973411 ], [ 12.955467970438974, 9.417771714714704 ], [ 12.753671502339216, 8.717762762888995 ], [ 12.218872104550599, 8.305824082874324 ], [ 12.063946160539558, 7.799808457872302 ], [ 11.839308709366803, 7.397042344589437 ], [ 11.745774366918511, 6.981382961449754 ], [ 11.058787876030351, 6.644426784690594 ], [ 10.497375115611419, 7.055357774275564 ], [ 10.118276808318257, 7.03876963950988 ], [ 9.522705926154401, 6.453482367372117 ], [ 9.233162876023044, 6.444490668153335 ], [ 8.757532993208628, 5.479665839047911 ], [ 8.500287713259695, 4.771982937026849 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Nicaragua\", \"sov_a3\": \"NIC\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Nicaragua\", \"adm0_a3\": \"NIC\", \"geou_dif\": 0.000000, \"geounit\": \"Nicaragua\", \"gu_a3\": \"NIC\", \"su_dif\": 0.000000, \"subunit\": \"Nicaragua\", \"su_a3\": \"NIC\", \"brk_diff\": 0.000000, \"name\": \"Nicaragua\", \"name_long\": \"Nicaragua\", \"brk_a3\": \"NIC\", \"brk_name\": \"Nicaragua\", \"brk_group\": null, \"abbrev\": \"Nic.\", \"postal\": \"NI\", \"formal_en\": \"Republic of Nicaragua\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Nicaragua\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 9.000000, \"pop_est\": 5891199.000000, \"gdp_md_est\": 16790.000000, \"pop_year\": -99.000000, \"lastcensus\": 2005.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NI\", \"iso_a3\": \"NIC\", \"iso_n3\": \"558\", \"un_a3\": \"558\", \"wb_a2\": \"NI\", \"wb_a3\": \"NIC\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NIC\", \"adm0_a3_us\": \"NIC\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Central America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -85.712540452807303, 11.088444932494824 ], [ -86.058488328785259, 11.403438625529944 ], [ -86.525849982432959, 11.806876532432597 ], [ -86.745991583996329, 12.143961900272487 ], [ -87.16751624220116, 12.458257961471658 ], [ -87.668493415054712, 12.909909979702633 ], [ -87.557466600275617, 13.064551703336065 ], [ -87.392386237319229, 12.914018256069838 ], [ -87.316654425795491, 12.984685777228975 ], [ -87.005769009127576, 13.025794379117158 ], [ -86.880557013684367, 13.254204209847245 ], [ -86.733821784191605, 13.263092556201443 ], [ -86.75508663607971, 13.754845485890913 ], [ -86.520708177419905, 13.778487453664439 ], [ -86.312142096689925, 13.77135610600817 ], [ -86.096263800790595, 14.038187364147248 ], [ -85.80129472526859, 13.836054999237589 ], [ -85.698665330736929, 13.960078436738087 ], [ -85.514413011400251, 14.079011745657837 ], [ -85.165364549484806, 14.35436961512508 ], [ -85.148750576502962, 14.560196844943617 ], [ -85.052787441736939, 14.551541042534723 ], [ -84.924500698572402, 14.79049286545235 ], [ -84.82003679069436, 14.819586696832671 ], [ -84.649582078779616, 14.666805324761754 ], [ -84.449335903648603, 14.621614284722497 ], [ -84.228341640952408, 14.748764146376658 ], [ -83.97572140169359, 14.749435939996461 ], [ -83.628584967772923, 14.880073960830302 ], [ -83.489988776366118, 15.016267198135537 ], [ -83.147219000974133, 14.995829169164111 ], [ -83.233234422523935, 14.899866034398102 ], [ -83.284161546547594, 14.676623846897201 ], [ -83.182126430987282, 14.31070302983845 ], [ -83.412499966144452, 13.970077826386557 ], [ -83.519831916014681, 13.567699286345883 ], [ -83.552207200845544, 13.127054348193086 ], [ -83.498515387694269, 12.869292303921227 ], [ -83.473323126951982, 12.419087225794428 ], [ -83.626104499022915, 12.320850328007566 ], [ -83.719613003255063, 11.893124497927728 ], [ -83.650857510090717, 11.62903209070012 ], [ -83.855470343750397, 11.373311265503787 ], [ -83.808935716471552, 11.103043524617275 ], [ -83.655611741861577, 10.938764146361422 ], [ -83.895054490885954, 10.726839097532446 ], [ -84.19017859570485, 10.793450018756674 ], [ -84.35593075228104, 10.999225572142905 ], [ -84.673069017256267, 11.082657172078143 ], [ -84.903003302738952, 10.952303371621896 ], [ -85.561851976244199, 11.217119248901597 ], [ -85.712540452807303, 11.088444932494824 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Netherlands\", \"sov_a3\": \"NL1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"Netherlands\", \"adm0_a3\": \"NLD\", \"geou_dif\": 0.000000, \"geounit\": \"Netherlands\", \"gu_a3\": \"NLD\", \"su_dif\": 0.000000, \"subunit\": \"Netherlands\", \"su_a3\": \"NLD\", \"brk_diff\": 0.000000, \"name\": \"Netherlands\", \"name_long\": \"Netherlands\", \"brk_a3\": \"NLD\", \"brk_name\": \"Netherlands\", \"brk_group\": null, \"abbrev\": \"Neth.\", \"postal\": \"NL\", \"formal_en\": \"Kingdom of the Netherlands\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Netherlands\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 9.000000, \"pop_est\": 16715999.000000, \"gdp_md_est\": 672000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NL\", \"iso_a3\": \"NLD\", \"iso_n3\": \"528\", \"un_a3\": \"528\", \"wb_a2\": \"NL\", \"wb_a3\": \"NLD\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NLD\", \"adm0_a3_us\": \"NLD\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Western Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 11.000000, \"long_len\": 11.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 6.074182570020923, 53.510403347378144 ], [ 6.905139601274129, 53.482162177130647 ], [ 7.092053256873896, 53.144043280644894 ], [ 6.842869500362383, 52.228440253297549 ], [ 6.589396599970826, 51.852029120483394 ], [ 5.988658074577813, 51.851615709025054 ], [ 6.15665815595878, 50.803721015010581 ], [ 5.606975945670001, 51.037298488969782 ], [ 4.973991326526914, 51.475023708698131 ], [ 4.047071160507528, 51.26725861266857 ], [ 3.314971144228537, 51.34575511331991 ], [ 3.830288527043137, 51.620544542031951 ], [ 4.705997348661185, 53.091798407597764 ], [ 6.074182570020923, 53.510403347378144 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Norway\", \"sov_a3\": \"NOR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Norway\", \"adm0_a3\": \"NOR\", \"geou_dif\": 0.000000, \"geounit\": \"Norway\", \"gu_a3\": \"NOR\", \"su_dif\": 0.000000, \"subunit\": \"Norway\", \"su_a3\": \"NOR\", \"brk_diff\": 0.000000, \"name\": \"Norway\", \"name_long\": \"Norway\", \"brk_a3\": \"NOR\", \"brk_name\": \"Norway\", \"brk_group\": null, \"abbrev\": \"Nor.\", \"postal\": \"N\", \"formal_en\": \"Kingdom of Norway\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Norway\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 8.000000, \"mapcolor13\": 12.000000, \"pop_est\": 4676305.000000, \"gdp_md_est\": 276400.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NO\", \"iso_a3\": \"NOR\", \"iso_n3\": \"578\", \"un_a3\": \"578\", \"wb_a2\": \"NO\", \"wb_a3\": \"NOR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NOR\", \"adm0_a3_us\": \"NOR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 28.165547316202918, 71.185474351680512 ], [ 31.293418409965483, 70.453787746859916 ], [ 30.005435011522792, 70.186258856884905 ], [ 31.101078728975125, 69.558080145944871 ], [ 29.399580519332886, 69.15691600206307 ], [ 28.591929559043194, 69.064776923286701 ], [ 29.015572950971972, 69.766491197377974 ], [ 27.732292107867892, 70.164193020296295 ], [ 26.179622023226301, 69.825298977326156 ], [ 25.689212680776393, 69.092113755969024 ], [ 24.735679152126721, 68.649556789821446 ], [ 23.662049594830762, 68.891247463650529 ], [ 22.356237827247412, 68.841741441514955 ], [ 21.24493615081073, 69.370443020293123 ], [ 20.645592889089585, 69.10624726020086 ], [ 20.025268995857914, 69.065138658312719 ], [ 19.878559604581255, 68.407194322372618 ], [ 17.99386844246439, 68.567391262477344 ], [ 17.729181756265348, 68.010551866316234 ], [ 16.768878614985539, 68.013936672631388 ], [ 16.108712192456835, 67.302455552836904 ], [ 15.108411492583059, 66.193866889095432 ], [ 13.555689731509091, 64.787027696381472 ], [ 13.919905226302205, 64.445420640716122 ], [ 13.57191613124877, 64.049114081469668 ], [ 12.579935336973932, 64.066218980558347 ], [ 11.930569288794231, 63.128317572676991 ], [ 11.992064243221535, 61.800362453856565 ], [ 12.631146681375242, 61.2935716823701 ], [ 12.300365838274899, 60.11793284773006 ], [ 11.468271925511175, 59.432393296946003 ], [ 11.027368605196926, 58.856149400459401 ], [ 10.356556837616097, 59.469807033925377 ], [ 8.382000359743643, 58.313288479233279 ], [ 7.048748406613299, 58.078884182357285 ], [ 5.665835402050419, 58.588155422593672 ], [ 5.308234490590735, 59.663231919993819 ], [ 4.992078077829007, 61.970998033284275 ], [ 5.912900424837886, 62.614472968182696 ], [ 8.553411085655767, 63.454008287196473 ], [ 10.527709181366788, 64.486038316497485 ], [ 12.358346795306375, 65.879725857193165 ], [ 14.761145867581604, 67.81064158799515 ], [ 16.435927361728972, 68.563205471461686 ], [ 19.184028354578516, 69.817444159617821 ], [ 21.378416375420613, 70.255169379346057 ], [ 23.023742303161583, 70.202071845166273 ], [ 24.546543409938522, 71.030496731237236 ], [ 26.370049676221811, 70.986261705195375 ], [ 28.165547316202918, 71.185474351680512 ] ] ], [ [ [ 24.72412, 77.85385 ], [ 22.49032, 77.44493 ], [ 20.72601, 77.67704 ], [ 21.41611, 77.93504 ], [ 20.8119, 78.25463 ], [ 22.88426, 78.45494 ], [ 23.28134, 78.07954 ], [ 24.72412, 77.85385 ] ] ], [ [ [ 18.25183, 79.70175 ], [ 21.54383, 78.95611 ], [ 19.02737, 78.5626 ], [ 18.47172, 77.82669 ], [ 17.59441, 77.63796 ], [ 17.1182, 76.80941 ], [ 15.91315, 76.77045 ], [ 13.76259, 77.38035 ], [ 14.66956, 77.73565 ], [ 13.1706, 78.02493 ], [ 11.22231, 78.8693 ], [ 10.44453, 79.65239 ], [ 13.17077, 80.01046 ], [ 13.71852, 79.66039 ], [ 15.14282, 79.67431 ], [ 15.52255, 80.01608 ], [ 16.99085, 80.05086 ], [ 18.25183, 79.70175 ] ] ], [ [ [ 25.447625359811894, 80.407340399894508 ], [ 27.407505730913499, 80.056405748200461 ], [ 25.924650506298178, 79.517833970854554 ], [ 23.02446577321362, 79.400011705229105 ], [ 20.075188429451885, 79.566823228667261 ], [ 19.897266473070914, 79.842361965647513 ], [ 18.462263624757924, 79.859880276194417 ], [ 17.368015170977458, 80.318896186027018 ], [ 20.455992059010697, 80.59815562613224 ], [ 21.907944777115404, 80.357679348462085 ], [ 22.919252557067438, 80.657144273593502 ], [ 25.447625359811894, 80.407340399894508 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Nepal\", \"sov_a3\": \"NPL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Nepal\", \"adm0_a3\": \"NPL\", \"geou_dif\": 0.000000, \"geounit\": \"Nepal\", \"gu_a3\": \"NPL\", \"su_dif\": 0.000000, \"subunit\": \"Nepal\", \"su_a3\": \"NPL\", \"brk_diff\": 0.000000, \"name\": \"Nepal\", \"name_long\": \"Nepal\", \"brk_a3\": \"NPL\", \"brk_name\": \"Nepal\", \"brk_group\": null, \"abbrev\": \"Nepal\", \"postal\": \"NP\", \"formal_en\": \"Nepal\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Nepal\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 12.000000, \"pop_est\": 28563377.000000, \"gdp_md_est\": 31080.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NP\", \"iso_a3\": \"NPL\", \"iso_n3\": \"524\", \"un_a3\": \"524\", \"wb_a2\": \"NP\", \"wb_a3\": \"NPL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NPL\", \"adm0_a3_us\": \"NPL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Southern Asia\", \"region_wb\": \"South Asia\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 88.12044070836987, 27.876541652939594 ], [ 88.043132765661227, 27.445818589786825 ], [ 88.174804315140918, 26.810405178325951 ], [ 88.06023766474982, 26.414615383402491 ], [ 87.227471958366294, 26.397898057556077 ], [ 86.024392938179176, 26.630984605408571 ], [ 85.251778598983378, 26.726198431906344 ], [ 84.675017938173795, 27.234901231387536 ], [ 83.304248895199549, 27.364505723575562 ], [ 81.999987420584972, 27.925479234319994 ], [ 81.057202589852025, 28.416095282499043 ], [ 80.088424513676273, 28.79447011974014 ], [ 80.476721225917402, 29.729865220655341 ], [ 81.111256138029319, 30.183480943313402 ], [ 81.525804477874743, 30.422716986608631 ], [ 82.327512648450877, 30.115268052688137 ], [ 83.33711510613719, 29.463731594352197 ], [ 83.898992954446726, 29.320226141877658 ], [ 84.23457970575015, 28.839893703724698 ], [ 85.011638218123039, 28.642773952747344 ], [ 85.823319940131512, 28.203575954698707 ], [ 86.954517043000607, 27.974261786403517 ], [ 88.12044070836987, 27.876541652939594 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"New Zealand\", \"sov_a3\": \"NZ1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"New Zealand\", \"adm0_a3\": \"NZL\", \"geou_dif\": 0.000000, \"geounit\": \"New Zealand\", \"gu_a3\": \"NZL\", \"su_dif\": 0.000000, \"subunit\": \"New Zealand\", \"su_a3\": \"NZL\", \"brk_diff\": 0.000000, \"name\": \"New Zealand\", \"name_long\": \"New Zealand\", \"brk_a3\": \"NZL\", \"brk_name\": \"New Zealand\", \"brk_group\": null, \"abbrev\": \"N.Z.\", \"postal\": \"NZ\", \"formal_en\": \"New Zealand\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"New Zealand\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 4.000000, \"pop_est\": 4213418.000000, \"gdp_md_est\": 116700.000000, \"pop_year\": -99.000000, \"lastcensus\": 2006.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"NZ\", \"iso_a3\": \"NZL\", \"iso_n3\": \"554\", \"un_a3\": \"554\", \"wb_a2\": \"NZ\", \"wb_a3\": \"NZL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"NZL\", \"adm0_a3_us\": \"NZL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Oceania\", \"region_un\": \"Oceania\", \"subregion\": \"Australia and New Zealand\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 11.000000, \"long_len\": 11.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 173.02037479074076, -40.919052422856424 ], [ 173.24723432850206, -41.331998793300784 ], [ 173.958405389702904, -40.926700534835618 ], [ 174.247586704808128, -41.34915536882167 ], [ 174.248516880589506, -41.770008233406756 ], [ 173.876446568087914, -42.233184096038826 ], [ 173.222739699595678, -42.970038344088564 ], [ 172.711246372770773, -43.372287693048506 ], [ 173.080112746470235, -43.853343601253584 ], [ 172.308583612352521, -43.865694268571346 ], [ 171.45292524646365, -44.242518812843727 ], [ 171.185137974327262, -44.897104180684892 ], [ 170.616697219116617, -45.908928724959708 ], [ 169.831422154009289, -46.355774834987599 ], [ 169.332331170934282, -46.641235446967855 ], [ 168.411353794628582, -46.619944756863589 ], [ 167.763744745146852, -46.290197442409209 ], [ 166.676886021184231, -46.21991749449225 ], [ 166.509144321964726, -45.852704766626218 ], [ 167.046424188503266, -45.110941257508671 ], [ 168.303763462596891, -44.123973077166127 ], [ 168.949408807651565, -43.935819187191427 ], [ 169.667814569373178, -43.555325616226341 ], [ 170.52491987536618, -43.03168832781283 ], [ 171.125089960004033, -42.512753594737788 ], [ 171.569713983443222, -41.767424411792135 ], [ 171.948708937871942, -41.514416599291152 ], [ 172.097227004278778, -40.956104424809681 ], [ 172.798579543344005, -40.493962090823473 ], [ 173.02037479074076, -40.919052422856424 ] ] ], [ [ [ 174.612008905330555, -36.156397393540544 ], [ 175.336615838927202, -37.20909799575827 ], [ 175.357596470437528, -36.526193943021127 ], [ 175.808886753642497, -36.798942152657688 ], [ 175.958490025127531, -37.55538176854607 ], [ 176.763195428776584, -37.881253350578703 ], [ 177.438813104560523, -37.961248467766495 ], [ 178.010354445708714, -37.579824721020131 ], [ 178.517093540762829, -37.695373223624799 ], [ 178.274731073313859, -38.582812595373099 ], [ 177.97046023997936, -39.166342868812976 ], [ 177.206992629299151, -39.145775648760846 ], [ 176.939980503647035, -39.449736423501577 ], [ 177.032946405340141, -39.879942722331478 ], [ 176.885823602605257, -40.065977878582174 ], [ 176.508017206119376, -40.604808038089587 ], [ 176.012440220440311, -41.289624118821507 ], [ 175.239567499082995, -41.688307793953243 ], [ 175.067898391009436, -41.425894870775082 ], [ 174.650972935278475, -41.281820977545451 ], [ 175.227630243223672, -40.459235528323404 ], [ 174.900156691789988, -39.90893320084723 ], [ 173.824046665744021, -39.508854262043513 ], [ 173.852261997775344, -39.146602471677468 ], [ 174.574801874080407, -38.797683200842755 ], [ 174.743473749081062, -38.027807712558385 ], [ 174.697016636450627, -37.381128838857961 ], [ 174.292028436579216, -36.711092217761447 ], [ 174.319003534235577, -36.534823907213891 ], [ 173.840996535535822, -36.121980889634116 ], [ 173.054171177459608, -35.237125339500338 ], [ 172.636005487353742, -34.529106540669389 ], [ 173.007042271209485, -34.450661716450341 ], [ 173.551298456107503, -35.006183363587965 ], [ 174.329390497126298, -35.265495700828623 ], [ 174.612008905330555, -36.156397393540544 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Oman\", \"sov_a3\": \"OMN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Oman\", \"adm0_a3\": \"OMN\", \"geou_dif\": 0.000000, \"geounit\": \"Oman\", \"gu_a3\": \"OMN\", \"su_dif\": 0.000000, \"subunit\": \"Oman\", \"su_a3\": \"OMN\", \"brk_diff\": 0.000000, \"name\": \"Oman\", \"name_long\": \"Oman\", \"brk_a3\": \"OMN\", \"brk_name\": \"Oman\", \"brk_group\": null, \"abbrev\": \"Oman\", \"postal\": \"OM\", \"formal_en\": \"Sultanate of Oman\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Oman\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 6.000000, \"pop_est\": 3418085.000000, \"gdp_md_est\": 66980.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"OM\", \"iso_a3\": \"OMN\", \"iso_n3\": \"512\", \"un_a3\": \"512\", \"wb_a2\": \"OM\", \"wb_a3\": \"OMN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"OMN\", \"adm0_a3_us\": \"OMN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 58.861141391846587, 21.114034532144302 ], [ 58.487985874266968, 20.428985907467109 ], [ 58.034318475176605, 20.481437486243351 ], [ 57.826372511634105, 20.243002427648634 ], [ 57.665762160070955, 19.736004950433113 ], [ 57.788700392493382, 19.06757029873765 ], [ 57.694390903560674, 18.944709580963803 ], [ 57.234263950433814, 18.947991034414258 ], [ 56.609650913321985, 18.574267076079479 ], [ 56.512189162019496, 18.087113348863937 ], [ 56.283520949128018, 17.876066799383949 ], [ 55.661491733630697, 17.884128322821539 ], [ 55.269939406155203, 17.632309068263197 ], [ 55.274900343655105, 17.228354397037663 ], [ 54.791002231674128, 16.950696926333364 ], [ 54.239252964093765, 17.044980577049984 ], [ 53.570508253804604, 16.707662665264678 ], [ 53.108572625547509, 16.651051133688981 ], [ 52.78218427919208, 17.349742336491232 ], [ 52.000009800022241, 19.000003363516072 ], [ 54.999981723862419, 19.999994004796122 ], [ 55.666659376859883, 22.000001125572311 ], [ 55.208341098863201, 22.708329982997014 ], [ 55.234489373602884, 23.110992743415352 ], [ 55.525841098864504, 23.524869289640918 ], [ 55.528631626208295, 23.933604030853502 ], [ 55.981213820220518, 24.130542914317857 ], [ 55.804118686756254, 24.269604193615294 ], [ 55.886232537668064, 24.920830593357493 ], [ 56.396847365143998, 24.924732163995515 ], [ 56.845140415276063, 24.241673081961494 ], [ 57.40345258975745, 23.878594468678841 ], [ 58.136947869708337, 23.747930609628838 ], [ 58.729211460205448, 23.565667832935418 ], [ 59.18050174341036, 22.99239533130546 ], [ 59.45009769067704, 22.6602709009656 ], [ 59.808060337162857, 22.533611965418203 ], [ 59.806148309168094, 22.310524807214193 ], [ 59.442191196536413, 21.714540513592084 ], [ 59.282407667889885, 21.433885809814882 ], [ 58.861141391846587, 21.114034532144302 ] ] ], [ [ [ 56.391421339753407, 25.895990708921261 ], [ 56.261041701080927, 25.714606431576755 ], [ 56.070820753814559, 26.055464178973949 ], [ 56.362017449779358, 26.395934353128951 ], [ 56.485679152253823, 26.309117946878672 ], [ 56.391421339753407, 25.895990708921261 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Pakistan\", \"sov_a3\": \"PAK\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Pakistan\", \"adm0_a3\": \"PAK\", \"geou_dif\": 0.000000, \"geounit\": \"Pakistan\", \"gu_a3\": \"PAK\", \"su_dif\": 0.000000, \"subunit\": \"Pakistan\", \"su_a3\": \"PAK\", \"brk_diff\": 0.000000, \"name\": \"Pakistan\", \"name_long\": \"Pakistan\", \"brk_a3\": \"PAK\", \"brk_name\": \"Pakistan\", \"brk_group\": null, \"abbrev\": \"Pak.\", \"postal\": \"PK\", \"formal_en\": \"Islamic Republic of Pakistan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Pakistan\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 11.000000, \"pop_est\": 176242949.000000, \"gdp_md_est\": 427300.000000, \"pop_year\": -99.000000, \"lastcensus\": 1998.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PK\", \"iso_a3\": \"PAK\", \"iso_n3\": \"586\", \"un_a3\": \"586\", \"wb_a2\": \"PK\", \"wb_a3\": \"PAK\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PAK\", \"adm0_a3_us\": \"PAK\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Southern Asia\", \"region_wb\": \"South Asia\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 75.158027785140916, 37.133030910789117 ], [ 75.89689741405013, 36.666806138651836 ], [ 76.192848341785691, 35.898403428687828 ], [ 77.837450799474567, 35.494009507787766 ], [ 76.871721632804025, 34.653544012992739 ], [ 75.757060988268336, 34.504922593721318 ], [ 74.240202671204969, 34.748887030571254 ], [ 73.749948358051967, 34.317698879527853 ], [ 74.104293654277342, 33.441473293586853 ], [ 74.451559279278712, 32.764899603805503 ], [ 75.258641798813215, 32.271105455040498 ], [ 74.405928989565012, 31.692639471965279 ], [ 74.421380242820277, 30.979814764931177 ], [ 73.450638462217427, 29.97641347911987 ], [ 72.823751662084703, 28.961591701772054 ], [ 71.777665643200322, 27.913180243434525 ], [ 70.616496209601934, 27.989196275335868 ], [ 69.514392938113133, 26.940965684511372 ], [ 70.168926629522019, 26.491871649678842 ], [ 70.282873162725593, 25.72222870533983 ], [ 70.844699334602836, 25.215102037043518 ], [ 71.043240187468228, 24.3565239527302 ], [ 68.842599318318776, 24.359133612560939 ], [ 68.176645135373406, 23.691965033456711 ], [ 67.443666619745471, 23.944843654876991 ], [ 67.145441928989072, 24.663611151624647 ], [ 66.372827589793275, 25.425140896093851 ], [ 64.530407749291129, 25.237038682551429 ], [ 62.905700718034609, 25.218409328710209 ], [ 61.49736290878419, 25.078237006118499 ], [ 61.87418745305655, 26.239974880472104 ], [ 63.316631707619592, 26.756532497661667 ], [ 63.233897739520302, 27.217047024030709 ], [ 62.755425652929858, 27.378923448184988 ], [ 62.727830438085988, 28.25964488373539 ], [ 61.771868117118629, 28.699333807890799 ], [ 61.36930870956494, 29.303276272085924 ], [ 60.874248488208792, 29.829238999952608 ], [ 62.549856805272782, 29.318572496044311 ], [ 63.550260858011171, 29.468330796826166 ], [ 64.148002150331251, 29.340819200145972 ], [ 64.350418735618518, 29.560030625928093 ], [ 65.046862013616106, 29.472180691031905 ], [ 66.346472609324422, 29.887943427036177 ], [ 66.381457553986024, 30.738899237586452 ], [ 66.938891229118468, 31.304911200479353 ], [ 67.683393589147471, 31.303154201781421 ], [ 67.792689243444784, 31.582930406209631 ], [ 68.556932000609322, 31.713310044882018 ], [ 68.926676873657669, 31.620189113892067 ], [ 69.317764113242561, 31.901412258424443 ], [ 69.262522007122556, 32.5019440780883 ], [ 69.687147251264861, 33.105498969041236 ], [ 70.323594191371598, 33.358532619758392 ], [ 69.930543247359594, 34.02012014417511 ], [ 70.881803012988399, 33.98885590263852 ], [ 71.156773309213463, 34.348911444632151 ], [ 71.115018751921639, 34.733125718722235 ], [ 71.613076206350712, 35.153203436822864 ], [ 71.498767938121091, 35.650563259416003 ], [ 71.26234826038575, 36.074387518857804 ], [ 71.846291945283923, 36.509942328429858 ], [ 72.920024855444467, 36.720007025696319 ], [ 74.067551710917826, 36.836175645488453 ], [ 74.575892775372978, 37.020841376283457 ], [ 75.158027785140916, 37.133030910789117 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Panama\", \"sov_a3\": \"PAN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Panama\", \"adm0_a3\": \"PAN\", \"geou_dif\": 0.000000, \"geounit\": \"Panama\", \"gu_a3\": \"PAN\", \"su_dif\": 0.000000, \"subunit\": \"Panama\", \"su_a3\": \"PAN\", \"brk_diff\": 0.000000, \"name\": \"Panama\", \"name_long\": \"Panama\", \"brk_a3\": \"PAN\", \"brk_name\": \"Panama\", \"brk_group\": null, \"abbrev\": \"Pan.\", \"postal\": \"PA\", \"formal_en\": \"Republic of Panama\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Panama\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 3.000000, \"pop_est\": 3360474.000000, \"gdp_md_est\": 38830.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PA\", \"iso_a3\": \"PAN\", \"iso_n3\": \"591\", \"un_a3\": \"591\", \"wb_a2\": \"PA\", \"wb_a3\": \"PAN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PAN\", \"adm0_a3_us\": \"PAN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Central America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -77.881571417945253, 7.223771267114785 ], [ -78.214936082660117, 7.512254950384161 ], [ -78.429160732726075, 8.052041123888927 ], [ -78.182095709938636, 8.319182440621773 ], [ -78.435465257465694, 8.387705389840789 ], [ -78.622120530903942, 8.718124497915028 ], [ -79.120307176413746, 8.996092027213024 ], [ -79.55787736684519, 8.932374986197146 ], [ -79.760578172510051, 8.584515082224399 ], [ -80.164481167303336, 8.333315944853595 ], [ -80.382659064439622, 8.298408514840432 ], [ -80.4806892564973, 8.090307522001069 ], [ -80.003689948227162, 7.547524115423372 ], [ -80.276670701808996, 7.419754136581716 ], [ -80.42115800649708, 7.271571966984765 ], [ -80.886400926420805, 7.220541490096537 ], [ -81.059542812814726, 7.817921047390597 ], [ -81.189715745757951, 7.64790558515034 ], [ -81.51951473664468, 7.706610012233909 ], [ -81.721311204744467, 8.108962714058435 ], [ -82.131441209628917, 8.175392767769637 ], [ -82.390934414382571, 8.292362372262289 ], [ -82.82008134635042, 8.290863755725823 ], [ -82.850958014644817, 8.073822740099956 ], [ -82.965783047197363, 8.225027980985985 ], [ -82.913176439124214, 8.42351715741907 ], [ -82.829770677405165, 8.62629547773237 ], [ -82.868657192704774, 8.807266343618522 ], [ -82.719183112300527, 8.925708726431495 ], [ -82.927154914059159, 9.074330145702916 ], [ -82.932890998043575, 9.476812038608173 ], [ -82.546196255203483, 9.566134751824677 ], [ -82.187122565423408, 9.207448635286781 ], [ -82.207586432610967, 8.9955752628901 ], [ -81.808566860669288, 8.950616766796173 ], [ -81.714154018872037, 9.031955471223583 ], [ -81.439287075511544, 8.786234035675719 ], [ -80.947301601876759, 8.858503526235907 ], [ -80.521901211250082, 9.111072089062432 ], [ -79.914599778955989, 9.312765204297619 ], [ -79.573302781884308, 9.611610012241528 ], [ -79.021191779277927, 9.552931423374105 ], [ -79.058450486960368, 9.454565334506526 ], [ -78.500887620747193, 9.420458889193881 ], [ -78.055927700498017, 9.247730414258299 ], [ -77.729513515926413, 8.946844387238869 ], [ -77.353360765273862, 8.67050466555807 ], [ -77.474722866511328, 8.524286200388218 ], [ -77.242566494440084, 7.935278225125444 ], [ -77.431107957656991, 7.638061224798734 ], [ -77.753413865861404, 7.709839789252143 ], [ -77.881571417945253, 7.223771267114785 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Peru\", \"sov_a3\": \"PER\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Peru\", \"adm0_a3\": \"PER\", \"geou_dif\": 0.000000, \"geounit\": \"Peru\", \"gu_a3\": \"PER\", \"su_dif\": 0.000000, \"subunit\": \"Peru\", \"su_a3\": \"PER\", \"brk_diff\": 0.000000, \"name\": \"Peru\", \"name_long\": \"Peru\", \"brk_a3\": \"PER\", \"brk_name\": \"Peru\", \"brk_group\": null, \"abbrev\": \"Peru\", \"postal\": \"PE\", \"formal_en\": \"Republic of Peru\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Peru\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 11.000000, \"pop_est\": 29546963.000000, \"gdp_md_est\": 247300.000000, \"pop_year\": -99.000000, \"lastcensus\": 2007.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PE\", \"iso_a3\": \"PER\", \"iso_n3\": \"604\", \"un_a3\": \"604\", \"wb_a2\": \"PE\", \"wb_a3\": \"PER\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PER\", \"adm0_a3_us\": \"PER\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -69.59042375352405, -17.580011895419332 ], [ -69.858443569605868, -18.092693780187012 ], [ -70.372572394477714, -18.347975355708869 ], [ -71.375250210236928, -17.773798516513857 ], [ -71.462040778271131, -17.363487644116383 ], [ -73.444529588500416, -16.359362888252996 ], [ -75.237882656541444, -15.265682875227782 ], [ -76.009205084929945, -14.649286390850321 ], [ -76.423469204397747, -13.823186944232432 ], [ -76.25924150257417, -13.535039157772943 ], [ -77.106192389621839, -12.22271615972082 ], [ -78.092152879534638, -10.377712497604065 ], [ -79.036953091126946, -8.386567884965892 ], [ -79.445920376284846, -7.93083342858386 ], [ -79.760578172510051, -7.194340915560084 ], [ -80.537481655586078, -6.541667575713717 ], [ -81.249996304026425, -6.136834405139183 ], [ -80.926346808582437, -5.690556735866565 ], [ -81.410942552399462, -4.736764825055459 ], [ -81.099669562489368, -4.036394138203697 ], [ -80.302560594387216, -3.404856459164713 ], [ -80.184014858709673, -3.821161797708044 ], [ -80.469294603176948, -4.059286797708999 ], [ -80.442241990872162, -4.425724379090674 ], [ -80.02890804718561, -4.346090996928893 ], [ -79.624979214176179, -4.454198093283495 ], [ -79.205289069317729, -4.959128513207389 ], [ -78.639897223612337, -4.547784112164074 ], [ -78.450683966775642, -3.873096612161376 ], [ -77.837904832658609, -3.003020521663103 ], [ -76.635394253226721, -2.608677666843818 ], [ -75.544995693652041, -1.56160979574588 ], [ -75.233722703741947, -0.911416924649529 ], [ -75.373223232713855, -0.15203175212045 ], [ -75.106624518520078, -0.05720549886486 ], [ -74.441600511355972, -0.530820000819887 ], [ -74.122395189089062, -1.002832533373848 ], [ -73.6595035468346, -1.260491224781134 ], [ -73.070392218707241, -2.308954359550953 ], [ -72.325786505813653, -2.434218031426454 ], [ -71.774760708285399, -2.169789727388938 ], [ -71.413645799429787, -2.342802422702128 ], [ -70.813475714791963, -2.256864515800743 ], [ -70.047708502874855, -2.725156345229699 ], [ -70.692682054309714, -3.742872002785859 ], [ -70.394043952094989, -3.766591485207825 ], [ -69.893635219996625, -4.298186944194327 ], [ -70.794768846302304, -4.251264743673303 ], [ -70.928843349883579, -4.401591485210368 ], [ -71.748405727816547, -4.593982842633011 ], [ -72.891927659787257, -5.274561455916981 ], [ -72.9645072089412, -5.741251315944893 ], [ -73.21971126981461, -6.089188734566078 ], [ -73.120027431923603, -6.629930922068239 ], [ -73.724486660441642, -6.91859547285064 ], [ -73.723401455363501, -7.340998630404414 ], [ -73.987235480429661, -7.523829847853065 ], [ -73.571059332967067, -8.424446709835834 ], [ -73.015382656532552, -9.032833347208062 ], [ -73.226713426390162, -9.462212823121234 ], [ -72.563033006465645, -9.520193780152717 ], [ -72.18489071316985, -10.053597914269432 ], [ -71.302412278921537, -10.079436130415374 ], [ -70.481893886991173, -9.490118096558845 ], [ -70.548685675728407, -11.009146823778465 ], [ -70.093752204046893, -11.123971856331012 ], [ -69.529678107364958, -10.951734307502194 ], [ -68.665079718689626, -12.561300144097173 ], [ -68.88007951523997, -12.899729099176653 ], [ -68.92922380234954, -13.602683607643009 ], [ -68.948886684836594, -14.453639418193283 ], [ -69.339534674747014, -14.953195489158832 ], [ -69.160346645774951, -15.323973890853019 ], [ -69.389764166934711, -15.660129082911652 ], [ -68.959635382753305, -16.50069793057127 ], [ -69.59042375352405, -17.580011895419332 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Philippines\", \"sov_a3\": \"PHL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Philippines\", \"adm0_a3\": \"PHL\", \"geou_dif\": 0.000000, \"geounit\": \"Philippines\", \"gu_a3\": \"PHL\", \"su_dif\": 0.000000, \"subunit\": \"Philippines\", \"su_a3\": \"PHL\", \"brk_diff\": 0.000000, \"name\": \"Philippines\", \"name_long\": \"Philippines\", \"brk_a3\": \"PHL\", \"brk_name\": \"Philippines\", \"brk_group\": null, \"abbrev\": \"Phil.\", \"postal\": \"PH\", \"formal_en\": \"Republic of the Philippines\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Philippines\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 8.000000, \"pop_est\": 97976603.000000, \"gdp_md_est\": 317500.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PH\", \"iso_a3\": \"PHL\", \"iso_n3\": \"608\", \"un_a3\": \"608\", \"wb_a2\": \"PH\", \"wb_a3\": \"PHL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PHL\", \"adm0_a3_us\": \"PHL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 11.000000, \"long_len\": 11.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 126.37681359263749, 8.414706325713354 ], [ 126.478512811387901, 7.750354112168978 ], [ 126.53742394420064, 7.189380601424574 ], [ 126.196772902532558, 6.27429433840004 ], [ 125.831420526229095, 7.293715318221857 ], [ 125.363852166852297, 6.786485297060992 ], [ 125.683160841983721, 6.049656887227258 ], [ 125.396511672060655, 5.58100332277229 ], [ 124.21978763234236, 6.161355495626182 ], [ 123.938719517106932, 6.885135606306122 ], [ 124.243662144061346, 7.360610459823661 ], [ 123.61021243702757, 7.833527329942754 ], [ 123.296071405125218, 7.418875637232787 ], [ 122.825505812675402, 7.457374579290217 ], [ 122.085499302255784, 6.899424139834849 ], [ 121.919928013192617, 7.192119452336073 ], [ 122.31235884001714, 8.034962063016508 ], [ 122.942397902519673, 8.316236883981176 ], [ 123.487687616063539, 8.693009751821194 ], [ 123.841154412939858, 8.240324204944386 ], [ 124.601469761250229, 8.514157619659017 ], [ 124.764612257995651, 8.96040945071546 ], [ 125.471390822451582, 8.986996975129642 ], [ 125.412117954612796, 9.760334784377548 ], [ 126.222714471543185, 9.286074327018852 ], [ 126.306636997585116, 8.782487494334575 ], [ 126.37681359263749, 8.414706325713354 ] ] ], [ [ [ 123.982437778825812, 10.278778591345812 ], [ 123.623183221532798, 9.950090643753299 ], [ 123.309920688979361, 9.318268744336677 ], [ 122.99588300994165, 9.0221886255204 ], [ 122.380054966319477, 9.713360907424203 ], [ 122.5860889018671, 9.981044826696106 ], [ 122.837081333508735, 10.261156927934238 ], [ 122.947410516451924, 10.881868394408031 ], [ 123.498849725438475, 10.940624497923949 ], [ 123.33777428598475, 10.267383938025446 ], [ 124.077935825701246, 11.23272553145371 ], [ 123.982437778825812, 10.278778591345812 ] ] ], [ [ [ 118.504580926590364, 9.316382554558089 ], [ 117.174274530100689, 8.367499904814665 ], [ 117.664477166821399, 9.066888739452935 ], [ 118.386913690261764, 9.684499619989225 ], [ 118.987342157061079, 10.376292019080509 ], [ 119.511496209797571, 11.369668077027214 ], [ 119.689676548339918, 10.554291490109875 ], [ 119.029458449379007, 10.003653265823871 ], [ 118.504580926590364, 9.316382554558089 ] ] ], [ [ [ 121.883547804859148, 11.89175507247198 ], [ 122.483821242361472, 11.582187404827508 ], [ 123.120216506035973, 11.58366018314787 ], [ 123.100837843926485, 11.16593374271649 ], [ 122.637713657726721, 10.741308498574227 ], [ 122.002610304859587, 10.441016750526089 ], [ 121.967366978036551, 10.905691229694625 ], [ 122.038370396005547, 11.41584096928004 ], [ 121.883547804859148, 11.89175507247198 ] ] ], [ [ [ 125.502551711123516, 12.162694606978349 ], [ 125.78346479706218, 11.046121934447768 ], [ 125.011883986512288, 11.31145457605038 ], [ 125.032761265158143, 10.975816148314706 ], [ 125.277449172060273, 10.358722032101312 ], [ 124.801819289245742, 10.134678859899893 ], [ 124.760168084818503, 10.837995103392302 ], [ 124.459101190286077, 10.889929917845635 ], [ 124.302521600441736, 11.495370998577229 ], [ 124.891012811381614, 11.415582587118593 ], [ 124.87799035044398, 11.794189968304991 ], [ 124.266761509295719, 12.557760931849685 ], [ 125.227116327007849, 12.535720933477194 ], [ 125.502551711123516, 12.162694606978349 ] ] ], [ [ [ 121.52739383350351, 13.069590155484519 ], [ 121.262190382981572, 12.205560207564403 ], [ 120.833896112146562, 12.704496161342419 ], [ 120.323436313967505, 13.46641347905387 ], [ 121.180128208502168, 13.429697373910443 ], [ 121.52739383350351, 13.069590155484519 ] ] ], [ [ [ 121.321308221523594, 18.504064642811016 ], [ 121.937601353036399, 18.218552354398383 ], [ 122.246006300954292, 18.478949896717097 ], [ 122.336956821787993, 18.224882717354177 ], [ 122.174279412933203, 17.810282701076375 ], [ 122.515653924653378, 17.093504746971973 ], [ 122.252310825693911, 16.262444362854126 ], [ 121.662786086108298, 15.931017564350128 ], [ 121.50506961475341, 15.124813544164624 ], [ 121.728828566577278, 14.328376369682246 ], [ 122.258925409027341, 14.218202216035976 ], [ 122.701275669445664, 14.336541245984421 ], [ 123.950295037940265, 13.78213064214107 ], [ 123.855107049658642, 13.237771104378467 ], [ 124.181288690284902, 12.997527370653472 ], [ 124.077419061378265, 12.536676947474575 ], [ 123.298035109552274, 13.027525539598983 ], [ 122.928651971529945, 13.552919826710408 ], [ 122.671355015148691, 13.185836289925135 ], [ 122.034649692880549, 13.784481919810347 ], [ 121.126384718918615, 13.636687323455561 ], [ 120.628637323083325, 13.857655747935652 ], [ 120.679383579593861, 14.271015529838323 ], [ 120.991819289230563, 14.525392767795083 ], [ 120.693336216312701, 14.756670640517285 ], [ 120.564145135583004, 14.396279201713824 ], [ 120.070428501466409, 14.970869452367097 ], [ 119.92092858284613, 15.40634674729074 ], [ 119.883773228028275, 16.363704331929966 ], [ 120.28648766487882, 16.034628811095331 ], [ 120.390047235191759, 17.599081122299509 ], [ 120.715867140791914, 18.505227362537539 ], [ 121.321308221523594, 18.504064642811016 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Papua New Guinea\", \"sov_a3\": \"PNG\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Papua New Guinea\", \"adm0_a3\": \"PNG\", \"geou_dif\": 0.000000, \"geounit\": \"Papua New Guinea\", \"gu_a3\": \"PNG\", \"su_dif\": 1.000000, \"subunit\": \"Papua New Guinea\", \"su_a3\": \"PN1\", \"brk_diff\": 0.000000, \"name\": \"Papua New Guinea\", \"name_long\": \"Papua New Guinea\", \"brk_a3\": \"PN1\", \"brk_name\": \"Papua New Guinea\", \"brk_group\": null, \"abbrev\": \"P.N.G.\", \"postal\": \"PG\", \"formal_en\": \"Independent State of Papua New Guinea\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Papua New Guinea\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 1.000000, \"pop_est\": 6057263.000000, \"gdp_md_est\": 13210.000000, \"pop_year\": -99.000000, \"lastcensus\": 2000.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PG\", \"iso_a3\": \"PNG\", \"iso_n3\": \"598\", \"un_a3\": \"598\", \"wb_a2\": \"PG\", \"wb_a3\": \"PNG\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PNG\", \"adm0_a3_us\": \"PNG\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Oceania\", \"region_un\": \"Oceania\", \"subregion\": \"Melanesia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 16.000000, \"long_len\": 16.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 155.88002566957843, -6.81999684003776 ], [ 155.599991082988794, -6.919990736522493 ], [ 155.166994256815116, -6.535931491729301 ], [ 154.729191522438356, -5.900828138862209 ], [ 154.514114211239672, -5.139117526880014 ], [ 154.652503696917364, -5.04243092206184 ], [ 154.759990676084414, -5.339983819198494 ], [ 155.062917922179366, -5.566791680527487 ], [ 155.547746209941721, -6.200654799019659 ], [ 156.019965448224781, -6.540013929880388 ], [ 155.88002566957843, -6.81999684003776 ] ] ], [ [ [ 151.98279585185449, -5.478063246282346 ], [ 151.459106887008687, -5.560280450058741 ], [ 151.301390415653913, -5.840728448106702 ], [ 150.754447056276689, -6.083762709175389 ], [ 150.241196730753842, -6.317753594592986 ], [ 149.709963006793345, -6.316513360218053 ], [ 148.89006473205049, -6.026040134305433 ], [ 148.318936802360753, -5.74714242922613 ], [ 148.401825799756892, -5.437755629094724 ], [ 149.298411900020852, -5.583741550319218 ], [ 149.845561965127246, -5.505503431829339 ], [ 149.996250441690307, -5.026101169457675 ], [ 150.139755894164949, -5.001348158389789 ], [ 150.236907586873514, -5.532220147324281 ], [ 150.807467075808091, -5.455842380396888 ], [ 151.089672072554009, -5.113692722192368 ], [ 151.647880894170868, -4.757073662946169 ], [ 151.537861769821546, -4.16780730552189 ], [ 152.136791620084381, -4.14879037843852 ], [ 152.338743117481016, -4.312966403829762 ], [ 152.318692661751783, -4.86766122805075 ], [ 151.98279585185449, -5.478063246282346 ] ] ], [ [ [ 147.191873814074967, -7.38802418378998 ], [ 148.084635858349401, -8.044108168167611 ], [ 148.734105259393601, -9.104663588093757 ], [ 149.306835158484461, -9.071435642130069 ], [ 149.266630894161352, -9.514406019736029 ], [ 150.038728469034339, -9.684318129111702 ], [ 149.73879845601229, -9.872937106977005 ], [ 150.801627638959161, -10.293686618697421 ], [ 150.690574985963877, -10.582712904505868 ], [ 150.028393182575854, -10.652476088099931 ], [ 149.782310012002, -10.393267103723943 ], [ 148.923137648717244, -10.280922539921363 ], [ 147.913018426708021, -10.130440769087471 ], [ 147.135443150012264, -9.492443536012019 ], [ 146.567880894150647, -8.942554619994155 ], [ 146.048481073184945, -8.06741423913131 ], [ 144.744167922138018, -7.630128269077474 ], [ 143.89708784400969, -7.915330498896282 ], [ 143.286375767184296, -8.245491224809058 ], [ 143.413913202080693, -8.983068942910947 ], [ 142.628431431244252, -9.326820570516503 ], [ 142.068258905200224, -9.159595635620036 ], [ 141.033851760013903, -9.117892754760419 ], [ 141.017056919519035, -5.859021905138022 ], [ 141.000210402591875, -2.600151055515624 ], [ 142.7352466167915, -3.289152927263217 ], [ 144.583970982033264, -3.861417738463402 ], [ 145.273179559509998, -4.373737888205028 ], [ 145.829786411725678, -4.876497897972683 ], [ 145.981921828392984, -5.465609226100014 ], [ 147.648073358347602, -6.083659356310804 ], [ 147.891107619416204, -6.614014580922316 ], [ 146.97090538959489, -6.721656589386257 ], [ 147.191873814074967, -7.38802418378998 ] ] ], [ [ [ 153.140037876598768, -4.499983412294114 ], [ 152.827292108368312, -4.766427097190999 ], [ 152.638673130503008, -4.176127211120928 ], [ 152.406025832324957, -3.789742526874562 ], [ 151.953236932583565, -3.462062269711822 ], [ 151.384279413050052, -3.035421644710112 ], [ 150.662049595338857, -2.741486097833956 ], [ 150.939965448204561, -2.500002129734028 ], [ 151.479984165654542, -2.779985039891386 ], [ 151.820015090135115, -2.999971612157907 ], [ 152.239989455371102, -3.240008640153661 ], [ 152.640016717742554, -3.659983005389648 ], [ 153.01999352438466, -3.980015150573294 ], [ 153.140037876598768, -4.499983412294114 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Poland\", \"sov_a3\": \"POL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Poland\", \"adm0_a3\": \"POL\", \"geou_dif\": 0.000000, \"geounit\": \"Poland\", \"gu_a3\": \"POL\", \"su_dif\": 0.000000, \"subunit\": \"Poland\", \"su_a3\": \"POL\", \"brk_diff\": 0.000000, \"name\": \"Poland\", \"name_long\": \"Poland\", \"brk_a3\": \"POL\", \"brk_name\": \"Poland\", \"brk_group\": null, \"abbrev\": \"Pol.\", \"postal\": \"PL\", \"formal_en\": \"Republic of Poland\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Poland\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 7.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 2.000000, \"pop_est\": 38482919.000000, \"gdp_md_est\": 667900.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PL\", \"iso_a3\": \"POL\", \"iso_n3\": \"616\", \"un_a3\": \"616\", \"wb_a2\": \"PL\", \"wb_a3\": \"POL\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"POL\", \"adm0_a3_us\": \"POL\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 15.016995883858669, 51.10667409932158 ], [ 14.607098422919535, 51.745188096719971 ], [ 14.685026482815687, 52.089947414755201 ], [ 14.437599725002201, 52.62485016540839 ], [ 14.074521111719491, 52.981262518925433 ], [ 14.353315463934138, 53.248171291712971 ], [ 14.119686313542587, 53.75702912049104 ], [ 14.802900424873458, 54.050706285205749 ], [ 16.363477003655731, 54.513158677785725 ], [ 17.622831658608675, 54.851535956432912 ], [ 18.620858595461641, 54.682605699270781 ], [ 18.696254510175464, 54.43871877706929 ], [ 19.660640089606403, 54.426083889373928 ], [ 20.892244500418627, 54.312524929412533 ], [ 22.731098667092652, 54.327536932993326 ], [ 23.243987257589509, 54.220566718149144 ], [ 23.484127638449849, 53.912497667041137 ], [ 23.527535841575002, 53.470121568406555 ], [ 23.804934930117781, 53.089731350306074 ], [ 23.799198846133379, 52.691099351606567 ], [ 23.199493849386187, 52.486977444053672 ], [ 23.508002150168693, 52.023646552124731 ], [ 23.527070753684374, 51.57845408793024 ], [ 24.029985792748903, 50.705406602575181 ], [ 23.922757195743262, 50.424881089878753 ], [ 23.426508416444392, 50.308505764357456 ], [ 22.518450148211603, 49.476773586619743 ], [ 22.776418898212626, 49.027395331409622 ], [ 22.558137648211755, 49.085738023467144 ], [ 21.607808058364213, 49.470107326854091 ], [ 20.887955356538413, 49.32877228453583 ], [ 20.415839471119853, 49.431453355499769 ], [ 19.825022820726872, 49.217125352569226 ], [ 19.320712517990472, 49.571574001659194 ], [ 18.909574822676319, 49.435845852244576 ], [ 18.853144158613617, 49.496229763377642 ], [ 18.392913852622172, 49.988628648470751 ], [ 17.649445021238989, 50.049038397819956 ], [ 17.554567091551121, 50.362145901076417 ], [ 16.868769158605659, 50.47397370055603 ], [ 16.719475945714436, 50.215746568393541 ], [ 16.176253289462267, 50.422607326857907 ], [ 16.238626743238569, 50.697732652379841 ], [ 15.490972120839729, 50.784729926143207 ], [ 15.016995883858669, 51.10667409932158 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"United States of America\", \"sov_a3\": \"US1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Dependency\", \"admin\": \"Puerto Rico\", \"adm0_a3\": \"PRI\", \"geou_dif\": 0.000000, \"geounit\": \"Puerto Rico\", \"gu_a3\": \"PRI\", \"su_dif\": 0.000000, \"subunit\": \"Puerto Rico\", \"su_a3\": \"PRI\", \"brk_diff\": 0.000000, \"name\": \"Puerto Rico\", \"name_long\": \"Puerto Rico\", \"brk_a3\": \"PRI\", \"brk_name\": \"Puerto Rico\", \"brk_group\": null, \"abbrev\": \"P.R.\", \"postal\": \"PR\", \"formal_en\": \"Commonwealth of Puerto Rico\", \"formal_fr\": null, \"note_adm0\": \"Commonwealth of U.S.A.\", \"note_brk\": null, \"name_sort\": \"Puerto Rico\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 1.000000, \"pop_est\": 3971020.000000, \"gdp_md_est\": 70230.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PR\", \"iso_a3\": \"PRI\", \"iso_n3\": \"630\", \"un_a3\": \"630\", \"wb_a2\": \"PR\", \"wb_a3\": \"PRI\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PRI\", \"adm0_a3_us\": \"PRI\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Caribbean\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 11.000000, \"long_len\": 11.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": -99.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -66.282434455008215, 18.514761664295364 ], [ -65.7713028632093, 18.426679185453878 ], [ -65.591003790942949, 18.228034979723915 ], [ -65.847163865813769, 17.975905666571862 ], [ -66.599934455009489, 17.981822618069273 ], [ -67.184162360285271, 17.946553453030077 ], [ -67.242427537694354, 18.374460150622937 ], [ -67.10067908391774, 18.520601101144351 ], [ -66.282434455008215, 18.514761664295364 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"North Korea\", \"sov_a3\": \"PRK\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"North Korea\", \"adm0_a3\": \"PRK\", \"geou_dif\": 0.000000, \"geounit\": \"North Korea\", \"gu_a3\": \"PRK\", \"su_dif\": 0.000000, \"subunit\": \"North Korea\", \"su_a3\": \"PRK\", \"brk_diff\": 0.000000, \"name\": \"Dem. Rep. Korea\", \"name_long\": \"Dem. Rep. Korea\", \"brk_a3\": \"PRK\", \"brk_name\": \"Dem. Rep. Korea\", \"brk_group\": null, \"abbrev\": \"N.K.\", \"postal\": \"KP\", \"formal_en\": \"Democratic People's Republic of Korea\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Korea, Dem. Rep.\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 9.000000, \"pop_est\": 22665345.000000, \"gdp_md_est\": 40000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"KP\", \"iso_a3\": \"PRK\", \"iso_n3\": \"408\", \"un_a3\": \"408\", \"wb_a2\": \"KP\", \"wb_a3\": \"PRK\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PRK\", \"adm0_a3_us\": \"PRK\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 15.000000, \"long_len\": 15.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 130.640015903852429, 42.395009467125277 ], [ 130.78000735893113, 42.22000722916885 ], [ 130.400030552289024, 42.280003567059708 ], [ 129.965948521037262, 41.94136790625106 ], [ 129.667362095254816, 41.601104437825228 ], [ 129.705189243692473, 40.882827867184332 ], [ 129.188114862179987, 40.661807766271991 ], [ 129.010399611528214, 40.485436102859815 ], [ 128.63336836152672, 40.189846910150308 ], [ 127.96741417858135, 40.025412502597561 ], [ 127.533435500194173, 39.756850083976701 ], [ 127.502119582225305, 39.323930772451533 ], [ 127.385434198110275, 39.213472398427655 ], [ 127.783342726757724, 39.050898342437421 ], [ 128.349716424676615, 38.61224294692785 ], [ 128.205745884311455, 38.370397243801889 ], [ 127.780035435091008, 38.304535630845891 ], [ 127.07330854706737, 38.2561148137884 ], [ 126.683719924018931, 37.804772854151182 ], [ 126.237338901881756, 37.840377916000278 ], [ 126.174758742376241, 37.74968577732804 ], [ 125.689103631697208, 37.940010077459021 ], [ 125.568439162295704, 37.752088731429623 ], [ 125.275330438336198, 37.669070542952724 ], [ 125.240087111513162, 37.857224432927438 ], [ 124.981033156433966, 37.94882090916478 ], [ 124.71216067921938, 38.10834605564979 ], [ 124.985994093933982, 38.54847422947968 ], [ 125.221948683778706, 38.665857245430672 ], [ 125.132858514507518, 38.848559271798592 ], [ 125.386589797060594, 39.387957872061165 ], [ 125.321115757346817, 39.55138458918421 ], [ 124.737482131042398, 39.660344346671621 ], [ 124.265624627785314, 39.928493353834156 ], [ 125.079941847840644, 40.569823716792449 ], [ 126.18204511932943, 41.107336127276369 ], [ 126.869083286649868, 41.81656932226619 ], [ 127.343782993683021, 41.503151760415967 ], [ 128.208433058790661, 41.466771552082491 ], [ 128.05221520397231, 41.994284572917948 ], [ 129.596668735879518, 42.424981797854556 ], [ 129.994267205933227, 42.985386867843786 ], [ 130.640015903852429, 42.395009467125277 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Portugal\", \"sov_a3\": \"PRT\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Portugal\", \"adm0_a3\": \"PRT\", \"geou_dif\": 0.000000, \"geounit\": \"Portugal\", \"gu_a3\": \"PRT\", \"su_dif\": 1.000000, \"subunit\": \"Portugal\", \"su_a3\": \"PR1\", \"brk_diff\": 0.000000, \"name\": \"Portugal\", \"name_long\": \"Portugal\", \"brk_a3\": \"PR1\", \"brk_name\": \"Portugal\", \"brk_group\": null, \"abbrev\": \"Port.\", \"postal\": \"P\", \"formal_en\": \"Portuguese Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Portugal\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 7.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 4.000000, \"pop_est\": 10707924.000000, \"gdp_md_est\": 208627.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": 0.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PT\", \"iso_a3\": \"PRT\", \"iso_n3\": \"620\", \"un_a3\": \"620\", \"wb_a2\": \"PT\", \"wb_a3\": \"PRT\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PRT\", \"adm0_a3_us\": \"PRT\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -9.034817674180246, 41.880570583659676 ], [ -8.67194576662672, 42.134689439454959 ], [ -8.263856980817792, 42.28046865495034 ], [ -8.013174607769912, 41.790886135417125 ], [ -7.422512986673795, 41.792074693359837 ], [ -7.251308966490824, 41.918346055665047 ], [ -6.668605515967656, 41.883386949219584 ], [ -6.389087693700915, 41.381815497394655 ], [ -6.851126674822552, 41.111082668617527 ], [ -6.864019944679385, 40.330871893874829 ], [ -7.026413133156595, 40.184524237624245 ], [ -7.066591559263529, 39.711891587882775 ], [ -7.498632371439726, 39.629571031241809 ], [ -7.098036668313128, 39.030072740223787 ], [ -7.374092169616318, 38.373058580064921 ], [ -7.029281175148796, 38.075764065089771 ], [ -7.166507941099865, 37.803894354802225 ], [ -7.537105475281024, 37.428904323876239 ], [ -7.453725551778092, 37.097787583966067 ], [ -7.855613165711986, 36.838268540996268 ], [ -8.382816127953689, 36.978880113262463 ], [ -8.898856980820327, 36.868809312480778 ], [ -8.746101446965554, 37.651345526676607 ], [ -8.83999752443988, 38.266243394517616 ], [ -9.287463751655224, 38.358485826158599 ], [ -9.526570603869715, 38.737429104154913 ], [ -9.446988898140233, 39.39206614842837 ], [ -9.048305223008427, 39.755093085278773 ], [ -8.977353481471681, 40.159306138665812 ], [ -8.768684047877102, 40.760638943030187 ], [ -8.79085323733031, 41.184334011391257 ], [ -8.990789353867569, 41.543459377603639 ], [ -9.034817674180246, 41.880570583659676 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Paraguay\", \"sov_a3\": \"PRY\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Paraguay\", \"adm0_a3\": \"PRY\", \"geou_dif\": 0.000000, \"geounit\": \"Paraguay\", \"gu_a3\": \"PRY\", \"su_dif\": 0.000000, \"subunit\": \"Paraguay\", \"su_a3\": \"PRY\", \"brk_diff\": 0.000000, \"name\": \"Paraguay\", \"name_long\": \"Paraguay\", \"brk_a3\": \"PRY\", \"brk_name\": \"Paraguay\", \"brk_group\": null, \"abbrev\": \"Para.\", \"postal\": \"PY\", \"formal_en\": \"Republic of Paraguay\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Paraguay\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 2.000000, \"pop_est\": 6995655.000000, \"gdp_md_est\": 28890.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PY\", \"iso_a3\": \"PRY\", \"iso_n3\": \"600\", \"un_a3\": \"600\", \"wb_a2\": \"PY\", \"wb_a3\": \"PRY\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PRY\", \"adm0_a3_us\": \"PRY\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -62.685057135657885, -22.249029229422387 ], [ -62.291179368729225, -21.051634616787393 ], [ -62.265961269770798, -20.513734633061276 ], [ -61.786326463453769, -19.633736667562964 ], [ -60.043564622626491, -19.342746677327426 ], [ -59.115042487206111, -19.356906019775401 ], [ -58.183471442280506, -19.868399346600363 ], [ -58.166392381408045, -20.176700941653678 ], [ -57.8706739976178, -20.732687676681952 ], [ -57.937155727761294, -22.090175876557172 ], [ -56.881509568902899, -22.282153822521479 ], [ -56.473317430229393, -22.086300144135283 ], [ -55.797958136606908, -22.356929620047822 ], [ -55.610682745981144, -22.655619398694846 ], [ -55.517639329639636, -23.571997572526637 ], [ -55.400747239795422, -23.956935316668805 ], [ -55.02790178080955, -24.001273695575229 ], [ -54.652834235235133, -23.839578138933959 ], [ -54.292959560754518, -24.021014092710729 ], [ -54.293476325077449, -24.570799655863965 ], [ -54.428946092330591, -25.162184747012166 ], [ -54.625290696823576, -25.739255466415514 ], [ -54.788794928595053, -26.621785577096134 ], [ -55.695845506398157, -27.387837009390864 ], [ -56.486701626192996, -27.548499037386293 ], [ -57.609759690976141, -27.395898532828387 ], [ -58.618173590719749, -27.123718763947096 ], [ -57.633660040911131, -25.603656508081642 ], [ -57.777217169817938, -25.16233977630904 ], [ -58.807128465394982, -24.771459242453311 ], [ -60.02896603050403, -24.032796319273274 ], [ -60.846564704009914, -23.880712579038292 ], [ -62.685057135657885, -22.249029229422387 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Israel\", \"sov_a3\": \"ISR\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Disputed\", \"admin\": \"Palestine\", \"adm0_a3\": \"PSX\", \"geou_dif\": 0.000000, \"geounit\": \"Palestine\", \"gu_a3\": \"PSX\", \"su_dif\": 0.000000, \"subunit\": \"Palestine\", \"su_a3\": \"PSX\", \"brk_diff\": 0.000000, \"name\": \"Palestine\", \"name_long\": \"Palestine\", \"brk_a3\": \"PSX\", \"brk_name\": \"Palestine\", \"brk_group\": null, \"abbrev\": \"Pal.\", \"postal\": \"PAL\", \"formal_en\": \"West Bank and Gaza\", \"formal_fr\": null, \"note_adm0\": \"Partial self-admin.\", \"note_brk\": \"Partial self-admin.\", \"name_sort\": \"Palestine (West Bank and Gaza)\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 8.000000, \"pop_est\": 4119083.000000, \"gdp_md_est\": 11950.770000, \"pop_year\": -99.000000, \"lastcensus\": 2007.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"PS\", \"iso_a3\": \"PSE\", \"iso_n3\": \"275\", \"un_a3\": \"275\", \"wb_a2\": \"GZ\", \"wb_a3\": \"WBG\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"PSE\", \"adm0_a3_us\": \"PSX\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": -99.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 35.545665317534542, 32.393992011030576 ], [ 35.545251906076203, 31.782504787720839 ], [ 35.397560662586045, 31.489086005167582 ], [ 34.927408481594568, 31.353435370401414 ], [ 34.970506626125996, 31.61677846936081 ], [ 35.22589155451243, 31.754341132121766 ], [ 34.974640740709333, 31.866582343059722 ], [ 35.183930291491436, 32.532510687788943 ], [ 35.545665317534542, 32.393992011030576 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Qatar\", \"sov_a3\": \"QAT\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Qatar\", \"adm0_a3\": \"QAT\", \"geou_dif\": 0.000000, \"geounit\": \"Qatar\", \"gu_a3\": \"QAT\", \"su_dif\": 0.000000, \"subunit\": \"Qatar\", \"su_a3\": \"QAT\", \"brk_diff\": 0.000000, \"name\": \"Qatar\", \"name_long\": \"Qatar\", \"brk_a3\": \"QAT\", \"brk_name\": \"Qatar\", \"brk_group\": null, \"abbrev\": \"Qatar\", \"postal\": \"QA\", \"formal_en\": \"State of Qatar\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Qatar\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 4.000000, \"pop_est\": 833285.000000, \"gdp_md_est\": 91330.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"QA\", \"iso_a3\": \"QAT\", \"iso_n3\": \"634\", \"un_a3\": \"634\", \"wb_a2\": \"QA\", \"wb_a3\": \"QAT\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"QAT\", \"adm0_a3_us\": \"QAT\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 50.810108270069577, 24.754742539971378 ], [ 50.743910760303692, 25.482424221289396 ], [ 51.013351678273494, 26.006991685484195 ], [ 51.286461622936059, 26.114582017515868 ], [ 51.589078810437258, 25.801112779233382 ], [ 51.606700473848811, 25.215670477798739 ], [ 51.38960778179063, 24.627385972588058 ], [ 51.112415398977021, 24.556330878186724 ], [ 50.810108270069577, 24.754742539971378 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Romania\", \"sov_a3\": \"ROU\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Romania\", \"adm0_a3\": \"ROU\", \"geou_dif\": 0.000000, \"geounit\": \"Romania\", \"gu_a3\": \"ROU\", \"su_dif\": 0.000000, \"subunit\": \"Romania\", \"su_a3\": \"ROU\", \"brk_diff\": 0.000000, \"name\": \"Romania\", \"name_long\": \"Romania\", \"brk_a3\": \"ROU\", \"brk_name\": \"Romania\", \"brk_group\": null, \"abbrev\": \"Rom.\", \"postal\": \"RO\", \"formal_en\": \"Romania\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Romania\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 13.000000, \"pop_est\": 22215421.000000, \"gdp_md_est\": 271400.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"RO\", \"iso_a3\": \"ROU\", \"iso_n3\": \"642\", \"un_a3\": \"642\", \"wb_a2\": \"RO\", \"wb_a3\": \"ROM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ROU\", \"adm0_a3_us\": \"ROU\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 22.710531447040495, 47.882193915389408 ], [ 23.142236362406805, 48.096341050806949 ], [ 23.760958286237411, 47.985598456405455 ], [ 24.402056105250381, 47.981877753280429 ], [ 24.866317172960578, 47.737525743188314 ], [ 25.207743361112989, 47.891056423527473 ], [ 25.945941196402401, 47.987148749374214 ], [ 26.197450392366932, 48.220881252630349 ], [ 26.619336785597795, 48.220726223333472 ], [ 26.924176059687568, 48.123264472030996 ], [ 27.233872918412743, 47.826770941756379 ], [ 27.551166212684848, 47.405117092470832 ], [ 28.128030226359044, 46.810476386088254 ], [ 28.160017937947714, 46.371562608417221 ], [ 28.054442986775399, 45.944586086605625 ], [ 28.233553501099042, 45.488283189468376 ], [ 28.679779493939382, 45.304030870131704 ], [ 29.149724969201653, 45.464925442072456 ], [ 29.603289015427436, 45.293308010431126 ], [ 29.626543409958771, 45.035390936862399 ], [ 29.141611769331835, 44.820210272799045 ], [ 28.8378577003202, 44.913873806328056 ], [ 28.558081495891997, 43.707461656258133 ], [ 27.970107049275075, 43.812468166675217 ], [ 27.242399529740908, 44.175986029632405 ], [ 26.065158725699746, 43.943493760751267 ], [ 25.569271681426926, 43.688444729174719 ], [ 24.100679152124172, 43.741051337247853 ], [ 23.332302280376325, 43.897010809904714 ], [ 22.944832391051847, 43.82378530534713 ], [ 22.657149692482989, 44.234923000661283 ], [ 22.474008416440601, 44.409227606781769 ], [ 22.705725538837356, 44.578002834647023 ], [ 22.459022251075936, 44.702517198254299 ], [ 22.145087924902811, 44.478422349620587 ], [ 21.562022739353608, 44.7689472519655 ], [ 21.483526238702236, 45.18117015235778 ], [ 20.874312778413355, 45.416375433934235 ], [ 20.762174920339987, 45.734573065771443 ], [ 20.220192498462836, 46.127468980486555 ], [ 21.021952345471249, 46.316087958351901 ], [ 21.626514926853872, 46.994237779318162 ], [ 22.099767693782837, 47.672439276716702 ], [ 22.710531447040495, 47.882193915389408 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Russia\", \"sov_a3\": \"RUS\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Russia\", \"adm0_a3\": \"RUS\", \"geou_dif\": 0.000000, \"geounit\": \"Russia\", \"gu_a3\": \"RUS\", \"su_dif\": 0.000000, \"subunit\": \"Russia\", \"su_a3\": \"RUS\", \"brk_diff\": 0.000000, \"name\": \"Russia\", \"name_long\": \"Russian Federation\", \"brk_a3\": \"RUS\", \"brk_name\": \"Russia\", \"brk_group\": null, \"abbrev\": \"Rus.\", \"postal\": \"RUS\", \"formal_en\": \"Russian Federation\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Russian Federation\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 7.000000, \"pop_est\": 140041247.000000, \"gdp_md_est\": 2266000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"3. Emerging region: BRIC\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"RU\", \"iso_a3\": \"RUS\", \"iso_n3\": \"643\", \"un_a3\": \"643\", \"wb_a2\": \"RU\", \"wb_a3\": \"RUS\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"RUS\", \"adm0_a3_us\": \"RUS\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 18.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 143.648007440362875, 50.747600409541519 ], [ 144.654147577085638, 48.976390692737596 ], [ 143.173927850517231, 49.306551418650372 ], [ 142.558668247650104, 47.861575018904915 ], [ 143.533492466404056, 46.836728013692493 ], [ 143.505277134372619, 46.137907619809482 ], [ 142.747700636973917, 46.740764878926569 ], [ 142.092030064054512, 45.966755276058791 ], [ 141.906925083585037, 46.805928860046549 ], [ 142.018442824470895, 47.780132961612935 ], [ 141.904444614835057, 48.85918854429957 ], [ 142.135800002205684, 49.615163072297463 ], [ 142.179983351815309, 50.952342434281917 ], [ 141.594075962490052, 51.935434882202543 ], [ 141.68254601457366, 53.301966457728781 ], [ 142.606934035410774, 53.762145087287905 ], [ 142.209748976815405, 54.225475979216867 ], [ 142.65478641171299, 54.365880845753878 ], [ 142.914615513276573, 53.704577541714741 ], [ 143.260847609632066, 52.740760403039047 ], [ 143.235267775647657, 51.756660264688747 ], [ 143.648007440362875, 50.747600409541519 ] ] ], [ [ [ 22.731098667092652, 54.327536932993326 ], [ 20.892244500418656, 54.312524929412575 ], [ 19.660640089606403, 54.426083889373984 ], [ 19.888481479581344, 54.866160386771497 ], [ 21.268448927503499, 55.190481675835287 ], [ 22.315723504330606, 55.0152985703659 ], [ 22.757763706155288, 54.856574408581423 ], [ 22.651051873472568, 54.582740993866707 ], [ 22.731098667092652, 54.327536932993326 ] ] ], [ [ [ -175.01425, 66.58435 ], [ -174.33983, 66.33556 ], [ -174.57182, 67.06219 ], [ -171.85731, 66.91308 ], [ -169.89958, 65.97724 ], [ -170.89107, 65.54139 ], [ -172.53025, 65.43791 ], [ -172.555, 64.46079 ], [ -172.95533, 64.25269 ], [ -173.89184, 64.2826 ], [ -174.65392, 64.63125 ], [ -175.98353, 64.92288 ], [ -176.20716, 65.35667 ], [ -177.22266, 65.52024 ], [ -178.35993, 65.39052 ], [ -178.90332, 65.74044 ], [ -178.68611, 66.11211 ], [ -179.88377, 65.87456 ], [ -179.43268, 65.40411 ], [ -179.99999999999, 64.979708702198366 ], [ -179.99999999999, 68.963636363636368 ], [ -177.55, 68.2 ], [ -174.92825, 67.20589 ], [ -175.01425, 66.58435 ] ] ], [ [ [ 180.000000000000142, 70.832199208546683 ], [ 178.903425000000112, 70.78114 ], [ 178.7253, 71.0988 ], [ 180.000000000000142, 71.51571433642826 ], [ 180.000000000000142, 70.832199208546683 ] ] ], [ [ [ -178.69378, 70.89302 ], [ -179.99999999999, 70.832199208546683 ], [ -179.99999999999, 71.51571433642826 ], [ -179.871875, 71.55762 ], [ -179.02433, 71.55553 ], [ -177.577945, 71.26948 ], [ -177.663575, 71.13277 ], [ -178.69378, 70.89302 ] ] ], [ [ [ 143.60385, 73.21244 ], [ 142.08763, 73.20544 ], [ 140.038155, 73.31692 ], [ 139.86312, 73.36983 ], [ 140.81171, 73.76506 ], [ 142.06207, 73.85758 ], [ 143.48283, 73.47525 ], [ 143.60385, 73.21244 ] ] ], [ [ [ 150.73167, 75.08406 ], [ 149.575925, 74.68892 ], [ 147.977465, 74.778355 ], [ 146.11919, 75.17298 ], [ 146.358485, 75.49682 ], [ 148.22223, 75.345845 ], [ 150.73167, 75.08406 ] ] ], [ [ [ 145.086285, 75.562625 ], [ 144.3, 74.82 ], [ 140.61381, 74.84768 ], [ 138.95544, 74.61148 ], [ 136.97439, 75.26167 ], [ 137.51176, 75.94917 ], [ 138.831075, 76.13676 ], [ 141.471615, 76.09289 ], [ 145.086285, 75.562625 ] ] ], [ [ [ 57.5356925799924, 70.72046397570216 ], [ 56.944979282463947, 70.632743231886678 ], [ 53.677375115784201, 70.76265778266847 ], [ 53.412016635965387, 71.206661688920207 ], [ 51.601894565645722, 71.474759019650492 ], [ 51.455753615124223, 72.014881089965144 ], [ 52.478275180883571, 72.22944163684096 ], [ 52.444168735570855, 72.774731350384855 ], [ 54.427613559797663, 73.627547512497586 ], [ 53.50828982932515, 73.749813951300155 ], [ 55.902458937407658, 74.627486477345343 ], [ 55.631932814359715, 75.081412258597169 ], [ 57.868643833248854, 75.609390367323215 ], [ 61.170044386647504, 76.251883450008137 ], [ 64.498368361270224, 76.439055487769281 ], [ 66.210977003855106, 76.809782213031241 ], [ 68.157059767534832, 76.939696763812918 ], [ 68.852211134725138, 76.544811306454619 ], [ 68.180572544227658, 76.23364166940911 ], [ 64.637326287703019, 75.737754625136233 ], [ 61.583507521414759, 75.260884507946798 ], [ 58.47708214705338, 74.309056301562833 ], [ 56.986785516188007, 73.333043524866241 ], [ 55.419335971910954, 72.371267605265984 ], [ 55.622837762276305, 71.54059479439033 ], [ 57.5356925799924, 70.72046397570216 ] ] ], [ [ [ 106.970130000000125, 76.97419 ], [ 107.240000000000151, 76.48 ], [ 108.1538, 76.723350000000153 ], [ 111.077260000000166, 76.71 ], [ 113.33151, 76.22224 ], [ 114.13417, 75.84764 ], [ 113.88539, 75.327790000000135 ], [ 112.77918, 75.03186 ], [ 110.151250000000203, 74.47673 ], [ 109.4, 74.18 ], [ 110.64, 74.04 ], [ 112.11919, 73.787740000000127 ], [ 113.019540000000262, 73.976930000000152 ], [ 113.529580000000323, 73.335050000000109 ], [ 113.96881, 73.594880000000103 ], [ 115.56782, 73.75285 ], [ 118.776330000000229, 73.58772 ], [ 119.02, 73.12 ], [ 123.200660000000113, 72.97122 ], [ 123.257770000000193, 73.735030000000108 ], [ 125.380000000000194, 73.56 ], [ 126.97644, 73.56549 ], [ 128.59126, 73.03871 ], [ 129.05157, 72.39872 ], [ 128.460000000000122, 71.98 ], [ 129.715990000000232, 71.19304 ], [ 131.28858000000028, 70.786990000000117 ], [ 132.253500000000173, 71.836300000000108 ], [ 133.857660000000322, 71.386420000000157 ], [ 135.56193, 71.655250000000137 ], [ 137.49755, 71.34763 ], [ 138.23409000000018, 71.62803 ], [ 139.869830000000121, 71.487830000000145 ], [ 139.14791, 72.416190000000114 ], [ 140.46817, 72.849410000000148 ], [ 149.5, 72.2 ], [ 150.351180000000198, 71.60643 ], [ 152.968900000000218, 70.84222 ], [ 157.00688, 71.03141 ], [ 158.99779, 70.86672 ], [ 159.830310000000253, 70.45324 ], [ 159.70866, 69.72198 ], [ 160.940530000000336, 69.437280000000101 ], [ 162.279070000000132, 69.64204 ], [ 164.052480000000145, 69.66823 ], [ 165.940370000000229, 69.47199 ], [ 167.83567, 69.58269 ], [ 169.577630000000198, 68.6938 ], [ 170.816880000000282, 69.01363 ], [ 170.008200000000187, 69.65276 ], [ 170.453450000000288, 70.09703 ], [ 173.643910000000261, 69.81743 ], [ 175.724030000000226, 69.877250000000231 ], [ 178.6, 69.4 ], [ 180.000000000000142, 68.963636363636567 ], [ 180.000000000000142, 64.979708702198479 ], [ 179.99281, 64.97433 ], [ 178.707200000000256, 64.53493 ], [ 177.411280000000176, 64.60821 ], [ 178.313000000000244, 64.07593 ], [ 178.908250000000209, 63.251970000000142 ], [ 179.37034, 62.982620000000111 ], [ 179.48636, 62.56894 ], [ 179.228250000000145, 62.304100000000147 ], [ 177.3643, 62.5219 ], [ 174.569290000000223, 61.76915 ], [ 173.68013, 61.65261 ], [ 172.15, 60.95 ], [ 170.698500000000109, 60.33618 ], [ 170.330850000000311, 59.88177 ], [ 168.90046, 60.57355 ], [ 166.294980000000322, 59.788550000000214 ], [ 165.840000000000231, 60.16 ], [ 164.87674, 59.7316 ], [ 163.539290000000136, 59.86871 ], [ 163.217110000000247, 59.21101 ], [ 162.017330000000101, 58.24328 ], [ 162.05297, 57.83912 ], [ 163.19191, 57.615030000000104 ], [ 163.057940000000173, 56.159240000000125 ], [ 162.129580000000232, 56.12219 ], [ 161.70146, 55.285680000000156 ], [ 162.117490000000174, 54.85514 ], [ 160.368770000000353, 54.34433 ], [ 160.021730000000247, 53.20257 ], [ 158.530940000000186, 52.958680000000243 ], [ 158.23118, 51.94269 ], [ 156.789790000000295, 51.01105 ], [ 156.420000000000158, 51.7 ], [ 155.99182, 53.15895 ], [ 155.433660000000117, 55.381030000000123 ], [ 155.91442000000032, 56.767920000000146 ], [ 156.75815, 57.3647 ], [ 156.810350000000113, 57.83204 ], [ 158.364330000000194, 58.05575 ], [ 160.150640000000152, 59.314770000000124 ], [ 161.87204, 60.343000000000131 ], [ 163.66969, 61.140900000000101 ], [ 164.473550000000131, 62.55061 ], [ 163.2584200000002, 62.46627 ], [ 162.65791, 61.6425 ], [ 160.121480000000105, 60.54423 ], [ 159.30232, 61.773960000000102 ], [ 156.720680000000101, 61.43442 ], [ 154.218060000000349, 59.758180000000124 ], [ 155.04375, 59.14495 ], [ 152.81185, 58.88385 ], [ 151.265730000000275, 58.78089 ], [ 151.338150000000127, 59.50396 ], [ 149.78371, 59.655730000000148 ], [ 148.54481, 59.16448 ], [ 145.48722, 59.33637 ], [ 142.197820000000178, 59.03998 ], [ 138.958480000000321, 57.08805 ], [ 135.12619, 54.72959 ], [ 136.70171, 54.603550000000126 ], [ 137.19342, 53.97732 ], [ 138.1647, 53.755010000000254 ], [ 138.80463, 54.254550000000108 ], [ 139.90151, 54.18968000000018 ], [ 141.34531, 53.089570000000123 ], [ 141.37923, 52.23877 ], [ 140.597420000000199, 51.239670000000103 ], [ 140.51308, 50.045530000000127 ], [ 140.061930000000217, 48.446710000000166 ], [ 138.554720000000231, 46.99965 ], [ 138.21971, 46.30795 ], [ 136.86232, 45.143500000000188 ], [ 135.515350000000211, 43.989 ], [ 134.869390000000266, 43.39821 ], [ 133.536870000000278, 42.81147 ], [ 132.906270000000148, 42.798490000000101 ], [ 132.27807000000027, 43.284560000000113 ], [ 130.935870000000165, 42.55274 ], [ 130.78, 42.220000000000198 ], [ 130.640000000000185, 42.395 ], [ 130.63386640840983, 42.903014634770557 ], [ 131.14468794161499, 42.929989732426947 ], [ 131.288555129115622, 44.111519680348266 ], [ 131.025190000000265, 44.96796 ], [ 131.88345421765959, 45.321161607436522 ], [ 133.097120000000217, 45.14409 ], [ 133.769643996313192, 46.116926988299156 ], [ 134.112350000000191, 47.212480000000141 ], [ 134.50081, 47.578450000000146 ], [ 135.026311476786788, 48.478229885443909 ], [ 133.373595819228029, 48.183441677434843 ], [ 132.506690000000134, 47.78896 ], [ 130.987260000000134, 47.79013 ], [ 130.582293328982672, 48.729687404976204 ], [ 129.397817824420514, 49.440600084015614 ], [ 127.657400000000365, 49.76027 ], [ 127.287455682484932, 50.739797268265448 ], [ 126.939156528837856, 51.35389415140591 ], [ 126.564399041857001, 51.784255479532703 ], [ 125.946348911646481, 52.79279857035695 ], [ 125.068211297710462, 53.161044826868931 ], [ 123.57147, 53.4588 ], [ 122.245747918793057, 53.431725979213695 ], [ 121.003084751470368, 53.251401068731241 ], [ 120.177088657716894, 52.753886216841209 ], [ 120.725789015792003, 52.516226304730907 ], [ 120.7382, 51.96411 ], [ 120.182080000000184, 51.64355 ], [ 119.27939, 50.58292 ], [ 119.288460728025854, 50.142882798861962 ], [ 117.879244419426499, 49.510983384797044 ], [ 116.678800897286209, 49.888531399121405 ], [ 115.485695428531443, 49.805177313834747 ], [ 114.962109816550395, 50.140247300815133 ], [ 114.362456496235353, 50.248302720737485 ], [ 112.897739699354389, 49.543565375356991 ], [ 111.581230910286678, 49.377968248077678 ], [ 110.662010532678863, 49.130128078805853 ], [ 109.402449171996722, 49.292960516957692 ], [ 108.475167270951289, 49.282547715850711 ], [ 107.86817589725112, 49.793705145865886 ], [ 106.888804152455322, 50.27429596618029 ], [ 105.886591424586896, 50.406019192092174 ], [ 104.62158, 50.275320000000164 ], [ 103.676545444760364, 50.089966132195144 ], [ 102.255890000000107, 50.510560000000112 ], [ 102.06521, 51.259910000000104 ], [ 100.889480421962645, 51.516855780638423 ], [ 99.981732212323578, 51.634006252643957 ], [ 98.861490513100506, 52.047366034546712 ], [ 97.825739780674525, 51.01099518493325 ], [ 98.231761509191728, 50.42240062112873 ], [ 97.259760000000227, 49.72605 ], [ 95.81402000000017, 49.977460000000121 ], [ 94.815949334698786, 50.013433335970888 ], [ 94.147566359435615, 50.480536607457168 ], [ 93.10421, 50.49529 ], [ 92.23471154171969, 50.802170722041751 ], [ 90.713667433640779, 50.331811835321105 ], [ 88.805566847695587, 49.470520738312473 ], [ 87.751264276076853, 49.297197984405557 ], [ 87.359970330762707, 49.214980780629162 ], [ 86.829356723989662, 49.82667470966814 ], [ 85.5412699726825, 49.692858588248157 ], [ 85.11555952346211, 50.117302964877638 ], [ 84.416377394553052, 50.311399644565824 ], [ 83.935114780618932, 50.889245510453577 ], [ 83.383003778012466, 51.069182847693895 ], [ 81.945985548839957, 50.812195949906339 ], [ 80.56844689323546, 51.388336493528442 ], [ 80.035559523441719, 50.864750881547224 ], [ 77.800915561844334, 53.404414984747547 ], [ 76.525179477854778, 54.177003485727141 ], [ 76.891100294913457, 54.490524400441927 ], [ 74.384820000000133, 53.54685000000012 ], [ 73.425678745420527, 53.489810289109755 ], [ 73.508516066384374, 54.035616766976602 ], [ 72.224150018202209, 54.376655381886792 ], [ 71.180131056609497, 54.133285224008262 ], [ 70.865266554655165, 55.169733588270105 ], [ 69.068166945272907, 55.385250149143502 ], [ 68.169100376258911, 54.97039175070438 ], [ 65.666870000000102, 54.601250000000164 ], [ 65.178533563095954, 54.354227810272079 ], [ 61.436600000000141, 54.00625 ], [ 60.97806644068325, 53.664993394579142 ], [ 61.699986199800634, 52.979996446334269 ], [ 60.739993117114551, 52.719986477257748 ], [ 60.927268507740251, 52.447548326215014 ], [ 59.967533807215574, 51.960420437215674 ], [ 61.588003371024143, 51.272658799843185 ], [ 61.337424350841019, 50.799070136104262 ], [ 59.932807244715576, 50.842194118851836 ], [ 59.642282342370578, 50.545442206415714 ], [ 58.36332000000013, 51.06364 ], [ 56.77798, 51.04355 ], [ 55.716940000000108, 50.621710000000149 ], [ 54.532878452376195, 51.026239732459373 ], [ 52.328723585831057, 51.718652248738096 ], [ 50.766648390512188, 51.692762356159875 ], [ 48.702381626181051, 50.605128485712839 ], [ 48.577841424357615, 49.874759629915644 ], [ 47.549480421749394, 50.454698391311126 ], [ 46.751596307162771, 49.356005764353739 ], [ 47.043671502476599, 49.152038886097586 ], [ 46.466445753776298, 48.39415233010493 ], [ 47.315240000000159, 47.71585 ], [ 48.05725, 47.74377 ], [ 48.694733514201886, 47.075628160177899 ], [ 48.593250000000154, 46.561040000000105 ], [ 49.101160000000135, 46.399330000000106 ], [ 48.645410000000112, 45.80629 ], [ 47.67591, 45.641490000000118 ], [ 46.68201, 44.609200000000101 ], [ 47.59094, 43.660160000000133 ], [ 47.49252, 42.98658 ], [ 48.584370000000177, 41.80888 ], [ 47.98728315612604, 41.405819200194401 ], [ 47.81566572448466, 41.151416124021353 ], [ 47.373315464066394, 41.219732367511142 ], [ 46.686070591016716, 41.827137152669906 ], [ 46.404950799348939, 41.860675157227433 ], [ 45.7764, 42.092440000000238 ], [ 45.470279168485916, 42.502780666670049 ], [ 44.537622918482072, 42.711992702803684 ], [ 43.931210000000107, 42.554960000000108 ], [ 43.755990000000196, 42.74083 ], [ 42.394400000000161, 43.2203 ], [ 40.922190000000143, 43.382150000000138 ], [ 40.076964959479852, 43.553104153002494 ], [ 39.955008579271095, 43.434997666999294 ], [ 38.68, 44.28 ], [ 37.539120000000111, 44.65721 ], [ 36.675460000000129, 45.24469 ], [ 37.40317, 45.404510000000101 ], [ 38.23295, 46.24087 ], [ 37.67372, 46.63657 ], [ 39.14767, 47.044750000000136 ], [ 39.12120000000013, 47.26336 ], [ 38.223538038899477, 47.102189846375978 ], [ 38.255112339029807, 47.54640045835697 ], [ 38.77057, 47.825620000000242 ], [ 39.738277622238996, 47.898937079452082 ], [ 39.89562000000015, 48.23241 ], [ 39.67465, 48.783820000000134 ], [ 40.080789015469492, 49.307429917999372 ], [ 40.069040000000115, 49.60105 ], [ 38.59498823421356, 49.926461900423732 ], [ 38.010631137857075, 49.915661526074729 ], [ 37.393459506995242, 50.383953355503678 ], [ 36.626167840325394, 50.225590928745135 ], [ 35.356116163888117, 50.577197374059153 ], [ 35.37791, 50.77394 ], [ 35.022183058417937, 51.207572333371502 ], [ 34.224815708154409, 51.255993150428935 ], [ 34.141978387190619, 51.566413479206204 ], [ 34.391730584457235, 51.768881740925906 ], [ 33.752699822735877, 52.33507457133166 ], [ 32.71576053236717, 52.238465481162166 ], [ 32.412058139787774, 52.288694973349777 ], [ 32.159440000000217, 52.061250000000115 ], [ 31.78597, 52.10168 ], [ 31.540018344862261, 52.742052313846443 ], [ 31.305200636527985, 53.073995876673308 ], [ 31.49764, 53.167430000000138 ], [ 32.304519484188376, 53.132726141972853 ], [ 32.693643019346126, 53.351420803432148 ], [ 32.405598585751164, 53.618045355842014 ], [ 31.731272820774592, 53.794029446012019 ], [ 31.791424187962406, 53.974638576872195 ], [ 31.384472283663825, 54.157056382862379 ], [ 30.757533807098781, 54.811770941784403 ], [ 30.971835971813249, 55.081547756564134 ], [ 30.873909132620071, 55.550976467503517 ], [ 29.896294386522442, 55.789463202530499 ], [ 29.37157189303079, 55.670090643936277 ], [ 29.229513380660393, 55.918344224666413 ], [ 28.17670942557794, 56.169129950578792 ], [ 27.855282016722526, 56.759326483784378 ], [ 27.770015903440992, 57.244258124411203 ], [ 27.288184848751655, 57.474528306703917 ], [ 27.716685825315778, 57.79189911562446 ], [ 27.420150000000206, 58.724570000000142 ], [ 28.131699253051863, 59.300825100330997 ], [ 27.98112, 59.47537 ], [ 29.1177, 60.028050000000121 ], [ 28.07, 60.503520000000151 ], [ 30.211107212044652, 61.780027777749694 ], [ 31.139991082491036, 62.357692776124452 ], [ 31.516092156711267, 62.867687486412905 ], [ 30.035872430142803, 63.552813625738565 ], [ 30.44468468600374, 64.204453436939076 ], [ 29.544429559047018, 64.948671576590556 ], [ 30.21765, 65.80598 ], [ 29.054588657352383, 66.944286200622031 ], [ 29.977426385220696, 67.698297024192755 ], [ 28.445943637818772, 68.364612942164001 ], [ 28.591929559043365, 69.064776923286701 ], [ 29.39955, 69.156920000000184 ], [ 31.10108000000011, 69.55811 ], [ 32.132720000000262, 69.905950000000246 ], [ 33.77547, 69.301420000000121 ], [ 36.51396, 69.06342 ], [ 40.292340000000166, 67.9324 ], [ 41.059870000000132, 67.45713000000012 ], [ 41.125950000000188, 66.791580000000124 ], [ 40.01583, 66.266180000000134 ], [ 38.38295, 65.999530000000107 ], [ 33.918710000000175, 66.75961 ], [ 33.18444, 66.63253 ], [ 34.81477, 65.900150000000139 ], [ 34.878574253078767, 65.436212877048206 ], [ 34.943910000000159, 64.414370000000162 ], [ 36.23129, 64.10945 ], [ 37.012730000000118, 63.849830000000111 ], [ 37.141970000000157, 64.33471 ], [ 36.539579035089815, 64.76446 ], [ 37.176040000000143, 65.143220000000127 ], [ 39.59345, 64.520790000000176 ], [ 40.435600000000107, 64.76446 ], [ 39.762600000000162, 65.49682 ], [ 42.093090000000103, 66.47623 ], [ 43.016040000000118, 66.418580000000105 ], [ 43.949750000000137, 66.06908 ], [ 44.53226, 66.756340000000137 ], [ 43.69839, 67.35245 ], [ 44.187950000000143, 67.95051 ], [ 43.45282, 68.57079 ], [ 46.250000000000142, 68.25 ], [ 46.821340000000163, 67.68997 ], [ 45.55517, 67.56652 ], [ 45.562020000000103, 67.010050000000206 ], [ 46.349150000000151, 66.667670000000101 ], [ 47.894160000000255, 66.884550000000161 ], [ 48.13876, 67.52238 ], [ 50.227660000000157, 67.998670000000146 ], [ 53.717430000000178, 68.85738000000012 ], [ 54.47171, 68.80815 ], [ 53.485820000000132, 68.20131 ], [ 54.72628, 68.09702 ], [ 55.442680000000138, 68.43866 ], [ 57.317020000000156, 68.46628 ], [ 58.80200000000022, 68.88082 ], [ 59.941420000000193, 68.278440000000103 ], [ 61.07784000000018, 68.94069 ], [ 60.03, 69.52 ], [ 60.55, 69.85 ], [ 63.504000000000161, 69.54739 ], [ 64.888115, 69.234835000000146 ], [ 68.512160000000137, 68.092330000000175 ], [ 69.18068, 68.615630000000124 ], [ 68.16444, 69.14436 ], [ 68.13522, 69.35649 ], [ 66.930080000000117, 69.454610000000116 ], [ 67.25976, 69.92873 ], [ 66.724920000000139, 70.708890000000139 ], [ 66.69466, 71.028970000000243 ], [ 68.540060000000125, 71.934500000000241 ], [ 69.196360000000112, 72.84336000000016 ], [ 69.94, 73.040000000000134 ], [ 72.58754, 72.776290000000103 ], [ 72.79603, 72.22006 ], [ 71.848110000000105, 71.40898 ], [ 72.47011, 71.09019 ], [ 72.79188, 70.39114 ], [ 72.564700000000215, 69.02085 ], [ 73.66787, 68.4079 ], [ 73.2387, 67.7404 ], [ 71.280000000000115, 66.320000000000164 ], [ 72.423010000000176, 66.172670000000181 ], [ 72.82077, 66.53267 ], [ 73.92099000000016, 66.789460000000133 ], [ 74.186510000000197, 67.28429 ], [ 75.052, 67.760470000000169 ], [ 74.469260000000162, 68.32899 ], [ 74.935840000000127, 68.98918 ], [ 73.84236, 69.07146 ], [ 73.601870000000218, 69.62763 ], [ 74.3998, 70.63175 ], [ 73.1011, 71.447170000000256 ], [ 74.890820000000218, 72.12119 ], [ 74.65926, 72.83227 ], [ 75.158010000000189, 72.854970000000122 ], [ 75.68351, 72.300560000000132 ], [ 75.288980000000123, 71.33556 ], [ 76.35911, 71.152870000000149 ], [ 75.903130000000175, 71.87401 ], [ 77.576650000000114, 72.26717 ], [ 79.652020000000135, 72.32011 ], [ 81.5, 71.75 ], [ 80.610710000000125, 72.582850000000121 ], [ 80.51109, 73.6482 ], [ 82.25, 73.850000000000108 ], [ 84.65526, 73.805910000000182 ], [ 86.82230000000024, 73.93688 ], [ 86.00956, 74.459670000000159 ], [ 87.166820000000172, 75.11643 ], [ 88.315710000000109, 75.14393 ], [ 90.26, 75.64 ], [ 92.90058, 75.77333 ], [ 93.234210000000161, 76.0472 ], [ 95.860000000000156, 76.1400000000001 ], [ 96.67821, 75.91548 ], [ 98.922540000000225, 76.44689 ], [ 100.759670000000227, 76.43028 ], [ 101.03532, 76.86189 ], [ 101.990840000000134, 77.287540000000206 ], [ 104.351600000000104, 77.69792 ], [ 106.066640000000149, 77.37389 ], [ 104.70500000000024, 77.1274 ], [ 106.970130000000125, 76.97419 ] ] ], [ [ [ 105.07547, 78.30689 ], [ 99.43814, 77.921 ], [ 101.2649, 79.23399 ], [ 102.08635, 79.34641 ], [ 102.837815, 79.28129 ], [ 105.37243, 78.71334 ], [ 105.07547, 78.30689 ] ] ], [ [ [ 51.13618655783128, 80.547280178540944 ], [ 49.793684523320707, 80.415427761548216 ], [ 48.894411248577541, 80.339566758943704 ], [ 48.754936557821765, 80.175468248200843 ], [ 47.586119012244154, 80.010181179515342 ], [ 46.502825962109654, 80.247246812654367 ], [ 47.072455275262911, 80.559424140129465 ], [ 44.846958042181114, 80.589809882317184 ], [ 46.799138624871233, 80.771917629713641 ], [ 48.318477410684665, 80.784009914869955 ], [ 48.522806023966695, 80.514568996900152 ], [ 49.097189568890911, 80.753985907708426 ], [ 50.039767693894618, 80.918885403151819 ], [ 51.522932977103693, 80.69972565380192 ], [ 51.13618655783128, 80.547280178540944 ] ] ], [ [ [ 99.93976, 78.88094 ], [ 97.75794, 78.7562 ], [ 94.97259, 79.044745 ], [ 93.31288, 79.4265 ], [ 92.5454, 80.14379 ], [ 91.18107, 80.34146 ], [ 93.77766, 81.0246 ], [ 95.940895, 81.2504 ], [ 97.88385, 80.746975 ], [ 100.186655, 79.780135 ], [ 99.93976, 78.88094 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Rwanda\", \"sov_a3\": \"RWA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Rwanda\", \"adm0_a3\": \"RWA\", \"geou_dif\": 0.000000, \"geounit\": \"Rwanda\", \"gu_a3\": \"RWA\", \"su_dif\": 0.000000, \"subunit\": \"Rwanda\", \"su_a3\": \"RWA\", \"brk_diff\": 0.000000, \"name\": \"Rwanda\", \"name_long\": \"Rwanda\", \"brk_a3\": \"RWA\", \"brk_name\": \"Rwanda\", \"brk_group\": null, \"abbrev\": \"Rwa.\", \"postal\": \"RW\", \"formal_en\": \"Republic of Rwanda\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Rwanda\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 10.000000, \"pop_est\": 10473282.000000, \"gdp_md_est\": 9706.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"RW\", \"iso_a3\": \"RWA\", \"iso_n3\": \"646\", \"un_a3\": \"646\", \"wb_a2\": \"RW\", \"wb_a3\": \"RWA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"RWA\", \"adm0_a3_us\": \"RWA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 30.419104852019245, -1.134659112150416 ], [ 30.816134881317712, -1.698914076345389 ], [ 30.758308953583111, -2.287250257988369 ], [ 30.469696079232989, -2.413857517103459 ], [ 29.938359002407939, -2.348486830254238 ], [ 29.632176141078588, -2.917857761246097 ], [ 29.024926385216787, -2.839257907730158 ], [ 29.117478875451553, -2.292211195488385 ], [ 29.254834832483343, -2.215109958508911 ], [ 29.291886834436614, -1.620055840667987 ], [ 29.579466180140884, -1.341313164885626 ], [ 29.821518588996014, -1.443322442229785 ], [ 30.419104852019245, -1.134659112150416 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 7.000000, \"sovereignt\": \"Western Sahara\", \"sov_a3\": \"SAH\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Indeterminate\", \"admin\": \"Western Sahara\", \"adm0_a3\": \"SAH\", \"geou_dif\": 0.000000, \"geounit\": \"Western Sahara\", \"gu_a3\": \"SAH\", \"su_dif\": 0.000000, \"subunit\": \"Western Sahara\", \"su_a3\": \"SAH\", \"brk_diff\": 1.000000, \"name\": \"W. Sahara\", \"name_long\": \"Western Sahara\", \"brk_a3\": \"B28\", \"brk_name\": \"W. Sahara\", \"brk_group\": null, \"abbrev\": \"W. Sah.\", \"postal\": \"WS\", \"formal_en\": \"Sahrawi Arab Democratic Republic\", \"formal_fr\": null, \"note_adm0\": \"Self admin.\", \"note_brk\": \"Self admin.; Claimed by Morocco\", \"name_sort\": \"Western Sahara\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 7.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 4.000000, \"pop_est\": -99.000000, \"gdp_md_est\": -99.000000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"EH\", \"iso_a3\": \"ESH\", \"iso_n3\": \"732\", \"un_a3\": \"732\", \"wb_a2\": \"-99\", \"wb_a3\": \"-99\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"MAR\", \"adm0_a3_us\": \"SAH\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Northern Africa\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 9.000000, \"long_len\": 14.000000, \"abbrev_len\": 7.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -8.794883999049077, 27.120696316022507 ], [ -8.817828334986672, 27.656425889592356 ], [ -8.665589565454809, 27.656425889592356 ], [ -8.665124477564191, 27.589479071558227 ], [ -8.684399786809053, 27.395744126896005 ], [ -8.6872936670174, 25.881056219988906 ], [ -11.969418911171161, 25.933352769468268 ], [ -11.937224493853321, 23.374594224536168 ], [ -12.874221564169575, 23.284832261645178 ], [ -13.118754441774712, 22.771220201096256 ], [ -12.929101935263532, 21.327070624267563 ], [ -16.845193650773993, 21.333323472574879 ], [ -17.063423224342571, 20.999752102130827 ], [ -17.020428432675743, 21.422310288981478 ], [ -17.002961798561088, 21.420734157796577 ], [ -14.750954555713534, 21.500600083903663 ], [ -14.630832688851072, 21.860939846274903 ], [ -14.221167771857253, 22.310163072188161 ], [ -13.891110398809047, 23.691009019459305 ], [ -12.50096269372537, 24.7701162785782 ], [ -12.030758836301615, 26.030866197203043 ], [ -11.718219773800357, 26.104091701760623 ], [ -11.392554897496979, 26.883423977154365 ], [ -10.551262579785273, 26.990807603456886 ], [ -10.189424200877582, 26.860944729107405 ], [ -9.735343390328879, 26.860944729107405 ], [ -9.413037482124466, 27.088476060488517 ], [ -8.794883999049077, 27.120696316022507 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Saudi Arabia\", \"sov_a3\": \"SAU\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Saudi Arabia\", \"adm0_a3\": \"SAU\", \"geou_dif\": 0.000000, \"geounit\": \"Saudi Arabia\", \"gu_a3\": \"SAU\", \"su_dif\": 0.000000, \"subunit\": \"Saudi Arabia\", \"su_a3\": \"SAU\", \"brk_diff\": 0.000000, \"name\": \"Saudi Arabia\", \"name_long\": \"Saudi Arabia\", \"brk_a3\": \"SAU\", \"brk_name\": \"Saudi Arabia\", \"brk_group\": null, \"abbrev\": \"Saud.\", \"postal\": \"SA\", \"formal_en\": \"Kingdom of Saudi Arabia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Saudi Arabia\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 7.000000, \"pop_est\": 28686633.000000, \"gdp_md_est\": 576500.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SA\", \"iso_a3\": \"SAU\", \"iso_n3\": \"682\", \"un_a3\": \"682\", \"wb_a2\": \"SA\", \"wb_a3\": \"SAU\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SAU\", \"adm0_a3_us\": \"SAU\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 12.000000, \"long_len\": 12.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 42.77933230975097, 16.347891343648683 ], [ 42.649572788266084, 16.774635321514964 ], [ 42.347989129410713, 17.075805568912003 ], [ 42.270887892431226, 17.474721787989125 ], [ 41.754381951673963, 17.833046169500975 ], [ 41.22139122901558, 18.67159963630121 ], [ 40.93934126156654, 19.486485297111756 ], [ 40.247652215339826, 20.174634507726491 ], [ 39.801684604660949, 20.338862209550058 ], [ 39.139399448408284, 21.291904812092934 ], [ 39.023695916506796, 21.986875311770195 ], [ 39.066328973147591, 22.57965566659027 ], [ 38.492772251140082, 23.688451036060854 ], [ 38.023860304523623, 24.078685614512935 ], [ 37.483634881344386, 24.285494696545015 ], [ 37.154817742671185, 24.858482977797308 ], [ 37.209491408036001, 25.084541530858107 ], [ 36.93162723160259, 25.602959499610179 ], [ 36.639603712721225, 25.826227525327223 ], [ 36.249136590323815, 26.570135606384881 ], [ 35.640181512196392, 27.376520494083422 ], [ 35.130186801907882, 28.063351955674719 ], [ 34.632336053207979, 28.058546047471566 ], [ 34.787778761541944, 28.607427273059699 ], [ 34.832220493312946, 28.957483425404845 ], [ 34.956037225084259, 29.356554673778845 ], [ 36.068940870922063, 29.197494615184453 ], [ 36.50121422704359, 29.505253607698705 ], [ 36.74052778498725, 29.86528331147619 ], [ 37.503581984209035, 30.003776150018407 ], [ 37.668119744626381, 30.338665269485901 ], [ 37.998848911294374, 30.508499864213135 ], [ 37.002165561681011, 31.508412990844747 ], [ 39.004885695152552, 32.010216986614978 ], [ 39.195468377444968, 32.161008816042667 ], [ 40.399994337736246, 31.889991766887935 ], [ 41.889980910007836, 31.190008653278369 ], [ 44.709498732284743, 29.178891099559383 ], [ 46.568713413281756, 29.09902517345229 ], [ 47.459821811722833, 29.002519436147224 ], [ 47.708850538937384, 28.526062730416143 ], [ 48.416094191283946, 28.55200429942667 ], [ 48.807594842327177, 27.689627997339883 ], [ 49.299554477745829, 27.461218166609811 ], [ 49.470913527225662, 27.109999294538085 ], [ 50.152422316290881, 26.689663194275997 ], [ 50.212935418504685, 26.277026882425375 ], [ 50.113303257045942, 25.943972276304251 ], [ 50.239858839728754, 25.608049628190926 ], [ 50.527386509000735, 25.327808335872103 ], [ 50.660556675016892, 24.999895534764022 ], [ 50.810108270069577, 24.754742539971378 ], [ 51.112415398977021, 24.556330878186724 ], [ 51.38960778179063, 24.627385972588058 ], [ 51.579518670463273, 24.245497137951105 ], [ 51.617707553926977, 24.014219265228832 ], [ 52.000733270074335, 23.00115448657894 ], [ 55.006803012924905, 22.496947536707136 ], [ 55.208341098863194, 22.708329982997046 ], [ 55.666659376859826, 22.000001125572339 ], [ 54.999981723862362, 19.999994004796108 ], [ 52.000009800022241, 19.000003363516058 ], [ 49.116671583864871, 18.616667588774945 ], [ 48.183343540241339, 18.166669216377315 ], [ 47.466694777217633, 17.116681626854884 ], [ 47.000004917189756, 16.949999294497445 ], [ 46.749994337761649, 17.283338120996177 ], [ 46.366658563020536, 17.233315334537636 ], [ 45.399999220568759, 17.333335069238558 ], [ 45.216651238797191, 17.433328965723334 ], [ 44.062613152855079, 17.410358791569593 ], [ 43.791518589051918, 17.319976711491108 ], [ 43.380794305196105, 17.579986680567671 ], [ 43.115797560403358, 17.088440456607373 ], [ 43.218375278502748, 16.66688996018641 ], [ 42.77933230975097, 16.347891343648683 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Sudan\", \"sov_a3\": \"SDN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Sudan\", \"adm0_a3\": \"SDN\", \"geou_dif\": 0.000000, \"geounit\": \"Sudan\", \"gu_a3\": \"SDN\", \"su_dif\": 0.000000, \"subunit\": \"Sudan\", \"su_a3\": \"SDN\", \"brk_diff\": 0.000000, \"name\": \"Sudan\", \"name_long\": \"Sudan\", \"brk_a3\": \"SDN\", \"brk_name\": \"Sudan\", \"brk_group\": null, \"abbrev\": \"Sudan\", \"postal\": \"SD\", \"formal_en\": \"Republic of the Sudan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Sudan\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 1.000000, \"pop_est\": 25946220.000000, \"gdp_md_est\": 88080.000000, \"pop_year\": -99.000000, \"lastcensus\": 2008.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SD\", \"iso_a3\": \"SDN\", \"iso_n3\": \"729\", \"un_a3\": \"729\", \"wb_a2\": \"SD\", \"wb_a3\": \"SDN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SDN\", \"adm0_a3_us\": \"SDN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Northern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 33.963392794971185, 9.464285229420625 ], [ 33.824963480907513, 9.484060845715362 ], [ 33.842130853028152, 9.981914637215993 ], [ 33.721959248183111, 10.325262079630193 ], [ 33.206938084561784, 10.720111638406593 ], [ 33.086766479716744, 11.441141267476496 ], [ 33.206938084561784, 12.179338268667095 ], [ 32.743419037302544, 12.248007757149992 ], [ 32.674749548819648, 12.02483191958072 ], [ 32.073891524594785, 11.973329803218519 ], [ 32.314234734284753, 11.681484477166521 ], [ 32.400071594888345, 11.080626452941488 ], [ 31.850715687025513, 10.531270545078826 ], [ 31.352861895524882, 9.810240916008695 ], [ 30.837840731903384, 9.70723668328452 ], [ 29.996639497988554, 10.290927335388687 ], [ 29.618957311332849, 10.084918869940225 ], [ 29.515953078608618, 9.793073543888056 ], [ 29.000931914987177, 9.604232450560289 ], [ 28.966597170745786, 9.398223985111656 ], [ 27.970889587744352, 9.398223985111656 ], [ 27.833550610778786, 9.604232450560289 ], [ 27.112520981708883, 9.638567194801624 ], [ 26.752006167173818, 9.466893473594496 ], [ 26.477328213242515, 9.552730334198088 ], [ 25.962307049621018, 10.136420986302426 ], [ 25.790633328413946, 10.411098940233728 ], [ 25.069603699343986, 10.273759963267992 ], [ 24.794925745412684, 9.810240916008695 ], [ 24.53741516360202, 8.91753756573172 ], [ 24.19406772118765, 8.728696472403897 ], [ 23.886979580860668, 8.619729712933065 ], [ 23.805813429466752, 8.666318874542526 ], [ 23.459012892355986, 8.954285793489021 ], [ 23.394779087017298, 9.265067857292252 ], [ 23.557249790142919, 9.68121816653877 ], [ 23.554304233502194, 10.08925527591532 ], [ 22.977543572692753, 10.71446259199854 ], [ 22.864165480244253, 11.142395127807617 ], [ 22.87622, 11.384610000000123 ], [ 22.50869, 11.67936 ], [ 22.49762, 12.26024 ], [ 22.28801, 12.64605 ], [ 21.93681, 12.588180000000136 ], [ 22.03759, 12.95546 ], [ 22.29658, 13.37232 ], [ 22.18329, 13.78648 ], [ 22.51202, 14.09318 ], [ 22.30351, 14.32682 ], [ 22.56795000000011, 14.944290000000137 ], [ 23.024590000000103, 15.68072 ], [ 23.886890000000108, 15.61084 ], [ 23.837660000000142, 19.580470000000105 ], [ 23.850000000000136, 20.0 ], [ 25.000000000000114, 20.00304 ], [ 25.000000000000114, 22.0 ], [ 29.02, 22.0 ], [ 32.9, 22.0 ], [ 36.86623, 22.0 ], [ 37.188720000000103, 21.01885 ], [ 36.96941, 20.837440000000129 ], [ 37.114700000000141, 19.80796 ], [ 37.481790000000103, 18.61409 ], [ 37.86276, 18.36786 ], [ 38.410089959473225, 17.998307399970315 ], [ 37.90400000000011, 17.42754 ], [ 37.16747, 17.263140000000135 ], [ 36.852530000000115, 16.95655 ], [ 36.75389, 16.29186 ], [ 36.32322, 14.82249 ], [ 36.42951, 14.42211 ], [ 36.27022, 13.563330000000121 ], [ 35.86363, 12.57828 ], [ 35.26049, 12.08286 ], [ 34.831630000000132, 11.318960000000118 ], [ 34.731150000000127, 10.910170000000107 ], [ 34.25745, 10.63009 ], [ 33.96162, 9.58358 ], [ 33.963392794971185, 9.464285229420625 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"South Sudan\", \"sov_a3\": \"SDS\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"South Sudan\", \"adm0_a3\": \"SDS\", \"geou_dif\": 0.000000, \"geounit\": \"South Sudan\", \"gu_a3\": \"SDS\", \"su_dif\": 0.000000, \"subunit\": \"South Sudan\", \"su_a3\": \"SDS\", \"brk_diff\": 0.000000, \"name\": \"S. Sudan\", \"name_long\": \"South Sudan\", \"brk_a3\": \"SDS\", \"brk_name\": \"S. Sudan\", \"brk_group\": null, \"abbrev\": \"S. Sud.\", \"postal\": \"SS\", \"formal_en\": \"Republic of South Sudan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"South Sudan\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 5.000000, \"pop_est\": 10625176.000000, \"gdp_md_est\": 13227.000000, \"pop_year\": -99.000000, \"lastcensus\": 2008.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SS\", \"iso_a3\": \"SSD\", \"iso_n3\": \"728\", \"un_a3\": \"728\", \"wb_a2\": \"SS\", \"wb_a3\": \"SSD\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SSD\", \"adm0_a3_us\": \"SDS\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 8.000000, \"long_len\": 11.000000, \"abbrev_len\": 7.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 33.963392794971185, 9.464285229420625 ], [ 33.97498, 8.68456 ], [ 33.825500000000147, 8.37916 ], [ 33.294800000000123, 8.35458 ], [ 32.95418, 7.784970000000101 ], [ 33.568290000000104, 7.71334 ], [ 34.0751, 7.22595 ], [ 34.25032, 6.82607 ], [ 34.70702, 6.594220000000121 ], [ 35.298007118233102, 5.506 ], [ 34.620196267853942, 4.847122742082036 ], [ 34.005, 4.249884947362148 ], [ 33.3900000000001, 3.79 ], [ 32.68642, 3.79232 ], [ 31.881450000000143, 3.55827 ], [ 31.24556, 3.7819 ], [ 30.83385, 3.50917 ], [ 29.95349, 4.1737 ], [ 29.71599531425602, 4.600804755060153 ], [ 29.159078403446642, 4.389267279473245 ], [ 28.696677687298802, 4.455077215996994 ], [ 28.428993768026999, 4.287154649264608 ], [ 27.979977247842953, 4.408413397637389 ], [ 27.374226108517632, 5.233944403500175 ], [ 27.213409051225256, 5.550953477394614 ], [ 26.465909458123292, 5.946717434101856 ], [ 26.21341840994512, 6.546603298362129 ], [ 25.796647983511264, 6.97931590415817 ], [ 25.124130893664812, 7.500085150579423 ], [ 25.114932488716875, 7.825104071479245 ], [ 24.567369012152199, 8.229187933785454 ], [ 23.886979580860668, 8.619729712933065 ], [ 24.19406772118765, 8.728696472403897 ], [ 24.53741516360202, 8.91753756573172 ], [ 24.794925745412684, 9.810240916008695 ], [ 25.069603699343986, 10.273759963267992 ], [ 25.790633328413946, 10.411098940233728 ], [ 25.962307049621018, 10.136420986302426 ], [ 26.477328213242515, 9.552730334198088 ], [ 26.752006167173818, 9.466893473594496 ], [ 27.112520981708883, 9.638567194801624 ], [ 27.833550610778786, 9.604232450560289 ], [ 27.970889587744352, 9.398223985111656 ], [ 28.966597170745786, 9.398223985111656 ], [ 29.000931914987177, 9.604232450560289 ], [ 29.515953078608618, 9.793073543888056 ], [ 29.618957311332849, 10.084918869940225 ], [ 29.996639497988554, 10.290927335388687 ], [ 30.837840731903384, 9.70723668328452 ], [ 31.352861895524882, 9.810240916008695 ], [ 31.850715687025513, 10.531270545078826 ], [ 32.400071594888345, 11.080626452941488 ], [ 32.314234734284753, 11.681484477166521 ], [ 32.073891524594785, 11.973329803218519 ], [ 32.674749548819648, 12.02483191958072 ], [ 32.743419037302544, 12.248007757149992 ], [ 33.206938084561784, 12.179338268667095 ], [ 33.086766479716744, 11.441141267476496 ], [ 33.206938084561784, 10.720111638406593 ], [ 33.721959248183111, 10.325262079630193 ], [ 33.842130853028152, 9.981914637215993 ], [ 33.824963480907513, 9.484060845715362 ], [ 33.963392794971185, 9.464285229420625 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Senegal\", \"sov_a3\": \"SEN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Senegal\", \"adm0_a3\": \"SEN\", \"geou_dif\": 0.000000, \"geounit\": \"Senegal\", \"gu_a3\": \"SEN\", \"su_dif\": 0.000000, \"subunit\": \"Senegal\", \"su_a3\": \"SEN\", \"brk_diff\": 0.000000, \"name\": \"Senegal\", \"name_long\": \"Senegal\", \"brk_a3\": \"SEN\", \"brk_name\": \"Senegal\", \"brk_group\": null, \"abbrev\": \"Sen.\", \"postal\": \"SN\", \"formal_en\": \"Republic of Senegal\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Senegal\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 5.000000, \"pop_est\": 13711597.000000, \"gdp_md_est\": 21980.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SN\", \"iso_a3\": \"SEN\", \"iso_n3\": \"686\", \"un_a3\": \"686\", \"wb_a2\": \"SN\", \"wb_a3\": \"SEN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SEN\", \"adm0_a3_us\": \"SEN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -16.713728807023472, 13.594958604379855 ], [ -17.126106736712615, 14.373515733289224 ], [ -17.625042690490659, 14.729540513564073 ], [ -17.185172898822231, 14.919477240452862 ], [ -16.700706346085923, 15.621527411354108 ], [ -16.463098110407884, 16.13503611903846 ], [ -16.120690070041931, 16.455662543193384 ], [ -15.623666144258692, 16.369337063049812 ], [ -15.135737270558819, 16.587282416240782 ], [ -14.577347581428981, 16.598263658102809 ], [ -14.099521450242179, 16.304302273010492 ], [ -13.435737677453062, 16.039383042866191 ], [ -12.830658331747516, 15.303691514542948 ], [ -12.170750291380301, 14.616834214735505 ], [ -12.124887457721259, 13.994727484589788 ], [ -11.927716030311615, 13.422075100147396 ], [ -11.553397793005431, 13.141213690641067 ], [ -11.467899135778524, 12.754518947800975 ], [ -11.513942836950591, 12.442987575729418 ], [ -11.658300950557932, 12.386582749882836 ], [ -12.203564825885634, 12.465647691289405 ], [ -12.27859900557344, 12.354440008997287 ], [ -12.499050665730564, 12.332089952031057 ], [ -13.217818162478238, 12.575873521367967 ], [ -13.700476040084325, 12.586182969610194 ], [ -15.54847693527401, 12.628170070847347 ], [ -15.816574266004254, 12.515567124883347 ], [ -16.147716844130585, 12.547761542201187 ], [ -16.677451951554573, 12.384851589401052 ], [ -16.841524624081273, 13.151393947802561 ], [ -15.931295945692211, 13.130284125211332 ], [ -15.691000535534995, 13.270353094938457 ], [ -15.511812506562933, 13.278569647672867 ], [ -15.141163295949468, 13.509511623585238 ], [ -14.712197231494628, 13.298206691943777 ], [ -14.277701788784555, 13.280585028532244 ], [ -13.844963344772408, 13.505041612192002 ], [ -14.046992356817482, 13.794067898000449 ], [ -14.376713833055788, 13.625680243377374 ], [ -14.687030808968487, 13.630356960499784 ], [ -15.081735398813819, 13.876491807505985 ], [ -15.39877031092446, 13.860368760630919 ], [ -15.624596320039942, 13.623587347869559 ], [ -16.713728807023472, 13.594958604379855 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Solomon Islands\", \"sov_a3\": \"SLB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Solomon Islands\", \"adm0_a3\": \"SLB\", \"geou_dif\": 0.000000, \"geounit\": \"Solomon Islands\", \"gu_a3\": \"SLB\", \"su_dif\": 0.000000, \"subunit\": \"Solomon Islands\", \"su_a3\": \"SLB\", \"brk_diff\": 0.000000, \"name\": \"Solomon Is.\", \"name_long\": \"Solomon Islands\", \"brk_a3\": \"SLB\", \"brk_name\": \"Solomon Is.\", \"brk_group\": null, \"abbrev\": \"S. Is.\", \"postal\": \"SB\", \"formal_en\": null, \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Solomon Islands\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 6.000000, \"pop_est\": 595613.000000, \"gdp_md_est\": 1078.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SB\", \"iso_a3\": \"SLB\", \"iso_n3\": \"090\", \"un_a3\": \"090\", \"wb_a2\": \"SB\", \"wb_a3\": \"SLB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SLB\", \"adm0_a3_us\": \"SLB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Oceania\", \"region_un\": \"Oceania\", \"subregion\": \"Melanesia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 11.000000, \"long_len\": 15.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 162.11902469304087, -10.482719008021135 ], [ 162.398645868172224, -10.826367282762121 ], [ 161.700032180018383, -10.820011081590224 ], [ 161.319796991214758, -10.204751478723125 ], [ 161.91738325423799, -10.446700534713656 ], [ 162.11902469304087, -10.482719008021135 ] ] ], [ [ [ 160.85222863183796, -9.872937106977005 ], [ 160.462588332357285, -9.895209649294841 ], [ 159.849447463214204, -9.794027194867368 ], [ 159.640002883135168, -9.639979750205271 ], [ 159.702944777666659, -9.242949720906779 ], [ 160.362956170898457, -9.400304457235535 ], [ 160.688517694337207, -9.610162448772812 ], [ 160.85222863183796, -9.872937106977005 ] ] ], [ [ [ 161.679981724289149, -9.599982191611375 ], [ 161.529396600590559, -9.784312025596435 ], [ 160.788253208660564, -8.91754322676492 ], [ 160.579997186524366, -8.320008640173967 ], [ 160.920028111004939, -8.320008640173967 ], [ 161.280006138349989, -9.120011488484451 ], [ 161.679981724289149, -9.599982191611375 ] ] ], [ [ [ 159.875027297198613, -8.337320244991716 ], [ 159.917401971678004, -8.538289890174866 ], [ 159.133677199539392, -8.1141814103554 ], [ 158.586113722974716, -7.754823500197716 ], [ 158.211149530264862, -7.421872246941149 ], [ 158.359977655265453, -7.320017998893917 ], [ 158.820001255527728, -7.560003350457393 ], [ 159.640002883135168, -8.020026950719569 ], [ 159.875027297198613, -8.337320244991716 ] ] ], [ [ [ 157.538425734689298, -7.347819919466929 ], [ 157.339419793933274, -7.404767347852555 ], [ 156.902030471014797, -7.176874281445393 ], [ 156.491357863591332, -6.765943291860395 ], [ 156.542827590153962, -6.59933847415148 ], [ 157.140000441718911, -7.021638278840655 ], [ 157.538425734689298, -7.347819919466929 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Sierra Leone\", \"sov_a3\": \"SLE\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Sierra Leone\", \"adm0_a3\": \"SLE\", \"geou_dif\": 0.000000, \"geounit\": \"Sierra Leone\", \"gu_a3\": \"SLE\", \"su_dif\": 0.000000, \"subunit\": \"Sierra Leone\", \"su_a3\": \"SLE\", \"brk_diff\": 0.000000, \"name\": \"Sierra Leone\", \"name_long\": \"Sierra Leone\", \"brk_a3\": \"SLE\", \"brk_name\": \"Sierra Leone\", \"brk_group\": null, \"abbrev\": \"S.L.\", \"postal\": \"SL\", \"formal_en\": \"Republic of Sierra Leone\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Sierra Leone\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 7.000000, \"pop_est\": 6440053.000000, \"gdp_md_est\": 4285.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SL\", \"iso_a3\": \"SLE\", \"iso_n3\": \"694\", \"un_a3\": \"694\", \"wb_a2\": \"SL\", \"wb_a3\": \"SLE\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SLE\", \"adm0_a3_us\": \"SLE\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 12.000000, \"long_len\": 12.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -11.438779466182055, 6.785916856305747 ], [ -11.70819454593574, 6.860098374860726 ], [ -12.428098924193819, 7.26294200279203 ], [ -12.949049038128194, 7.798645738145738 ], [ -13.124025437868482, 8.163946438016978 ], [ -13.246550258832515, 8.903048610871508 ], [ -12.71195756677308, 9.342711696810767 ], [ -12.59671912276221, 9.620188300001971 ], [ -12.425928514037565, 9.835834051955956 ], [ -12.150338100625005, 9.858571682164381 ], [ -11.917277390988659, 10.046983954300558 ], [ -11.11748124840733, 10.045872911006285 ], [ -10.839151984083301, 9.688246161330369 ], [ -10.622395188835041, 9.267910061068278 ], [ -10.654770473665891, 8.977178452994195 ], [ -10.494315151399633, 8.715540676300435 ], [ -10.505477260774668, 8.348896389189605 ], [ -10.23009355309128, 8.406205552601293 ], [ -10.695594855176481, 7.939464016141088 ], [ -11.146704270868383, 7.396706447779536 ], [ -11.199801805048279, 7.105845648624737 ], [ -11.438779466182055, 6.785916856305747 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"El Salvador\", \"sov_a3\": \"SLV\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"El Salvador\", \"adm0_a3\": \"SLV\", \"geou_dif\": 0.000000, \"geounit\": \"El Salvador\", \"gu_a3\": \"SLV\", \"su_dif\": 0.000000, \"subunit\": \"El Salvador\", \"su_a3\": \"SLV\", \"brk_diff\": 0.000000, \"name\": \"El Salvador\", \"name_long\": \"El Salvador\", \"brk_a3\": \"SLV\", \"brk_name\": \"El Salvador\", \"brk_group\": null, \"abbrev\": \"El. S.\", \"postal\": \"SV\", \"formal_en\": \"Republic of El Salvador\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"El Salvador\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 8.000000, \"pop_est\": 7185218.000000, \"gdp_md_est\": 43630.000000, \"pop_year\": -99.000000, \"lastcensus\": 2007.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SV\", \"iso_a3\": \"SLV\", \"iso_n3\": \"222\", \"un_a3\": \"222\", \"wb_a2\": \"SV\", \"wb_a3\": \"SLV\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SLV\", \"adm0_a3_us\": \"SLV\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Central America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 11.000000, \"long_len\": 11.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -87.793111131526572, 13.384480495655055 ], [ -87.904112108089521, 13.149016831917137 ], [ -88.48330156121682, 13.163951320849492 ], [ -88.84322791212972, 13.259733588102478 ], [ -89.256742723329296, 13.458532823129303 ], [ -89.812393561547665, 13.520622056527998 ], [ -90.095554572290979, 13.735337632700734 ], [ -90.064677903996596, 13.881969509328925 ], [ -89.721933966820728, 14.134228013561696 ], [ -89.534219326520514, 14.244815578666305 ], [ -89.587342698916558, 14.36258616785949 ], [ -89.3533259752828, 14.424132798719114 ], [ -89.058511929057659, 14.340029405164087 ], [ -88.843072882832843, 14.140506700085171 ], [ -88.541230841816002, 13.980154730683479 ], [ -88.503997972349708, 13.845485948130857 ], [ -88.065342576840138, 13.964625962779778 ], [ -87.859515347021599, 13.893312486216983 ], [ -87.723502977229401, 13.785050360565506 ], [ -87.793111131526572, 13.384480495655055 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Somaliland\", \"sov_a3\": \"SOL\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Indeterminate\", \"admin\": \"Somaliland\", \"adm0_a3\": \"SOL\", \"geou_dif\": 0.000000, \"geounit\": \"Somaliland\", \"gu_a3\": \"SOL\", \"su_dif\": 0.000000, \"subunit\": \"Somaliland\", \"su_a3\": \"SOL\", \"brk_diff\": 1.000000, \"name\": \"Somaliland\", \"name_long\": \"Somaliland\", \"brk_a3\": \"B30\", \"brk_name\": \"Somaliland\", \"brk_group\": null, \"abbrev\": \"Solnd.\", \"postal\": \"SL\", \"formal_en\": \"Republic of Somaliland\", \"formal_fr\": null, \"note_adm0\": \"Self admin.\", \"note_brk\": \"Self admin.; Claimed by Somalia\", \"name_sort\": \"Somaliland\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 2.000000, \"pop_est\": 3500000.000000, \"gdp_md_est\": 12250.000000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"-99\", \"iso_a3\": \"-99\", \"iso_n3\": \"-99\", \"un_a3\": \"-099\", \"wb_a2\": \"-99\", \"wb_a3\": \"-99\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SOM\", \"adm0_a3_us\": \"SOM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 48.938129510296505, 9.451748968946674 ], [ 48.486735874227008, 8.837626247589981 ], [ 47.78942, 8.003 ], [ 46.948328484897957, 7.996876532417389 ], [ 43.67875, 9.18358000000012 ], [ 43.296975132018758, 9.540477403191744 ], [ 42.92812, 10.021940000000143 ], [ 42.55876, 10.57258000000013 ], [ 42.776851841000962, 10.92687856693442 ], [ 43.145304803242141, 11.462039699748857 ], [ 43.470659620951665, 11.277709865763882 ], [ 43.666668328634842, 10.864169216348159 ], [ 44.11780358254282, 10.445538438351605 ], [ 44.614259067570856, 10.442205308468942 ], [ 45.556940545439147, 10.698029486529776 ], [ 46.645401238803004, 10.816549383991173 ], [ 47.525657586462785, 11.12722809492999 ], [ 48.021596307167783, 11.193063869669743 ], [ 48.37878380716927, 11.375481675660126 ], [ 48.948206414593471, 11.41062164961852 ], [ 48.942005242718437, 11.394266058798166 ], [ 48.938491245322609, 10.982327378783452 ], [ 48.93823286316109, 9.973500067581483 ], [ 48.938129510296505, 9.451748968946674 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Somalia\", \"sov_a3\": \"SOM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Somalia\", \"adm0_a3\": \"SOM\", \"geou_dif\": 0.000000, \"geounit\": \"Somalia\", \"gu_a3\": \"SOM\", \"su_dif\": 0.000000, \"subunit\": \"Somalia\", \"su_a3\": \"SOM\", \"brk_diff\": 0.000000, \"name\": \"Somalia\", \"name_long\": \"Somalia\", \"brk_a3\": \"SOM\", \"brk_name\": \"Somalia\", \"brk_group\": null, \"abbrev\": \"Som.\", \"postal\": \"SO\", \"formal_en\": \"Federal Republic of Somalia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Somalia\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 8.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 7.000000, \"pop_est\": 9832017.000000, \"gdp_md_est\": 5524.000000, \"pop_year\": -99.000000, \"lastcensus\": 1987.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SO\", \"iso_a3\": \"SOM\", \"iso_n3\": \"706\", \"un_a3\": \"706\", \"wb_a2\": \"SO\", \"wb_a3\": \"SOM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SOM\", \"adm0_a3_us\": \"SOM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 49.72862, 11.5789 ], [ 50.25878, 11.67957 ], [ 50.73202, 12.0219 ], [ 51.1112, 12.02464 ], [ 51.13387, 11.74815 ], [ 51.04153, 11.16651 ], [ 51.04531, 10.6409 ], [ 50.83418, 10.27972 ], [ 50.55239, 9.19874 ], [ 50.07092, 8.08173 ], [ 49.4527, 6.80466 ], [ 48.59455, 5.33911 ], [ 47.74079, 4.2194 ], [ 46.56476, 2.85529 ], [ 45.56399, 2.04576 ], [ 44.06815, 1.05283 ], [ 43.13597, 0.2922 ], [ 42.04157, -0.91916 ], [ 41.81095, -1.44647 ], [ 41.58513, -1.68325 ], [ 40.993, -0.85829 ], [ 40.98105, 2.78452 ], [ 41.855083092643973, 3.918911920483727 ], [ 42.12861, 4.23413 ], [ 42.76967, 4.25259 ], [ 43.66087, 4.95755 ], [ 44.9636, 5.00162 ], [ 47.78942, 8.003 ], [ 48.486735874226952, 8.837626247589995 ], [ 48.938129510296449, 9.451748968946617 ], [ 48.938232863161033, 9.973500067581512 ], [ 48.938491245322496, 10.982327378783467 ], [ 48.942005242718352, 11.394266058798138 ], [ 48.948204758509739, 11.410617281697963 ], [ 49.26776, 11.43033 ], [ 49.72862, 11.5789 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Republic of Serbia\", \"sov_a3\": \"SRB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Republic of Serbia\", \"adm0_a3\": \"SRB\", \"geou_dif\": 0.000000, \"geounit\": \"Republic of Serbia\", \"gu_a3\": \"SRB\", \"su_dif\": 0.000000, \"subunit\": \"Republic of Serbia\", \"su_a3\": \"SRB\", \"brk_diff\": 0.000000, \"name\": \"Serbia\", \"name_long\": \"Serbia\", \"brk_a3\": \"SRB\", \"brk_name\": \"Serbia\", \"brk_group\": null, \"abbrev\": \"Serb.\", \"postal\": \"RS\", \"formal_en\": \"Republic of Serbia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Serbia\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 10.000000, \"pop_est\": 7379339.000000, \"gdp_md_est\": 80340.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"RS\", \"iso_a3\": \"SRB\", \"iso_n3\": \"688\", \"un_a3\": \"688\", \"wb_a2\": \"YF\", \"wb_a3\": \"SRB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SRB\", \"adm0_a3_us\": \"SRB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 20.874312778413412, 45.41637543393432 ], [ 21.483526238702211, 45.181170152357879 ], [ 21.562022739353722, 44.768947251965642 ], [ 22.145087924902896, 44.478422349620587 ], [ 22.459022251075965, 44.702517198254441 ], [ 22.705725538837441, 44.578002834647009 ], [ 22.474008416440654, 44.409227606781769 ], [ 22.657149692483074, 44.234923000661354 ], [ 22.410446404721597, 44.008063462900054 ], [ 22.500156691180223, 43.642814439461006 ], [ 22.986018507588483, 43.211161200527101 ], [ 22.604801466571359, 42.898518785161116 ], [ 22.436594679461393, 42.580321153323951 ], [ 22.54501183440965, 42.46136200618804 ], [ 22.380525750424681, 42.320259507815081 ], [ 21.917080000000112, 42.30364 ], [ 21.576635989402121, 42.245224397061861 ], [ 21.54332, 42.320250000000101 ], [ 21.66292, 42.43922 ], [ 21.77505, 42.6827 ], [ 21.63302, 42.67717 ], [ 21.43866, 42.86255 ], [ 21.27421, 42.90959 ], [ 21.143395, 43.06868500000013 ], [ 20.95651, 43.13094 ], [ 20.81448, 43.27205 ], [ 20.63508, 43.21671 ], [ 20.49679, 42.88469 ], [ 20.25758, 42.812750000000108 ], [ 20.3398, 42.89852 ], [ 19.95857, 43.10604 ], [ 19.63, 43.213779970270537 ], [ 19.48389, 43.35229 ], [ 19.21852, 43.52384 ], [ 19.454, 43.568100000000129 ], [ 19.59976, 44.03847 ], [ 19.11761, 44.423070000000109 ], [ 19.36803, 44.863 ], [ 19.00548, 44.86023 ], [ 19.390475701584592, 45.236515611342384 ], [ 19.072768995854176, 45.521511135432092 ], [ 18.82982, 45.90888 ], [ 19.59604454924164, 46.171729844744561 ], [ 20.220192498462893, 46.127468980486583 ], [ 20.762174920339987, 45.734573065771485 ], [ 20.874312778413412, 45.41637543393432 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Suriname\", \"sov_a3\": \"SUR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Suriname\", \"adm0_a3\": \"SUR\", \"geou_dif\": 0.000000, \"geounit\": \"Suriname\", \"gu_a3\": \"SUR\", \"su_dif\": 0.000000, \"subunit\": \"Suriname\", \"su_a3\": \"SUR\", \"brk_diff\": 0.000000, \"name\": \"Suriname\", \"name_long\": \"Suriname\", \"brk_a3\": \"SUR\", \"brk_name\": \"Suriname\", \"brk_group\": null, \"abbrev\": \"Sur.\", \"postal\": \"SR\", \"formal_en\": \"Republic of Suriname\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Suriname\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 6.000000, \"pop_est\": 481267.000000, \"gdp_md_est\": 4254.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SR\", \"iso_a3\": \"SUR\", \"iso_n3\": \"740\", \"un_a3\": \"740\", \"wb_a2\": \"SR\", \"wb_a3\": \"SUR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SUR\", \"adm0_a3_us\": \"SUR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -57.147436489476888, 5.973149929219161 ], [ -55.9493184067898, 5.772877915872002 ], [ -55.841779751190415, 5.95312531170606 ], [ -55.033250291551774, 6.025291449401664 ], [ -53.958044603070903, 5.756548163267765 ], [ -54.478632981979231, 4.896755682795586 ], [ -54.399542202356514, 4.212611395683467 ], [ -54.006930508019011, 3.620037746592558 ], [ -54.181726040246275, 3.189779771330421 ], [ -54.269705166223197, 2.732391669115046 ], [ -54.524754197799716, 2.311848863123785 ], [ -55.097587449755139, 2.523748073736613 ], [ -55.569755011605999, 2.421506252447131 ], [ -55.973322109589375, 2.510363877773017 ], [ -56.073341844290297, 2.220794989425499 ], [ -55.905600145070885, 2.02199575439866 ], [ -55.995698004771754, 1.817667141116601 ], [ -56.539385748914555, 1.899522609866921 ], [ -57.150097825739913, 2.768926906745406 ], [ -57.28143347840971, 3.333491929534119 ], [ -57.60156897645787, 3.334654649260685 ], [ -58.044694383360678, 4.060863552258382 ], [ -57.860209520078698, 4.57680105226045 ], [ -57.914288906472137, 4.812626451024414 ], [ -57.307245856339506, 5.073566595882227 ], [ -57.147436489476888, 5.973149929219161 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Slovakia\", \"sov_a3\": \"SVK\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Slovakia\", \"adm0_a3\": \"SVK\", \"geou_dif\": 0.000000, \"geounit\": \"Slovakia\", \"gu_a3\": \"SVK\", \"su_dif\": 0.000000, \"subunit\": \"Slovakia\", \"su_a3\": \"SVK\", \"brk_diff\": 0.000000, \"name\": \"Slovakia\", \"name_long\": \"Slovakia\", \"brk_a3\": \"SVK\", \"brk_name\": \"Slovakia\", \"brk_group\": null, \"abbrev\": \"Svk.\", \"postal\": \"SK\", \"formal_en\": \"Slovak Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Slovak Republic\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 9.000000, \"pop_est\": 5463046.000000, \"gdp_md_est\": 119500.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SK\", \"iso_a3\": \"SVK\", \"iso_n3\": \"703\", \"un_a3\": \"703\", \"wb_a2\": \"SK\", \"wb_a3\": \"SVK\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SVK\", \"adm0_a3_us\": \"SVK\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 18.853144158613617, 49.496229763377642 ], [ 18.909574822676319, 49.435845852244576 ], [ 19.320712517990472, 49.571574001659194 ], [ 19.825022820726872, 49.217125352569226 ], [ 20.415839471119853, 49.431453355499769 ], [ 20.887955356538413, 49.32877228453583 ], [ 21.607808058364213, 49.470107326854091 ], [ 22.558137648211755, 49.085738023467144 ], [ 22.28084191253356, 48.825392157580673 ], [ 22.085608351334855, 48.422264309271789 ], [ 21.872236362401736, 48.319970811550021 ], [ 20.801293979584926, 48.623854071642384 ], [ 20.473562045989866, 48.562850043321816 ], [ 20.239054396249347, 48.327567247096923 ], [ 19.769470656013112, 48.202691148463614 ], [ 19.661363559658497, 48.266614895208662 ], [ 19.174364861739889, 48.111378892603867 ], [ 18.777024773847671, 48.081768296900634 ], [ 18.696512892336926, 47.880953681014404 ], [ 17.857132602620027, 47.758428860050373 ], [ 17.48847293464982, 47.867466132186216 ], [ 16.979666782304037, 48.123497015976305 ], [ 16.879982944413001, 48.47001333270947 ], [ 16.960288120194576, 48.5969823268506 ], [ 17.101984897538898, 48.816968899117114 ], [ 17.545006951577108, 48.80001902932537 ], [ 17.886484816161811, 48.903475246773709 ], [ 17.913511590250465, 48.996492824899086 ], [ 18.104972771891852, 49.043983466175312 ], [ 18.170498488037964, 49.271514797556435 ], [ 18.399993523846177, 49.315000515330041 ], [ 18.554971144289482, 49.495015367218784 ], [ 18.853144158613617, 49.496229763377642 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Slovenia\", \"sov_a3\": \"SVN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Slovenia\", \"adm0_a3\": \"SVN\", \"geou_dif\": 0.000000, \"geounit\": \"Slovenia\", \"gu_a3\": \"SVN\", \"su_dif\": 0.000000, \"subunit\": \"Slovenia\", \"su_a3\": \"SVN\", \"brk_diff\": 0.000000, \"name\": \"Slovenia\", \"name_long\": \"Slovenia\", \"brk_a3\": \"SVN\", \"brk_name\": \"Slovenia\", \"brk_group\": null, \"abbrev\": \"Slo.\", \"postal\": \"SLO\", \"formal_en\": \"Republic of Slovenia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Slovenia\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 12.000000, \"pop_est\": 2005692.000000, \"gdp_md_est\": 59340.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SI\", \"iso_a3\": \"SVN\", \"iso_n3\": \"705\", \"un_a3\": \"705\", \"wb_a2\": \"SI\", \"wb_a3\": \"SVN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SVN\", \"adm0_a3_us\": \"SVN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Southern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 13.806475457421527, 46.509306138691215 ], [ 14.632471551174829, 46.431817328469549 ], [ 15.137091912504985, 46.65870270444703 ], [ 16.011663852612656, 46.683610744811702 ], [ 16.202298211337364, 46.852385972676963 ], [ 16.370504998447416, 46.841327216166505 ], [ 16.564808383864857, 46.50375092221983 ], [ 15.768732944408553, 46.238108222023449 ], [ 15.671529575267556, 45.834153550797879 ], [ 15.323953891672405, 45.73178253842768 ], [ 15.327674594797429, 45.452316392593232 ], [ 14.935243767972935, 45.471695054702685 ], [ 14.595109490627806, 45.634940904312714 ], [ 14.411968214585414, 45.46616567644746 ], [ 13.715059848697223, 45.500323798192376 ], [ 13.937630242578308, 45.591015936864622 ], [ 13.698109978905478, 46.016778062517353 ], [ 13.806475457421527, 46.509306138691215 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Sweden\", \"sov_a3\": \"SWE\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Sweden\", \"adm0_a3\": \"SWE\", \"geou_dif\": 0.000000, \"geounit\": \"Sweden\", \"gu_a3\": \"SWE\", \"su_dif\": 0.000000, \"subunit\": \"Sweden\", \"su_a3\": \"SWE\", \"brk_diff\": 0.000000, \"name\": \"Sweden\", \"name_long\": \"Sweden\", \"brk_a3\": \"SWE\", \"brk_name\": \"Sweden\", \"brk_group\": null, \"abbrev\": \"Swe.\", \"postal\": \"S\", \"formal_en\": \"Kingdom of Sweden\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Sweden\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 4.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 4.000000, \"pop_est\": 9059651.000000, \"gdp_md_est\": 344300.000000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SE\", \"iso_a3\": \"SWE\", \"iso_n3\": \"752\", \"un_a3\": \"752\", \"wb_a2\": \"SE\", \"wb_a3\": \"SWE\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SWE\", \"adm0_a3_us\": \"SWE\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Northern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 22.18317345550193, 65.723740546320172 ], [ 21.21351687997722, 65.026005357515274 ], [ 21.369631381930958, 64.413587958424287 ], [ 19.77887576669022, 63.609554348395037 ], [ 17.847779168375212, 62.74940013289681 ], [ 17.119554884518124, 61.341165676510968 ], [ 17.831346062906391, 60.636583360427409 ], [ 18.787721795332089, 60.081914374422595 ], [ 17.86922488777634, 58.953766181058697 ], [ 16.829185011470088, 58.719826972073392 ], [ 16.447709588291474, 57.041118069071885 ], [ 15.879785597403783, 56.104301866268663 ], [ 14.666681349352075, 56.200885118222175 ], [ 14.100721062891465, 55.407781073622651 ], [ 12.942910597392057, 55.361737372450577 ], [ 12.625100538797028, 56.30708018658197 ], [ 11.787942335668674, 57.441817125063068 ], [ 11.027368605196868, 58.856149400459358 ], [ 11.468271925511146, 59.432393296946039 ], [ 12.300365838274899, 60.117932847730032 ], [ 12.631146681375185, 61.293571682370136 ], [ 11.992064243221563, 61.80036245385655 ], [ 11.930569288794231, 63.128317572676977 ], [ 12.579935336973934, 64.066218980558332 ], [ 13.571916131248713, 64.04911408146971 ], [ 13.919905226302204, 64.44542064071608 ], [ 13.555689731509091, 64.787027696381514 ], [ 15.108411492583002, 66.193866889095474 ], [ 16.108712192456778, 67.302455552836889 ], [ 16.768878614985482, 68.013936672631402 ], [ 17.729181756265348, 68.010551866316277 ], [ 17.993868442464333, 68.567391262477358 ], [ 19.878559604581255, 68.407194322372575 ], [ 20.025268995857886, 69.065138658312705 ], [ 20.645592889089528, 69.106247260200874 ], [ 21.978534783626117, 68.616845608180697 ], [ 23.539473097434438, 67.93600861273525 ], [ 23.565879754335583, 66.396050930437426 ], [ 23.903378533633802, 66.006927395279618 ], [ 22.18317345550193, 65.723740546320172 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Swaziland\", \"sov_a3\": \"SWZ\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Swaziland\", \"adm0_a3\": \"SWZ\", \"geou_dif\": 0.000000, \"geounit\": \"Swaziland\", \"gu_a3\": \"SWZ\", \"su_dif\": 0.000000, \"subunit\": \"Swaziland\", \"su_a3\": \"SWZ\", \"brk_diff\": 0.000000, \"name\": \"Swaziland\", \"name_long\": \"Swaziland\", \"brk_a3\": \"SWZ\", \"brk_name\": \"Swaziland\", \"brk_group\": null, \"abbrev\": \"Swz.\", \"postal\": \"SW\", \"formal_en\": \"Kingdom of Swaziland\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Swaziland\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 5.000000, \"pop_est\": 1123913.000000, \"gdp_md_est\": 5702.000000, \"pop_year\": -99.000000, \"lastcensus\": 2007.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SZ\", \"iso_a3\": \"SWZ\", \"iso_n3\": \"748\", \"un_a3\": \"748\", \"wb_a2\": \"SZ\", \"wb_a3\": \"SWZ\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SWZ\", \"adm0_a3_us\": \"SWZ\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Southern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 32.071665480281069, -26.733820082304909 ], [ 31.86806033705108, -27.177927341421277 ], [ 31.282773064913329, -27.285879408478998 ], [ 30.68596194837448, -26.743845310169533 ], [ 30.67660851412964, -26.398078301704608 ], [ 30.949666782359913, -26.022649021104151 ], [ 31.044079624157149, -25.731452325139443 ], [ 31.333157586397903, -25.66019052500895 ], [ 31.83777794772806, -25.843331801051349 ], [ 31.985779249811969, -26.291779880480227 ], [ 32.071665480281069, -26.733820082304909 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Syria\", \"sov_a3\": \"SYR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Syria\", \"adm0_a3\": \"SYR\", \"geou_dif\": 0.000000, \"geounit\": \"Syria\", \"gu_a3\": \"SYR\", \"su_dif\": 0.000000, \"subunit\": \"Syria\", \"su_a3\": \"SYR\", \"brk_diff\": 0.000000, \"name\": \"Syria\", \"name_long\": \"Syria\", \"brk_a3\": \"SYR\", \"brk_name\": \"Syria\", \"brk_group\": null, \"abbrev\": \"Syria\", \"postal\": \"SYR\", \"formal_en\": \"Syrian Arab Republic\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Syrian Arab Republic\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 6.000000, \"pop_est\": 20178485.000000, \"gdp_md_est\": 98830.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"SY\", \"iso_a3\": \"SYR\", \"iso_n3\": \"760\", \"un_a3\": \"760\", \"wb_a2\": \"SY\", \"wb_a3\": \"SYR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"SYR\", \"adm0_a3_us\": \"SYR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 38.792340529136084, 33.378686428352225 ], [ 36.834062127435544, 32.312937526980775 ], [ 35.719918247222751, 32.709192409794866 ], [ 35.700797967274752, 32.716013698857381 ], [ 35.836396925608625, 32.868123277308513 ], [ 35.821100701650238, 33.277426459276299 ], [ 36.066460402172055, 33.82491242119255 ], [ 36.611750115715893, 34.201788641897181 ], [ 36.448194207512103, 34.593935248344067 ], [ 35.998402540843642, 34.644914048800004 ], [ 35.905023227692226, 35.410009467097325 ], [ 36.149762811026534, 35.821534735653671 ], [ 36.417550083163036, 36.04061697035506 ], [ 36.685389031731802, 36.259699205056464 ], [ 36.739494256341402, 36.817520453431086 ], [ 37.066761102045831, 36.623036200500621 ], [ 38.167727492024198, 36.901210435527773 ], [ 38.699891391765902, 36.712927354472342 ], [ 39.522580193852548, 36.716053778625991 ], [ 40.673259311695688, 37.091276353497292 ], [ 41.212089471203051, 37.074352321921694 ], [ 42.349591098811771, 37.229872544904097 ], [ 41.837064243340961, 36.605853786763575 ], [ 41.289707472505455, 36.358814602192268 ], [ 41.383965285005814, 35.628316555314356 ], [ 41.006158888519934, 34.419372260062119 ], [ 38.792340529136084, 33.378686428352225 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Chad\", \"sov_a3\": \"TCD\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Chad\", \"adm0_a3\": \"TCD\", \"geou_dif\": 0.000000, \"geounit\": \"Chad\", \"gu_a3\": \"TCD\", \"su_dif\": 0.000000, \"subunit\": \"Chad\", \"su_a3\": \"TCD\", \"brk_diff\": 0.000000, \"name\": \"Chad\", \"name_long\": \"Chad\", \"brk_a3\": \"TCD\", \"brk_name\": \"Chad\", \"brk_group\": null, \"abbrev\": \"Chad\", \"postal\": \"TD\", \"formal_en\": \"Republic of Chad\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Chad\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 8.000000, \"mapcolor13\": 6.000000, \"pop_est\": 10329208.000000, \"gdp_md_est\": 15860.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TD\", \"iso_a3\": \"TCD\", \"iso_n3\": \"148\", \"un_a3\": \"148\", \"wb_a2\": \"TD\", \"wb_a3\": \"TCD\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TCD\", \"adm0_a3_us\": \"TCD\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Middle Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 14.495787387762903, 12.859396267137356 ], [ 14.595781284247607, 13.330426947477861 ], [ 13.95447675950561, 13.353448798063766 ], [ 13.956698846094127, 13.996691189016929 ], [ 13.540393507550789, 14.367133693901224 ], [ 13.97217, 15.68437 ], [ 15.247731154041844, 16.627305813050782 ], [ 15.300441114979719, 17.927949937405003 ], [ 15.685740594147774, 19.957180080642388 ], [ 15.903246697664315, 20.387618923417506 ], [ 15.487148064850146, 20.730414537025638 ], [ 15.47106, 21.04845 ], [ 15.096887648181848, 21.308518785074909 ], [ 14.8513, 22.862950000000126 ], [ 15.86085, 23.40972 ], [ 19.84926, 21.49509 ], [ 23.837660000000142, 19.580470000000105 ], [ 23.886890000000108, 15.61084 ], [ 23.024590000000103, 15.68072 ], [ 22.56795000000011, 14.944290000000137 ], [ 22.30351, 14.32682 ], [ 22.51202, 14.09318 ], [ 22.18329, 13.78648 ], [ 22.29658, 13.37232 ], [ 22.03759, 12.95546 ], [ 21.93681, 12.588180000000136 ], [ 22.28801, 12.64605 ], [ 22.49762, 12.26024 ], [ 22.50869, 11.67936 ], [ 22.87622, 11.384610000000123 ], [ 22.864165480244253, 11.142395127807617 ], [ 22.23112918466876, 10.97188873946061 ], [ 21.723821648859541, 10.567055568885962 ], [ 21.000868361096309, 9.47598521569148 ], [ 20.059685499764271, 9.012706000194839 ], [ 19.094008009526078, 9.074846910025769 ], [ 18.812009718509273, 8.982914536978626 ], [ 18.911021762780592, 8.630894680206438 ], [ 18.389554884523307, 8.281303615751881 ], [ 17.964929640380888, 7.890914008002994 ], [ 16.705988396886369, 7.508327541529979 ], [ 16.456184523187403, 7.73477366783294 ], [ 16.290561557691888, 7.754307359239419 ], [ 16.106231723706742, 7.497087917506462 ], [ 15.279460483469165, 7.421924546738012 ], [ 15.436091749745742, 7.692812404811889 ], [ 15.120865512765306, 8.382150173369439 ], [ 14.979995558337691, 8.796104234243444 ], [ 14.544466586981855, 8.96586131432224 ], [ 13.954218377344091, 9.549494940626687 ], [ 14.171466098699113, 10.021378282100045 ], [ 14.62720055508106, 9.920919297724595 ], [ 14.9093538753948, 9.99212942142276 ], [ 15.467872755605242, 9.982336737503545 ], [ 14.923564894275046, 10.891325181517516 ], [ 14.960151808337685, 11.555574042197236 ], [ 14.89336, 12.21905 ], [ 14.495787387762903, 12.859396267137356 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 6.000000, \"sovereignt\": \"Togo\", \"sov_a3\": \"TGO\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Togo\", \"adm0_a3\": \"TGO\", \"geou_dif\": 0.000000, \"geounit\": \"Togo\", \"gu_a3\": \"TGO\", \"su_dif\": 0.000000, \"subunit\": \"Togo\", \"su_a3\": \"TGO\", \"brk_diff\": 0.000000, \"name\": \"Togo\", \"name_long\": \"Togo\", \"brk_a3\": \"TGO\", \"brk_name\": \"Togo\", \"brk_group\": null, \"abbrev\": \"Togo\", \"postal\": \"TG\", \"formal_en\": \"Togolese Republic\", \"formal_fr\": \"République Togolaise\", \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Togo\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 5.000000, \"pop_est\": 6019877.000000, \"gdp_md_est\": 5118.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TG\", \"iso_a3\": \"TGO\", \"iso_n3\": \"768\", \"un_a3\": \"768\", \"wb_a2\": \"TG\", \"wb_a3\": \"TGO\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TGO\", \"adm0_a3_us\": \"TGO\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Western Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 4.000000, \"long_len\": 4.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 1.865240512712319, 6.142157701029731 ], [ 1.060121697604927, 5.928837388528876 ], [ 0.836931186536333, 6.279978745952149 ], [ 0.570384148774849, 6.914358628767189 ], [ 0.490957472342245, 7.411744289576475 ], [ 0.712029249686879, 8.312464504423829 ], [ 0.461191847342121, 8.677222601756014 ], [ 0.365900506195885, 9.465003973829482 ], [ 0.367579990245389, 10.19121287682718 ], [ -0.049784715159944, 10.706917832883931 ], [ 0.023802524423701, 11.018681748900804 ], [ 0.899563022474069, 10.99733938236426 ], [ 0.772335646171484, 10.470808213742359 ], [ 1.077795037448738, 10.175606594275024 ], [ 1.425060662450136, 9.825395412633 ], [ 1.46304284018467, 9.334624335157088 ], [ 1.664477573258381, 9.128590399609379 ], [ 1.618950636409238, 6.832038072126238 ], [ 1.865240512712319, 6.142157701029731 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Thailand\", \"sov_a3\": \"THA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Thailand\", \"adm0_a3\": \"THA\", \"geou_dif\": 0.000000, \"geounit\": \"Thailand\", \"gu_a3\": \"THA\", \"su_dif\": 0.000000, \"subunit\": \"Thailand\", \"su_a3\": \"THA\", \"brk_diff\": 0.000000, \"name\": \"Thailand\", \"name_long\": \"Thailand\", \"brk_a3\": \"THA\", \"brk_name\": \"Thailand\", \"brk_group\": null, \"abbrev\": \"Thai.\", \"postal\": \"TH\", \"formal_en\": \"Kingdom of Thailand\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Thailand\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 8.000000, \"mapcolor13\": 1.000000, \"pop_est\": 65905410.000000, \"gdp_md_est\": 547400.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TH\", \"iso_a3\": \"THA\", \"iso_n3\": \"764\", \"un_a3\": \"764\", \"wb_a2\": \"TH\", \"wb_a3\": \"THA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"THA\", \"adm0_a3_us\": \"THA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 102.584932489026698, 12.186594956913282 ], [ 101.687157830819956, 12.645740057826572 ], [ 100.831809523524868, 12.627084865769206 ], [ 100.978467238369205, 13.412721665902566 ], [ 100.097797479251113, 13.406856390837433 ], [ 100.018732537844556, 12.307001044153354 ], [ 99.47892052612363, 10.846366685423547 ], [ 99.153772414143162, 9.963061428258555 ], [ 99.222398716226763, 9.239255479362427 ], [ 99.873831821698133, 9.20786204674512 ], [ 100.279646844486223, 8.295152899606052 ], [ 100.459274123132758, 7.429572658717177 ], [ 101.017327915452725, 6.856868597842478 ], [ 101.62307905477806, 6.74062246340192 ], [ 102.141186964936381, 6.221636053894628 ], [ 101.814281854257985, 5.810808417174242 ], [ 101.154218784593866, 5.691384182147715 ], [ 101.075515578213356, 6.204867051615921 ], [ 100.259596388756961, 6.642824815289543 ], [ 100.085756870527106, 6.464489447450291 ], [ 99.690690545655755, 6.848212795433597 ], [ 99.519641554769635, 7.34345388430276 ], [ 98.988252801512303, 7.907993068875328 ], [ 98.503786248775995, 8.382305202666288 ], [ 98.339661899817003, 7.794511623562386 ], [ 98.150009393305822, 8.350007432483878 ], [ 98.259150018306258, 8.973922837759801 ], [ 98.553550653073046, 9.932959906448545 ], [ 99.038120558673981, 10.960545762572437 ], [ 99.587286004639722, 11.892762762901697 ], [ 99.196353794351666, 12.80474843998867 ], [ 99.212011753336085, 13.269293728076464 ], [ 99.097755161538757, 13.827502549693278 ], [ 98.430819126379873, 14.622027696180837 ], [ 98.192074009191401, 15.123702500870351 ], [ 98.537375929765716, 15.308497422746084 ], [ 98.903348423256759, 16.177824204976119 ], [ 98.49376102091135, 16.837835598207931 ], [ 97.859122755934862, 17.567946071843664 ], [ 97.375896437573545, 18.445437730375815 ], [ 97.797782830804408, 18.627080389881755 ], [ 98.25372399291561, 19.708203029860044 ], [ 98.959675734454876, 19.752980658440947 ], [ 99.543309360759309, 20.186597601802063 ], [ 100.115987583417848, 20.417849636308187 ], [ 100.548881056726884, 20.109237982661128 ], [ 100.606293573003157, 19.508344427971224 ], [ 101.282014601651696, 19.462584947176765 ], [ 101.035931431077771, 18.408928330961615 ], [ 101.059547560635167, 17.51249725999449 ], [ 102.113591750092482, 18.109101670804165 ], [ 102.413004998791621, 17.932781683824288 ], [ 102.998705682387708, 17.961694647691601 ], [ 103.20019209189374, 18.309632066312773 ], [ 103.956476678485302, 18.240954087796879 ], [ 104.716947056092494, 17.428858954330082 ], [ 104.779320509868796, 16.441864935771449 ], [ 105.589038527450157, 15.570316066952858 ], [ 105.544338413517693, 14.723933620660418 ], [ 105.218776890078885, 14.273211778210694 ], [ 104.281418084736615, 14.416743068901367 ], [ 102.988422072361629, 14.225721136934467 ], [ 102.348099399833018, 13.394247341358223 ], [ 102.584932489026698, 12.186594956913282 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Tajikistan\", \"sov_a3\": \"TJK\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Tajikistan\", \"adm0_a3\": \"TJK\", \"geou_dif\": 0.000000, \"geounit\": \"Tajikistan\", \"gu_a3\": \"TJK\", \"su_dif\": 0.000000, \"subunit\": \"Tajikistan\", \"su_a3\": \"TJK\", \"brk_diff\": 0.000000, \"name\": \"Tajikistan\", \"name_long\": \"Tajikistan\", \"brk_a3\": \"TJK\", \"brk_name\": \"Tajikistan\", \"brk_group\": null, \"abbrev\": \"Tjk.\", \"postal\": \"TJ\", \"formal_en\": \"Republic of Tajikistan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Tajikistan\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 5.000000, \"pop_est\": 7349145.000000, \"gdp_md_est\": 13160.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TJ\", \"iso_a3\": \"TJK\", \"iso_n3\": \"762\", \"un_a3\": \"762\", \"wb_a2\": \"TJ\", \"wb_a3\": \"TJK\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TJK\", \"adm0_a3_us\": \"TJK\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Central Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 71.01419803252017, 40.244365546218233 ], [ 70.648018833299972, 39.935753892571171 ], [ 69.559609816368521, 40.103211371412982 ], [ 69.46488691597753, 39.526683254548701 ], [ 70.549161818325615, 39.604197902986499 ], [ 71.784693637992007, 39.27946320246437 ], [ 73.675379266254794, 39.431236884105601 ], [ 73.928852166646436, 38.505815334622739 ], [ 74.257514276022732, 38.606506862943448 ], [ 74.864815708316826, 38.378846340481601 ], [ 74.829985792952101, 37.990007025701402 ], [ 74.980002475895418, 37.419990139305895 ], [ 73.9486959166465, 37.4215662704908 ], [ 73.260055779925011, 37.495256862939002 ], [ 72.636889682917285, 37.047558091778356 ], [ 72.193040805962397, 36.948287665345674 ], [ 71.844638299450594, 36.738171291646921 ], [ 71.448693475230243, 37.06564484308052 ], [ 71.541917759084782, 37.905774441065645 ], [ 71.239403924448169, 37.953265082341886 ], [ 71.348131137990265, 38.258905341132163 ], [ 70.806820509732887, 38.486281643216415 ], [ 70.376304152309302, 38.138395901027522 ], [ 70.270574171840138, 37.735164699854025 ], [ 70.116578403610333, 37.588222764632093 ], [ 69.518785434857961, 37.60899669041342 ], [ 69.196272820924378, 37.151143500307427 ], [ 68.859445835245936, 37.344335842430596 ], [ 68.135562371701383, 37.023115139304309 ], [ 67.829999627559516, 37.144994004864685 ], [ 68.392032505165957, 38.157025254868742 ], [ 68.176025018185925, 38.901553453113905 ], [ 67.442219679641312, 39.140143541005486 ], [ 67.701428664017357, 39.580478420564532 ], [ 68.536416456989429, 39.533452867178937 ], [ 69.011632928345506, 40.086158148756667 ], [ 69.329494663372827, 40.727824408524853 ], [ 70.666622348925046, 40.960213324541414 ], [ 70.458159621059622, 40.496494859370287 ], [ 70.601406691372688, 40.218527330072291 ], [ 71.01419803252017, 40.244365546218233 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Turkmenistan\", \"sov_a3\": \"TKM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Turkmenistan\", \"adm0_a3\": \"TKM\", \"geou_dif\": 0.000000, \"geounit\": \"Turkmenistan\", \"gu_a3\": \"TKM\", \"su_dif\": 0.000000, \"subunit\": \"Turkmenistan\", \"su_a3\": \"TKM\", \"brk_diff\": 0.000000, \"name\": \"Turkmenistan\", \"name_long\": \"Turkmenistan\", \"brk_a3\": \"TKM\", \"brk_name\": \"Turkmenistan\", \"brk_group\": null, \"abbrev\": \"Turkm.\", \"postal\": \"TM\", \"formal_en\": \"Turkmenistan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Turkmenistan\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 9.000000, \"pop_est\": 4884887.000000, \"gdp_md_est\": 29780.000000, \"pop_year\": -99.000000, \"lastcensus\": 1995.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TM\", \"iso_a3\": \"TKM\", \"iso_n3\": \"795\", \"un_a3\": \"795\", \"wb_a2\": \"TM\", \"wb_a3\": \"TKM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TKM\", \"adm0_a3_us\": \"TKM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Central Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 12.000000, \"long_len\": 12.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 61.210817091725744, 35.650072333309225 ], [ 61.123070509694145, 36.491597194966246 ], [ 60.377637973883878, 36.527383124328367 ], [ 59.234761997316809, 37.412987982730343 ], [ 58.436154412678206, 37.522309475243802 ], [ 57.330433790928986, 38.02922943781094 ], [ 56.619366082592819, 38.121394354803485 ], [ 56.180374790273333, 37.93512665460743 ], [ 55.511578403551908, 37.964117133123167 ], [ 54.800303989486565, 37.392420762678185 ], [ 53.921597934795557, 37.198918361961262 ], [ 53.735511102112518, 37.906136176091692 ], [ 53.880928582581845, 38.952093003895357 ], [ 53.101027866432901, 39.290573635407128 ], [ 53.35780805849123, 39.975286363274449 ], [ 52.693972609269821, 40.033629055331971 ], [ 52.915251092343624, 40.876523342444727 ], [ 53.858139275941134, 40.631034450842179 ], [ 54.73684533063215, 40.951014919593462 ], [ 54.008310988181314, 41.551210842447418 ], [ 53.72171349469059, 42.12319143327003 ], [ 52.916749708880076, 41.868116563477329 ], [ 52.814688755103617, 41.135370591794711 ], [ 52.502459751196149, 41.78331553808637 ], [ 52.944293247291654, 42.116034247397593 ], [ 54.079417759014952, 42.324109402020831 ], [ 54.755345493392639, 42.043971462566574 ], [ 55.45525109235377, 41.25985911718584 ], [ 55.968191359282912, 41.308641669269363 ], [ 57.096391229079103, 41.322310085610567 ], [ 56.932215203687804, 41.826026109375604 ], [ 57.786529982337079, 42.170552883465518 ], [ 58.62901085799146, 42.751551011723052 ], [ 59.976422153569786, 42.223081976890207 ], [ 60.083340691981675, 41.425146185871405 ], [ 60.465952996670694, 41.220326646482548 ], [ 61.547178989513561, 41.266370347654615 ], [ 61.882714064384693, 41.084856879229406 ], [ 62.374260288345006, 40.053886216790389 ], [ 63.518014764261032, 39.363256537425642 ], [ 64.170223016216767, 38.892406724598246 ], [ 65.215998976507393, 38.4026950139843 ], [ 66.546150343700219, 37.974684963526869 ], [ 66.51860680528867, 37.362784328758792 ], [ 66.217384881459338, 37.39379018813392 ], [ 65.745630731066825, 37.661164048812068 ], [ 65.588947788357842, 37.305216783185642 ], [ 64.746105177677407, 37.111817735333304 ], [ 64.546479119733903, 36.312073269184268 ], [ 63.98289594915871, 36.007957465146603 ], [ 63.193538445900352, 35.857165635718914 ], [ 62.98466230657661, 35.404040839167621 ], [ 62.230651483005886, 35.270663967422294 ], [ 61.210817091725744, 35.650072333309225 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"East Timor\", \"sov_a3\": \"TLS\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"East Timor\", \"adm0_a3\": \"TLS\", \"geou_dif\": 0.000000, \"geounit\": \"East Timor\", \"gu_a3\": \"TLS\", \"su_dif\": 0.000000, \"subunit\": \"East Timor\", \"su_a3\": \"TLS\", \"brk_diff\": 0.000000, \"name\": \"Timor-Leste\", \"name_long\": \"Timor-Leste\", \"brk_a3\": \"TLS\", \"brk_name\": \"Timor-Leste\", \"brk_group\": null, \"abbrev\": \"T.L.\", \"postal\": \"TL\", \"formal_en\": \"Democratic Republic of Timor-Leste\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Timor-Leste\", \"name_alt\": \"East Timor\", \"mapcolor7\": 2.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 3.000000, \"pop_est\": 1131612.000000, \"gdp_md_est\": 2520.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TL\", \"iso_a3\": \"TLS\", \"iso_n3\": \"626\", \"un_a3\": \"626\", \"wb_a2\": \"TP\", \"wb_a3\": \"TMP\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TLS\", \"adm0_a3_us\": \"TLS\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 11.000000, \"long_len\": 11.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 124.968682489116233, -8.892790215697083 ], [ 125.086246372580263, -8.65688730228468 ], [ 125.947072381698263, -8.432094821815035 ], [ 126.644704217638548, -8.398246758663852 ], [ 126.957243280139835, -8.273344821814398 ], [ 127.33592817597463, -8.397316582882603 ], [ 126.967991978056546, -8.668256117388893 ], [ 125.925885044458596, -9.106007175333353 ], [ 125.088520135601087, -9.393173109579294 ], [ 125.070019972840612, -9.089987481322872 ], [ 124.968682489116233, -8.892790215697083 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 5.000000, \"sovereignt\": \"Trinidad and Tobago\", \"sov_a3\": \"TTO\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Trinidad and Tobago\", \"adm0_a3\": \"TTO\", \"geou_dif\": 0.000000, \"geounit\": \"Trinidad and Tobago\", \"gu_a3\": \"TTO\", \"su_dif\": 0.000000, \"subunit\": \"Trinidad and Tobago\", \"su_a3\": \"TTO\", \"brk_diff\": 0.000000, \"name\": \"Trinidad and Tobago\", \"name_long\": \"Trinidad and Tobago\", \"brk_a3\": \"TTO\", \"brk_name\": \"Trinidad and Tobago\", \"brk_group\": null, \"abbrev\": \"Tr.T.\", \"postal\": \"TT\", \"formal_en\": \"Republic of Trinidad and Tobago\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Trinidad and Tobago\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 5.000000, \"pop_est\": 1310000.000000, \"gdp_md_est\": 29010.000000, \"pop_year\": -99.000000, \"lastcensus\": 2011.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TT\", \"iso_a3\": \"TTO\", \"iso_n3\": \"780\", \"un_a3\": \"780\", \"wb_a2\": \"TT\", \"wb_a3\": \"TTO\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TTO\", \"adm0_a3_us\": \"TTO\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Caribbean\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 19.000000, \"long_len\": 19.000000, \"abbrev_len\": 5.000000, \"tiny\": 2.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -61.68, 10.76 ], [ -61.105, 10.89 ], [ -60.895, 10.855 ], [ -60.935, 10.11 ], [ -61.77, 10.0 ], [ -61.95, 10.09 ], [ -61.66, 10.365 ], [ -61.68, 10.76 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Tunisia\", \"sov_a3\": \"TUN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Tunisia\", \"adm0_a3\": \"TUN\", \"geou_dif\": 0.000000, \"geounit\": \"Tunisia\", \"gu_a3\": \"TUN\", \"su_dif\": 0.000000, \"subunit\": \"Tunisia\", \"su_a3\": \"TUN\", \"brk_diff\": 0.000000, \"name\": \"Tunisia\", \"name_long\": \"Tunisia\", \"brk_a3\": \"TUN\", \"brk_name\": \"Tunisia\", \"brk_group\": null, \"abbrev\": \"Tun.\", \"postal\": \"TN\", \"formal_en\": \"Republic of Tunisia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Tunisia\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 2.000000, \"pop_est\": 10486339.000000, \"gdp_md_est\": 81710.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TN\", \"iso_a3\": \"TUN\", \"iso_n3\": \"788\", \"un_a3\": \"788\", \"wb_a2\": \"TN\", \"wb_a3\": \"TUN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TUN\", \"adm0_a3_us\": \"TUN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Northern Africa\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 9.482139926805274, 30.307556057246188 ], [ 9.055602654668149, 32.102691962201291 ], [ 8.439102817426118, 32.506284898400821 ], [ 8.430472853233368, 32.748337307255952 ], [ 7.612641635782182, 33.344114895148962 ], [ 7.524481642292244, 34.09737641045146 ], [ 8.140981479534304, 34.65514598239379 ], [ 8.376367628623768, 35.479876003555944 ], [ 8.217824334352315, 36.433176988260286 ], [ 8.420964389691676, 36.946427313783161 ], [ 9.509993523810607, 37.349994411766545 ], [ 10.210002475636317, 37.230001735984814 ], [ 10.180650262094531, 36.724037787415085 ], [ 11.02886722173335, 37.092103176413957 ], [ 11.100025668999251, 36.899996039368915 ], [ 10.600004510143094, 36.410000108377375 ], [ 10.593286573945138, 35.947444362932814 ], [ 10.939518670300687, 35.698984076473494 ], [ 10.807847120821009, 34.83350718844919 ], [ 10.149592726287125, 34.330773016897709 ], [ 10.339658644256616, 33.785741685515319 ], [ 10.856836378633687, 33.768740139291282 ], [ 11.108500603895122, 33.293342800422195 ], [ 11.488787469131012, 33.136995754523141 ], [ 11.432253452203696, 32.368903103152874 ], [ 10.944789666394456, 32.081814683555365 ], [ 10.636901482799487, 31.761420803345757 ], [ 9.950225050505082, 31.376069647745258 ], [ 10.056575148161755, 30.961831366493598 ], [ 9.970017124072854, 30.53932485607524 ], [ 9.482139926805274, 30.307556057246188 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Turkey\", \"sov_a3\": \"TUR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Turkey\", \"adm0_a3\": \"TUR\", \"geou_dif\": 0.000000, \"geounit\": \"Turkey\", \"gu_a3\": \"TUR\", \"su_dif\": 0.000000, \"subunit\": \"Turkey\", \"su_a3\": \"TUR\", \"brk_diff\": 0.000000, \"name\": \"Turkey\", \"name_long\": \"Turkey\", \"brk_a3\": \"TUR\", \"brk_name\": \"Turkey\", \"brk_group\": null, \"abbrev\": \"Tur.\", \"postal\": \"TR\", \"formal_en\": \"Republic of Turkey\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Turkey\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 8.000000, \"mapcolor13\": 4.000000, \"pop_est\": 76805524.000000, \"gdp_md_est\": 902700.000000, \"pop_year\": -99.000000, \"lastcensus\": 2000.000000, \"gdp_year\": -99.000000, \"economy\": \"4. Emerging region: MIKT\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TR\", \"iso_a3\": \"TUR\", \"iso_n3\": \"792\", \"un_a3\": \"792\", \"wb_a2\": \"TR\", \"wb_a3\": \"TUR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TUR\", \"adm0_a3_us\": \"TUR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 36.913127068842158, 41.335358384764305 ], [ 38.347664829264517, 40.948586127275718 ], [ 39.512606642420252, 41.102762763018575 ], [ 40.373432651538252, 41.013672593747344 ], [ 41.554084100110714, 41.535656236327611 ], [ 42.619548781104555, 41.583172715819927 ], [ 43.582745802592711, 41.092143256182567 ], [ 43.752657911968498, 40.740200914058818 ], [ 43.65643639504097, 40.253563951166171 ], [ 44.400008579288766, 40.005000311842309 ], [ 44.793989699082005, 39.713002631177034 ], [ 44.109225294782362, 39.428136298168056 ], [ 44.421402622257602, 38.281281236314527 ], [ 44.225755649600529, 37.971584377589352 ], [ 44.772699008977753, 37.170444647768448 ], [ 44.293451775902867, 37.00151439060636 ], [ 43.942258742047358, 37.256227525372935 ], [ 42.779125604021857, 37.385263576805812 ], [ 42.349591098811771, 37.229872544904111 ], [ 41.212089471203029, 37.074352321921737 ], [ 40.673259311695716, 37.091276353497364 ], [ 39.522580193852519, 36.716053778626019 ], [ 38.699891391765931, 36.712927354472328 ], [ 38.16772749202417, 36.901210435527787 ], [ 37.066761102045831, 36.623036200500621 ], [ 36.739494256341374, 36.817520453431115 ], [ 36.68538903173183, 36.259699205056506 ], [ 36.417550083163093, 36.040616970355103 ], [ 36.149762811026591, 35.821534735653671 ], [ 35.782084995269855, 36.274995429014922 ], [ 36.160821567537056, 36.650605577128374 ], [ 35.550936313628341, 36.565442816711339 ], [ 34.714553256984374, 36.795532131490916 ], [ 34.02689497247647, 36.219960028623973 ], [ 32.509158156064103, 36.1075637883892 ], [ 31.699595167779563, 36.644275214172609 ], [ 30.621624790171069, 36.677864895162315 ], [ 30.391096225717121, 36.26298065850699 ], [ 29.699975620245567, 36.144357408181008 ], [ 28.732902866335394, 36.676831366516438 ], [ 27.64118655773737, 36.658822129862756 ], [ 27.048767937943296, 37.653360907536012 ], [ 26.318218214633049, 38.208133246405396 ], [ 26.804700148228733, 38.985760199533559 ], [ 26.170785353304382, 39.463612168936464 ], [ 27.280019972449395, 40.420013739578309 ], [ 28.81997765474722, 40.460011298172219 ], [ 29.240003696415584, 41.219990749672689 ], [ 31.145933872204438, 41.087621568357065 ], [ 32.347979363745793, 41.736264146484643 ], [ 33.513282911927519, 42.018960069337311 ], [ 35.16770389175187, 42.040224921225445 ], [ 36.913127068842158, 41.335358384764305 ] ] ], [ [ [ 27.192376743282409, 40.690565700842455 ], [ 26.35800906749779, 40.151993923496491 ], [ 26.043351271272542, 40.617753607743168 ], [ 26.056942172965336, 40.824123440100749 ], [ 26.294602085075695, 40.936261298174173 ], [ 26.604195590936285, 41.56211456966102 ], [ 26.117041863720829, 41.826904608724561 ], [ 27.135739373490509, 42.141484890301314 ], [ 27.996720411905414, 42.007358710287775 ], [ 28.115524529744448, 41.622886054036286 ], [ 28.98844282401879, 41.299934190428189 ], [ 28.806438429486747, 41.054962063148537 ], [ 27.619017368284119, 40.999823309893117 ], [ 27.192376743282409, 40.690565700842455 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Taiwan\", \"sov_a3\": \"TWN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Taiwan\", \"adm0_a3\": \"TWN\", \"geou_dif\": 0.000000, \"geounit\": \"Taiwan\", \"gu_a3\": \"TWN\", \"su_dif\": 0.000000, \"subunit\": \"Taiwan\", \"su_a3\": \"TWN\", \"brk_diff\": 1.000000, \"name\": \"Taiwan\", \"name_long\": \"Taiwan\", \"brk_a3\": \"B77\", \"brk_name\": \"Taiwan\", \"brk_group\": null, \"abbrev\": \"Taiwan\", \"postal\": \"TW\", \"formal_en\": null, \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": \"Self admin.; Claimed by China\", \"name_sort\": \"Taiwan\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 2.000000, \"pop_est\": 22974347.000000, \"gdp_md_est\": 712000.000000, \"pop_year\": -99.000000, \"lastcensus\": -99.000000, \"gdp_year\": -99.000000, \"economy\": \"2. Developed region: nonG7\", \"income_grp\": \"2. High income: nonOECD\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TW\", \"iso_a3\": \"TWN\", \"iso_n3\": \"158\", \"un_a3\": \"-099\", \"wb_a2\": \"-99\", \"wb_a3\": \"-99\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TWN\", \"adm0_a3_us\": \"TWN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 121.777817824389928, 24.3942735865194 ], [ 121.175632358892742, 22.790857245367167 ], [ 120.747079705896226, 21.970571397382113 ], [ 120.220083449383679, 22.814860948166739 ], [ 120.106188592612398, 23.556262722258236 ], [ 120.694679803552248, 24.538450832613737 ], [ 121.495044386888779, 25.295458889257386 ], [ 121.951243931161457, 24.997595933527037 ], [ 121.777817824389928, 24.3942735865194 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"United Republic of Tanzania\", \"sov_a3\": \"TZA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"United Republic of Tanzania\", \"adm0_a3\": \"TZA\", \"geou_dif\": 0.000000, \"geounit\": \"Tanzania\", \"gu_a3\": \"TZA\", \"su_dif\": 0.000000, \"subunit\": \"Tanzania\", \"su_a3\": \"TZA\", \"brk_diff\": 0.000000, \"name\": \"Tanzania\", \"name_long\": \"Tanzania\", \"brk_a3\": \"TZA\", \"brk_name\": \"Tanzania\", \"brk_group\": null, \"abbrev\": \"Tanz.\", \"postal\": \"TZ\", \"formal_en\": \"United Republic of Tanzania\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Tanzania\", \"name_alt\": null, \"mapcolor7\": 3.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 2.000000, \"pop_est\": 41048532.000000, \"gdp_md_est\": 54250.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"TZ\", \"iso_a3\": \"TZA\", \"iso_n3\": \"834\", \"un_a3\": \"834\", \"wb_a2\": \"TZ\", \"wb_a3\": \"TZA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"TZA\", \"adm0_a3_us\": \"TZA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 33.903711197104599, -0.95 ], [ 34.07262, -1.05982 ], [ 37.69869, -3.09699 ], [ 37.7669, -3.67712 ], [ 39.20222, -4.67677 ], [ 38.74054, -5.90895 ], [ 38.79977, -6.47566 ], [ 39.44, -6.839999999999861 ], [ 39.470000000000141, -7.1 ], [ 39.19469, -7.7039 ], [ 39.25203, -8.00781 ], [ 39.18652, -8.48551 ], [ 39.53574, -9.112369999999885 ], [ 39.9496, -10.0984 ], [ 40.31659, -10.317099999999868 ], [ 39.521, -10.89688 ], [ 38.427556593587781, -11.285202325081627 ], [ 37.82764, -11.26879 ], [ 37.47129, -11.56876 ], [ 36.775150994622891, -11.594537448780784 ], [ 36.514081658684404, -11.720938002166747 ], [ 35.312397902169153, -11.439146416879169 ], [ 34.559989047999466, -11.520020033415847 ], [ 34.28, -10.16 ], [ 33.940837724096525, -9.693673841980285 ], [ 33.73972, -9.41715 ], [ 32.75937544122138, -9.230599053589003 ], [ 32.191864861791942, -8.930358981973257 ], [ 31.556348097466639, -8.762048841998649 ], [ 31.157751336950071, -8.594578747317314 ], [ 30.74, -8.34 ], [ 30.2, -7.08 ], [ 29.62, -6.52 ], [ 29.419992710088309, -5.939998874539299 ], [ 29.51998660657307, -5.419978936386258 ], [ 29.339997592900374, -4.499983412294114 ], [ 29.753512404099865, -4.452389418153302 ], [ 30.11632, -4.09012 ], [ 30.50554, -3.56858 ], [ 30.75224, -3.35931 ], [ 30.74301, -3.03431 ], [ 30.52766, -2.80762 ], [ 30.46967, -2.41383 ], [ 30.758308953583139, -2.287250257988376 ], [ 30.816134881317851, -1.698914076345375 ], [ 30.419104852019302, -1.134659112150416 ], [ 30.769860000000108, -1.01455 ], [ 31.86617, -1.02736 ], [ 33.903711197104599, -0.95 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Uganda\", \"sov_a3\": \"UGA\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Uganda\", \"adm0_a3\": \"UGA\", \"geou_dif\": 0.000000, \"geounit\": \"Uganda\", \"gu_a3\": \"UGA\", \"su_dif\": 0.000000, \"subunit\": \"Uganda\", \"su_a3\": \"UGA\", \"brk_diff\": 0.000000, \"name\": \"Uganda\", \"name_long\": \"Uganda\", \"brk_a3\": \"UGA\", \"brk_name\": \"Uganda\", \"brk_group\": null, \"abbrev\": \"Uga.\", \"postal\": \"UG\", \"formal_en\": \"Republic of Uganda\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Uganda\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 4.000000, \"pop_est\": 32369558.000000, \"gdp_md_est\": 39380.000000, \"pop_year\": -99.000000, \"lastcensus\": 2002.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"UG\", \"iso_a3\": \"UGA\", \"iso_n3\": \"800\", \"un_a3\": \"800\", \"wb_a2\": \"UG\", \"wb_a3\": \"UGA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"UGA\", \"adm0_a3_us\": \"UGA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 31.86617, -1.02736 ], [ 30.769860000000108, -1.01455 ], [ 30.419104852019302, -1.134659112150416 ], [ 29.821518588996128, -1.443322442229771 ], [ 29.579466180141026, -1.341313164885605 ], [ 29.587837762172171, -0.587405694179381 ], [ 29.8195, -0.2053 ], [ 29.875778842902434, 0.597379868976361 ], [ 30.086153598762792, 1.062312730306417 ], [ 30.468507521290292, 1.583805446779706 ], [ 30.85267011894814, 1.849396470543752 ], [ 31.17414920423596, 2.204465236821306 ], [ 30.77332, 2.339890000000139 ], [ 30.83385, 3.50917 ], [ 31.24556, 3.7819 ], [ 31.88145, 3.55827 ], [ 32.68642, 3.79232 ], [ 33.3900000000001, 3.79 ], [ 34.005, 4.249884947362148 ], [ 34.47913, 3.5556 ], [ 34.59607, 3.053740000000118 ], [ 35.03599, 1.90584 ], [ 34.6721, 1.17694 ], [ 34.18, 0.515 ], [ 33.893568969667001, 0.109813537861839 ], [ 33.903711197104599, -0.95 ], [ 31.86617, -1.02736 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Ukraine\", \"sov_a3\": \"UKR\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Ukraine\", \"adm0_a3\": \"UKR\", \"geou_dif\": 0.000000, \"geounit\": \"Ukraine\", \"gu_a3\": \"UKR\", \"su_dif\": 0.000000, \"subunit\": \"Ukraine\", \"su_a3\": \"UKR\", \"brk_diff\": 0.000000, \"name\": \"Ukraine\", \"name_long\": \"Ukraine\", \"brk_a3\": \"UKR\", \"brk_name\": \"Ukraine\", \"brk_group\": null, \"abbrev\": \"Ukr.\", \"postal\": \"UA\", \"formal_en\": \"Ukraine\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Ukraine\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 1.000000, \"mapcolor9\": 6.000000, \"mapcolor13\": 3.000000, \"pop_est\": 45700395.000000, \"gdp_md_est\": 339800.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"UA\", \"iso_a3\": \"UKR\", \"iso_n3\": \"804\", \"un_a3\": \"804\", \"wb_a2\": \"UA\", \"wb_a3\": \"UKR\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"UKR\", \"adm0_a3_us\": \"UKR\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Europe\", \"region_un\": \"Europe\", \"subregion\": \"Eastern Europe\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 31.785998162571587, 52.101677964885454 ], [ 32.159412062312668, 52.061266994833218 ], [ 32.412058139787632, 52.288694973349749 ], [ 32.715760532366971, 52.238465481162052 ], [ 33.752699822735707, 52.335074571331695 ], [ 34.391730584457008, 51.768881740925792 ], [ 34.141978387190392, 51.566413479206233 ], [ 34.224815708154267, 51.255993150428957 ], [ 35.02218305841788, 51.207572333371459 ], [ 35.377923618315123, 50.77395539001035 ], [ 35.356116163887947, 50.577197374059061 ], [ 36.626167840325337, 50.225590928745135 ], [ 37.393459506995072, 50.383953355503593 ], [ 38.010631137856905, 49.915661526074629 ], [ 38.594988234213417, 49.926461900423632 ], [ 40.069058465339111, 49.601055406281702 ], [ 40.08078901546935, 49.307429917999286 ], [ 39.674663934087533, 48.783818467801879 ], [ 39.895632358567582, 48.232405097031432 ], [ 39.738277622238826, 47.89893707945199 ], [ 38.7705847511412, 47.825608222029814 ], [ 38.255112339029751, 47.546400458356814 ], [ 38.22353803889942, 47.102189846375886 ], [ 37.425137159989987, 47.022220567404204 ], [ 36.75985477066439, 46.698700263040934 ], [ 35.823684523264831, 46.645964463887069 ], [ 34.962341749823878, 46.273196519549643 ], [ 35.020787794745985, 45.651218980484657 ], [ 35.510008579253167, 45.409993394546191 ], [ 36.529997999830158, 45.469989732437057 ], [ 36.33471276219916, 45.113215643893966 ], [ 35.239999220528119, 44.939996242851606 ], [ 33.882511020652885, 44.361478583344073 ], [ 33.326420932760044, 44.564877020844889 ], [ 33.546924269349461, 45.03477081967489 ], [ 32.454174432105503, 45.327466132176077 ], [ 32.630804477679135, 45.519185695978912 ], [ 33.588162062318389, 45.851568508480241 ], [ 33.298567335754711, 46.080598456397844 ], [ 31.744140252415178, 46.333347886737386 ], [ 31.675307244602408, 46.706245022155542 ], [ 30.748748813609101, 46.583100084004002 ], [ 30.377608676888883, 46.03241018328567 ], [ 29.603289015427436, 45.293308010431126 ], [ 29.149724969201653, 45.464925442072456 ], [ 28.679779493939382, 45.304030870131704 ], [ 28.233553501099042, 45.488283189468376 ], [ 28.485269402792767, 45.596907050145902 ], [ 28.659987420371579, 45.939986884131642 ], [ 28.933717482221624, 46.258830471372498 ], [ 28.862972446414062, 46.437889309263831 ], [ 29.072106967899291, 46.517677720722496 ], [ 29.170653924279886, 46.3792623968287 ], [ 29.759971958136394, 46.349987697935362 ], [ 30.024658644335375, 46.42393667254504 ], [ 29.838210076626297, 46.525325832701689 ], [ 29.908851759569302, 46.674360663431457 ], [ 29.559674106573112, 46.928582872091326 ], [ 29.415135125452736, 47.346645209332578 ], [ 29.050867954227328, 47.510226955752501 ], [ 29.122698195113031, 47.849095160506465 ], [ 28.670891147585166, 48.118148505234103 ], [ 28.259546746541844, 48.155562242213421 ], [ 27.522537469195157, 48.467119452501116 ], [ 26.857823520624805, 48.368210761094495 ], [ 26.619336785597795, 48.220726223333472 ], [ 26.197450392366932, 48.220881252630349 ], [ 25.945941196402401, 47.987148749374214 ], [ 25.207743361112989, 47.891056423527473 ], [ 24.866317172960578, 47.737525743188314 ], [ 24.402056105250381, 47.981877753280429 ], [ 23.760958286237411, 47.985598456405455 ], [ 23.142236362406805, 48.096341050806949 ], [ 22.710531447040495, 47.882193915389408 ], [ 22.640819939878753, 48.150239569687358 ], [ 22.085608351334855, 48.422264309271789 ], [ 22.28084191253356, 48.825392157580673 ], [ 22.558137648211755, 49.085738023467144 ], [ 22.776418898212626, 49.027395331409622 ], [ 22.518450148211603, 49.476773586619743 ], [ 23.426508416444392, 50.308505764357456 ], [ 23.922757195743262, 50.424881089878753 ], [ 24.029985792748903, 50.705406602575181 ], [ 23.527070753684374, 51.57845408793024 ], [ 24.00507775238421, 51.617443956094462 ], [ 24.553106316839518, 51.888461005249184 ], [ 25.327787713327009, 51.910656032918553 ], [ 26.337958611768556, 51.832288723347929 ], [ 27.454066196408434, 51.592303371784467 ], [ 28.241615024536571, 51.572227077839067 ], [ 28.617612745892249, 51.427713934934843 ], [ 28.992835320763533, 51.602044379271476 ], [ 29.254938185347925, 51.368234361366895 ], [ 30.157363722460897, 51.416138414101468 ], [ 30.555117221811457, 51.319503485715657 ], [ 30.619454380014844, 51.822806098022376 ], [ 30.927549269338982, 52.04235342061439 ], [ 31.785998162571587, 52.101677964885454 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Uruguay\", \"sov_a3\": \"URY\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Uruguay\", \"adm0_a3\": \"URY\", \"geou_dif\": 0.000000, \"geounit\": \"Uruguay\", \"gu_a3\": \"URY\", \"su_dif\": 0.000000, \"subunit\": \"Uruguay\", \"su_a3\": \"URY\", \"brk_diff\": 0.000000, \"name\": \"Uruguay\", \"name_long\": \"Uruguay\", \"brk_a3\": \"URY\", \"brk_name\": \"Uruguay\", \"brk_group\": null, \"abbrev\": \"Ury.\", \"postal\": \"UY\", \"formal_en\": \"Oriental Republic of Uruguay\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Uruguay\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 2.000000, \"mapcolor9\": 2.000000, \"mapcolor13\": 10.000000, \"pop_est\": 3494382.000000, \"gdp_md_est\": 43160.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"UY\", \"iso_a3\": \"URY\", \"iso_n3\": \"858\", \"un_a3\": \"858\", \"wb_a2\": \"UY\", \"wb_a3\": \"URY\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"URY\", \"adm0_a3_us\": \"URY\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -57.625133429582959, -30.216294854454262 ], [ -56.976025763564735, -30.109686374636127 ], [ -55.973244594940937, -30.883075860316303 ], [ -55.601510179249345, -30.853878676071393 ], [ -54.572451544805119, -31.494511407193748 ], [ -53.787951626182192, -32.047242526987624 ], [ -53.209588995971544, -32.727666110974724 ], [ -53.650543992718099, -33.20200408298183 ], [ -53.373661668498244, -33.768377780900764 ], [ -53.806425950726535, -34.396814874002231 ], [ -54.93586605489773, -34.952646579733624 ], [ -55.674089728403288, -34.752658786764073 ], [ -56.215297003796067, -34.859835707337417 ], [ -57.139685024633103, -34.430456231424245 ], [ -57.81786068381551, -34.462547295877499 ], [ -58.427074144104388, -33.909454441057576 ], [ -58.349611172098875, -33.263188978815407 ], [ -58.132647671121447, -33.040566908502015 ], [ -58.142440355040762, -32.044503676076154 ], [ -57.874937303281882, -31.016556084926208 ], [ -57.625133429582959, -30.216294854454262 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"United States of America\", \"sov_a3\": \"US1\", \"adm0_dif\": 1.000000, \"level\": 2.000000, \"type\": \"Country\", \"admin\": \"United States of America\", \"adm0_a3\": \"USA\", \"geou_dif\": 0.000000, \"geounit\": \"United States of America\", \"gu_a3\": \"USA\", \"su_dif\": 0.000000, \"subunit\": \"United States of America\", \"su_a3\": \"USA\", \"brk_diff\": 0.000000, \"name\": \"United States\", \"name_long\": \"United States\", \"brk_a3\": \"USA\", \"brk_name\": \"United States\", \"brk_group\": null, \"abbrev\": \"U.S.A.\", \"postal\": \"US\", \"formal_en\": \"United States of America\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"United States of America\", \"name_alt\": null, \"mapcolor7\": 4.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 1.000000, \"pop_est\": 313973000.000000, \"gdp_md_est\": 15094000.000000, \"pop_year\": 0.000000, \"lastcensus\": 2010.000000, \"gdp_year\": 0.000000, \"economy\": \"1. Developed region: G7\", \"income_grp\": \"1. High income: OECD\", \"wikipedia\": 0.000000, \"fips_10\": null, \"iso_a2\": \"US\", \"iso_a3\": \"USA\", \"iso_n3\": \"840\", \"un_a3\": \"840\", \"wb_a2\": \"US\", \"wb_a3\": \"USA\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"USA\", \"adm0_a3_us\": \"USA\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"North America\", \"region_un\": \"Americas\", \"subregion\": \"Northern America\", \"region_wb\": \"North America\", \"name_len\": 13.000000, \"long_len\": 13.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -155.54211, 19.08348 ], [ -155.68817, 18.91619 ], [ -155.93665, 19.05939 ], [ -155.90806, 19.33888 ], [ -156.07347, 19.70294 ], [ -156.02368, 19.81422 ], [ -155.85008, 19.97729 ], [ -155.91907, 20.17395 ], [ -155.86108, 20.26721 ], [ -155.78505, 20.2487 ], [ -155.40214, 20.07975 ], [ -155.22452, 19.99302 ], [ -155.06226, 19.8591 ], [ -154.80741, 19.50871 ], [ -154.83147, 19.45328 ], [ -155.22217, 19.23972 ], [ -155.54211, 19.08348 ] ] ], [ [ [ -156.07926, 20.64397 ], [ -156.41445, 20.57241 ], [ -156.58673, 20.783 ], [ -156.70167, 20.8643 ], [ -156.71055, 20.92676 ], [ -156.61258, 21.01249 ], [ -156.25711, 20.91745 ], [ -155.99566, 20.76404 ], [ -156.07926, 20.64397 ] ] ], [ [ [ -156.75824, 21.17684 ], [ -156.78933, 21.06873 ], [ -157.32521, 21.09777 ], [ -157.25027, 21.21958 ], [ -156.75824, 21.17684 ] ] ], [ [ [ -157.65283, 21.32217 ], [ -157.70703, 21.26442 ], [ -157.7786, 21.27729 ], [ -158.12667, 21.31244 ], [ -158.2538, 21.53919 ], [ -158.29265, 21.57912 ], [ -158.0252, 21.71696 ], [ -157.94161, 21.65272 ], [ -157.65283, 21.32217 ] ] ], [ [ [ -159.34512, 21.982 ], [ -159.46372, 21.88299 ], [ -159.80051, 22.06533 ], [ -159.74877, 22.1382 ], [ -159.5962, 22.23618 ], [ -159.36569, 22.21494 ], [ -159.34512, 21.982 ] ] ], [ [ [ -94.81758, 49.38905 ], [ -94.639999999999873, 48.840000000000117 ], [ -94.32914, 48.670740000000109 ], [ -93.63087, 48.60926 ], [ -92.61, 48.45 ], [ -91.64, 48.14 ], [ -90.83, 48.27 ], [ -89.6, 48.010000000000105 ], [ -89.272917446636683, 48.019808254582841 ], [ -88.378114183286527, 48.30291758889382 ], [ -87.439792623300235, 47.94 ], [ -86.46199083122815, 47.553338019392044 ], [ -85.65236324740323, 47.220218817730512 ], [ -84.876079881514869, 46.900083319682381 ], [ -84.779238247399832, 46.637101955749131 ], [ -84.543748745445669, 46.538684190449231 ], [ -84.6049, 46.4396 ], [ -84.3367, 46.408770000000118 ], [ -84.142119513673293, 46.512225857115737 ], [ -84.091851264161477, 46.27541860613826 ], [ -83.890765347005669, 46.116926988299156 ], [ -83.616130947590506, 46.116926988299156 ], [ -83.469550747394635, 45.994686387712591 ], [ -83.592850714843081, 45.81689362241255 ], [ -82.550924648758183, 45.34751658790546 ], [ -82.337763125431081, 44.44 ], [ -82.13764238150398, 43.571087551440002 ], [ -82.43, 42.980000000000103 ], [ -82.899999999999892, 42.430000000000149 ], [ -83.119999999999891, 42.08 ], [ -83.141999681312569, 41.975681057293002 ], [ -83.029810146806938, 41.832795722006011 ], [ -82.690089280920176, 41.675105088867326 ], [ -82.439277716791622, 41.675105088867326 ], [ -81.277746548167073, 42.209025987306859 ], [ -80.247447679347857, 42.366199856122677 ], [ -78.939362148743697, 42.863611355148123 ], [ -78.92, 42.965 ], [ -79.009999999999877, 43.27 ], [ -79.171673550111876, 43.466339423184309 ], [ -78.720279914042379, 43.62508942318496 ], [ -77.737885097957616, 43.629055589363389 ], [ -76.820034145805579, 43.628784288093755 ], [ -76.5, 44.018458893758606 ], [ -76.375, 44.09631 ], [ -75.31821, 44.816450000000174 ], [ -74.867, 45.000480000000124 ], [ -73.34783, 45.00738 ], [ -71.505059999999872, 45.008200000000102 ], [ -71.405, 45.255000000000138 ], [ -71.08482, 45.305240000000168 ], [ -70.659999999999798, 45.46 ], [ -70.305, 45.915 ], [ -69.99997, 46.69307 ], [ -69.237216, 47.447781 ], [ -68.905, 47.185 ], [ -68.23444, 47.35486 ], [ -67.79046, 47.06636 ], [ -67.79134, 45.702810000000142 ], [ -67.13741, 45.13753 ], [ -66.96466, 44.809700000000163 ], [ -68.03252, 44.3252 ], [ -69.059999999999889, 43.98 ], [ -70.11617, 43.684050000000155 ], [ -70.645475633410996, 43.09023834896405 ], [ -70.81489, 42.8653 ], [ -70.825, 42.335 ], [ -70.495, 41.805 ], [ -70.08, 41.78 ], [ -70.185, 42.145 ], [ -69.88497, 41.922830000000118 ], [ -69.96503, 41.637170000000168 ], [ -70.64, 41.475 ], [ -71.12039, 41.494450000000171 ], [ -71.859999999999843, 41.32 ], [ -72.295, 41.27 ], [ -72.87643, 41.22065 ], [ -73.71, 40.931102351654488 ], [ -72.24126, 41.119480000000152 ], [ -71.944999999999823, 40.93 ], [ -73.345, 40.63 ], [ -73.982, 40.628 ], [ -73.952325, 40.75075 ], [ -74.25671, 40.47351 ], [ -73.96244, 40.42763 ], [ -74.17838, 39.70926 ], [ -74.90604, 38.93954 ], [ -74.98041, 39.1964 ], [ -75.20002, 39.248450000000105 ], [ -75.52805, 39.4985 ], [ -75.32, 38.96 ], [ -75.071834764789799, 38.782032230179283 ], [ -75.05673, 38.40412000000012 ], [ -75.37747, 38.01551 ], [ -75.94023, 37.21689 ], [ -76.03127, 37.2566 ], [ -75.722049999999797, 37.937050000000113 ], [ -76.23287, 38.319215 ], [ -76.35, 39.15 ], [ -76.542725, 38.717615000000109 ], [ -76.32933, 38.08326 ], [ -76.989997931613544, 38.239991766913391 ], [ -76.30162, 37.917945 ], [ -76.25874, 36.966400000000107 ], [ -75.9718, 36.89726 ], [ -75.868039999999837, 36.55125 ], [ -75.72749, 35.550740000000133 ], [ -76.36318, 34.808540000000136 ], [ -77.397634999999894, 34.51201 ], [ -78.05496, 33.92547 ], [ -78.554349999999829, 33.861330000000123 ], [ -79.06067, 33.49395 ], [ -79.20357, 33.15839 ], [ -80.301325, 32.509355 ], [ -80.86498, 32.0333 ], [ -81.33629, 31.44049 ], [ -81.49042, 30.729990000000129 ], [ -81.31371, 30.035520000000105 ], [ -80.98, 29.180000000000121 ], [ -80.535584999999884, 28.47213 ], [ -80.529999999999802, 28.040000000000106 ], [ -80.056539284977561, 26.880000000000138 ], [ -80.088015, 26.205765 ], [ -80.131559999999865, 25.816775 ], [ -80.38103, 25.20616 ], [ -80.679999999999893, 25.08 ], [ -81.17213, 25.201260000000133 ], [ -81.33, 25.64 ], [ -81.709999999999809, 25.87 ], [ -82.24, 26.730000000000132 ], [ -82.70515, 27.49504 ], [ -82.85526, 27.88624 ], [ -82.65, 28.550000000000153 ], [ -82.929999999999893, 29.100000000000136 ], [ -83.70959, 29.93656 ], [ -84.1, 30.090000000000117 ], [ -85.10882, 29.63615 ], [ -85.28784, 29.68612000000013 ], [ -85.7731, 30.152610000000124 ], [ -86.399999999999892, 30.400000000000119 ], [ -87.53036, 30.27433 ], [ -88.41782, 30.3849 ], [ -89.18049, 30.31598 ], [ -89.593831178419777, 30.159994004836847 ], [ -89.413735, 29.89419 ], [ -89.43, 29.48864 ], [ -89.21767, 29.29108 ], [ -89.40823, 29.15961 ], [ -89.77928, 29.307140000000146 ], [ -90.15463, 29.11743 ], [ -90.880225, 29.148535000000123 ], [ -91.62678499999987, 29.677000000000135 ], [ -92.49906, 29.5523 ], [ -93.22637, 29.78375 ], [ -93.84842, 29.71363 ], [ -94.69, 29.480000000000132 ], [ -95.60026, 28.73863 ], [ -96.59404, 28.30748 ], [ -97.139999999999816, 27.83 ], [ -97.37, 27.38 ], [ -97.379999999999882, 26.69 ], [ -97.33, 26.210000000000122 ], [ -97.139999999999816, 25.87 ], [ -97.529999999999887, 25.84 ], [ -98.24, 26.060000000000116 ], [ -99.019999999999882, 26.37 ], [ -99.3, 26.84 ], [ -99.519999999999868, 27.54 ], [ -100.11, 28.110000000000127 ], [ -100.45584, 28.696120000000121 ], [ -100.9576, 29.380710000000136 ], [ -101.6624, 29.77930000000012 ], [ -102.48, 29.76 ], [ -103.11, 28.97 ], [ -103.94, 29.27 ], [ -104.456969999999842, 29.57196 ], [ -104.70575, 30.12173 ], [ -105.03737, 30.64402 ], [ -105.63159, 31.08383000000012 ], [ -106.1429, 31.39995 ], [ -106.507589999999823, 31.75452 ], [ -108.24, 31.754853718166402 ], [ -108.24194, 31.34222 ], [ -109.035, 31.341940000000164 ], [ -111.02361, 31.33472 ], [ -113.30498, 32.03914 ], [ -114.815, 32.52528 ], [ -114.721389999999872, 32.72083 ], [ -115.99135, 32.612390000000147 ], [ -117.127759999999796, 32.53534 ], [ -117.295937691273892, 33.046224615203897 ], [ -117.944, 33.621236431201396 ], [ -118.410602275897503, 33.740909223124504 ], [ -118.519894822799714, 34.027781577575752 ], [ -119.081, 34.078 ], [ -119.438840642016686, 34.348477178284298 ], [ -120.36778, 34.44711 ], [ -120.62286, 34.60855 ], [ -120.74433, 35.156860000000108 ], [ -121.714569999999881, 36.16153 ], [ -122.54747, 37.551760000000115 ], [ -122.51201, 37.783390000000139 ], [ -122.95319, 38.113710000000111 ], [ -123.7272, 38.951660000000118 ], [ -123.86517, 39.766990000000135 ], [ -124.39807, 40.3132 ], [ -124.17886, 41.142020000000116 ], [ -124.2137, 41.999640000000142 ], [ -124.53284, 42.765990000000102 ], [ -124.14214, 43.70838 ], [ -124.020535, 44.615895 ], [ -123.89893, 45.52341 ], [ -124.079635, 46.86475 ], [ -124.39567, 47.72017000000011 ], [ -124.687210083007827, 48.184432983398551 ], [ -124.566101074218764, 48.379714965820398 ], [ -123.12, 48.04 ], [ -122.58736, 47.096 ], [ -122.34, 47.36 ], [ -122.5, 48.18 ], [ -122.84, 49.000000000000114 ], [ -120.0, 49.000000000000114 ], [ -117.03121, 49.000000000000114 ], [ -116.04818, 49.000000000000114 ], [ -113.0, 49.000000000000114 ], [ -110.049999999999841, 49.000000000000114 ], [ -107.05, 49.000000000000114 ], [ -104.04826, 48.99986 ], [ -100.65, 49.000000000000114 ], [ -97.228720000004728, 49.000700000000109 ], [ -95.159069509171957, 49.000000000000114 ], [ -95.15609, 49.38425 ], [ -94.81758, 49.38905 ] ] ], [ [ [ -153.006314053336894, 57.115842190165893 ], [ -154.005090298458128, 56.734676825581062 ], [ -154.516402757770095, 56.992748928446701 ], [ -154.670992804971149, 57.4611957871725 ], [ -153.762779507441479, 57.81657461204378 ], [ -153.228729417921102, 57.968968410872435 ], [ -152.564790615835136, 57.901427313866975 ], [ -152.14114722390633, 57.591058661521998 ], [ -153.006314053336894, 57.115842190165893 ] ] ], [ [ [ -165.579164191733582, 59.90998688418756 ], [ -166.192770148767266, 59.754440822988983 ], [ -166.848337368822001, 59.941406155020957 ], [ -167.455277066090076, 60.213069159579391 ], [ -166.467792121424623, 60.384169826897789 ], [ -165.674429694663672, 60.293606879306253 ], [ -165.579164191733582, 59.90998688418756 ] ] ], [ [ [ -171.731656867539414, 63.78251536727592 ], [ -171.114433560245232, 63.592191067144995 ], [ -170.491112433940714, 63.694975490973519 ], [ -169.682505459653584, 63.431115627691156 ], [ -168.68943946030069, 63.297506212000599 ], [ -168.771940884454608, 63.188598130945451 ], [ -169.529439867205042, 62.976931464277897 ], [ -170.290556200215974, 63.194437567794466 ], [ -170.671385667990876, 63.375821845138972 ], [ -171.55306311753867, 63.317789211675091 ], [ -171.791110602891195, 63.405845852300502 ], [ -171.731656867539414, 63.78251536727592 ] ] ], [ [ [ -155.06779029032424, 71.147776394323699 ], [ -154.344165208941234, 70.696408596470206 ], [ -153.90000627339262, 70.889988511835696 ], [ -152.210006069935304, 70.829992173944845 ], [ -152.270002407826155, 70.600006212029854 ], [ -150.739992438744537, 70.430016588005714 ], [ -149.720003018167517, 70.530010484490447 ], [ -147.613361579357075, 70.214034939241799 ], [ -145.689989800225305, 70.120009670686755 ], [ -144.920010959076421, 69.989991767040493 ], [ -143.589446180425199, 70.152514146598321 ], [ -142.072510348713422, 69.851938178172645 ], [ -140.98598752156073, 69.711998399526379 ], [ -140.985988329004897, 69.711998399526379 ], [ -140.992498752029405, 66.000028591568679 ], [ -140.997769748123147, 60.3063967962986 ], [ -140.012997816153103, 60.276837877027589 ], [ -139.039000420315858, 60.000007229240026 ], [ -138.34089, 59.56211000000016 ], [ -137.4525, 58.905000000000115 ], [ -136.4797200000001, 59.46389 ], [ -135.47583, 59.78778 ], [ -134.945, 59.270560000000131 ], [ -134.27111, 58.86111 ], [ -133.355548882207216, 58.410285142645165 ], [ -132.73042, 57.692890000000119 ], [ -131.707809999999881, 56.55212 ], [ -130.00778, 55.91583 ], [ -129.979994263358293, 55.284997870497222 ], [ -130.536110189467252, 54.802753404349403 ], [ -131.085818237972148, 55.178906155002039 ], [ -131.967211467142306, 55.497775580459063 ], [ -132.250010742859473, 56.369996242897457 ], [ -133.539181084356414, 57.178887437562139 ], [ -134.078062920296048, 58.12306753196691 ], [ -135.038211032279065, 58.187714748763938 ], [ -136.628062309954657, 58.212209377670462 ], [ -137.800006279686045, 58.499995429103791 ], [ -139.86778704141301, 59.537761542389148 ], [ -140.825273817133052, 59.727517401765084 ], [ -142.574443535564455, 60.084446519604995 ], [ -143.958880994879905, 59.999180406323404 ], [ -145.92555681682785, 60.458609727614288 ], [ -147.114373949146682, 60.884656073644635 ], [ -148.224306200127671, 60.672989406977166 ], [ -148.018065558850765, 59.978328965893638 ], [ -148.570822516860886, 59.914172675203304 ], [ -149.727857835875881, 59.705658270905559 ], [ -150.60824337461645, 59.368211168039494 ], [ -151.716392788683322, 59.155821031319988 ], [ -151.859433153267162, 59.744984035879611 ], [ -151.409719001247197, 60.725802720779399 ], [ -150.346941494732533, 61.033587551509868 ], [ -150.621110806256979, 61.284424953854455 ], [ -151.895839199816862, 60.727197984451294 ], [ -152.578329841095609, 60.061657212964292 ], [ -154.019172126257615, 59.350279446034278 ], [ -153.287511359653195, 58.864727688219801 ], [ -154.232492438758499, 58.146373602930538 ], [ -155.307491421510235, 57.727794501366333 ], [ -156.30833472392311, 57.42277435976365 ], [ -156.556097378546326, 56.979984849670643 ], [ -158.117216559867757, 56.46360809999419 ], [ -158.433321296197164, 55.994153550838547 ], [ -159.603327399717443, 55.56668610292013 ], [ -160.289719611634212, 55.643580634170576 ], [ -161.223047655257801, 55.364734605523495 ], [ -162.237766079741078, 55.024186916720112 ], [ -163.069446581046407, 54.689737046927178 ], [ -164.785569221027203, 54.404173082082167 ], [ -164.942226325520039, 54.572224839895341 ], [ -163.848339606765677, 55.039431464246121 ], [ -162.870001390615926, 55.348043117893212 ], [ -161.804174974596037, 55.894986477270436 ], [ -160.563604702781163, 56.008054511125039 ], [ -160.070559862284512, 56.418055324928758 ], [ -158.684442918919444, 57.016675116597867 ], [ -158.461097378553973, 57.21692129172888 ], [ -157.722770352183886, 57.570000515363063 ], [ -157.550274421193592, 58.328326321030232 ], [ -157.041674974577006, 58.918884589261722 ], [ -158.194731208305484, 58.615802313869835 ], [ -158.517217984023091, 58.787781480537319 ], [ -159.058606126928737, 58.424186102931685 ], [ -159.711667040017346, 58.931390285876347 ], [ -159.981288825500201, 58.572549140041644 ], [ -160.355271165996527, 59.071123358793642 ], [ -161.355003425115058, 58.670837714260756 ], [ -161.96889360252635, 58.671664537177378 ], [ -162.054986538724677, 59.26692536074745 ], [ -161.874170702135359, 59.633621324290601 ], [ -162.518059048492091, 59.989723619213919 ], [ -163.818341437820152, 59.798055731843391 ], [ -164.662217577146464, 60.26748444278266 ], [ -165.346387702474829, 60.50749563256241 ], [ -165.350831875651863, 61.073895168697504 ], [ -166.121379157555964, 61.500019029376233 ], [ -165.734451870770528, 62.074996853271813 ], [ -164.919178636717845, 62.63307648380794 ], [ -164.562507901039368, 63.146378485763051 ], [ -163.753332485997021, 63.219448961023772 ], [ -163.067224494457889, 63.059458726648018 ], [ -162.260555386381725, 63.541935736741181 ], [ -161.534449836248598, 63.455816962326764 ], [ -160.772506680321129, 63.766108100023274 ], [ -160.958335130842556, 64.222798570402773 ], [ -161.518068407212212, 64.402787584075327 ], [ -160.777777676414757, 64.788603827566419 ], [ -161.391926235987626, 64.777235012462342 ], [ -162.453050096668846, 64.55944468856822 ], [ -162.757786017894091, 64.338605455168818 ], [ -163.546394212884309, 64.559160468190498 ], [ -164.96082984114517, 64.446945095468863 ], [ -166.425288255864501, 64.68667206487072 ], [ -166.845004238939055, 65.088895575614544 ], [ -168.110560065767174, 65.669997056736747 ], [ -166.705271166021959, 66.088317776139405 ], [ -164.474709642575505, 66.576660061297503 ], [ -163.652511766595666, 66.576660061297503 ], [ -163.788601651036174, 66.077207343196676 ], [ -161.67777442121016, 66.116119696712417 ], [ -162.489714525380009, 66.735565090595117 ], [ -163.719716966791111, 67.116394558370104 ], [ -164.43099138085654, 67.616338202577793 ], [ -165.39028683170676, 68.042772121850248 ], [ -166.764440680996017, 68.358876858179684 ], [ -166.204707404626618, 68.883030910916176 ], [ -164.430810513343488, 68.915535386827742 ], [ -163.168613654614518, 69.371114813912897 ], [ -162.930566169262022, 69.858061835399269 ], [ -161.908897264635527, 70.333329983187639 ], [ -160.934796515933698, 70.447689927849581 ], [ -159.039175788387155, 70.89164215766894 ], [ -158.119722866833968, 70.824721177851046 ], [ -156.580824551398052, 71.35776357694175 ], [ -155.06779029032424, 71.147776394323699 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Uzbekistan\", \"sov_a3\": \"UZB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Uzbekistan\", \"adm0_a3\": \"UZB\", \"geou_dif\": 0.000000, \"geounit\": \"Uzbekistan\", \"gu_a3\": \"UZB\", \"su_dif\": 0.000000, \"subunit\": \"Uzbekistan\", \"su_a3\": \"UZB\", \"brk_diff\": 0.000000, \"name\": \"Uzbekistan\", \"name_long\": \"Uzbekistan\", \"brk_a3\": \"UZB\", \"brk_name\": \"Uzbekistan\", \"brk_group\": null, \"abbrev\": \"Uzb.\", \"postal\": \"UZ\", \"formal_en\": \"Republic of Uzbekistan\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Uzbekistan\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 4.000000, \"pop_est\": 27606007.000000, \"gdp_md_est\": 71670.000000, \"pop_year\": -99.000000, \"lastcensus\": 1989.000000, \"gdp_year\": -99.000000, \"economy\": \"6. Developing region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"UZ\", \"iso_a3\": \"UZB\", \"iso_n3\": \"860\", \"un_a3\": \"860\", \"wb_a2\": \"UZ\", \"wb_a3\": \"UZB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"UZB\", \"adm0_a3_us\": \"UZB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Central Asia\", \"region_wb\": \"Europe & Central Asia\", \"name_len\": 10.000000, \"long_len\": 10.000000, \"abbrev_len\": 4.000000, \"tiny\": 5.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 66.51860680528867, 37.362784328758792 ], [ 66.546150343700219, 37.974684963526869 ], [ 65.215998976507393, 38.4026950139843 ], [ 64.170223016216767, 38.892406724598246 ], [ 63.518014764261032, 39.363256537425642 ], [ 62.374260288345006, 40.053886216790389 ], [ 61.882714064384693, 41.084856879229406 ], [ 61.547178989513561, 41.266370347654615 ], [ 60.465952996670694, 41.220326646482548 ], [ 60.083340691981675, 41.425146185871405 ], [ 59.976422153569786, 42.223081976890207 ], [ 58.62901085799146, 42.751551011723052 ], [ 57.786529982337079, 42.170552883465518 ], [ 56.932215203687804, 41.826026109375604 ], [ 57.096391229079103, 41.322310085610567 ], [ 55.968191359282912, 41.308641669269363 ], [ 55.928917270741096, 44.995858466159113 ], [ 58.503127068928471, 45.586804307632832 ], [ 58.689989048095896, 45.500013739598629 ], [ 60.239971958258337, 44.784036770194732 ], [ 61.058319940032447, 44.405816962250512 ], [ 62.01330040878625, 43.504476630215649 ], [ 63.185786981056573, 43.650074978198006 ], [ 64.900824415959278, 43.728080552742583 ], [ 66.098012322865088, 42.997660020513095 ], [ 66.023391554635623, 41.994646307943981 ], [ 66.510648634715722, 41.987644151368443 ], [ 66.714047072216516, 41.1684435084615 ], [ 67.98585574735182, 41.13599070898222 ], [ 68.25989586779562, 40.662324530594901 ], [ 68.632482944620023, 40.668680731766813 ], [ 69.07002729683532, 41.38424428971237 ], [ 70.388964878220804, 42.081307684897453 ], [ 70.962314894499144, 42.266154283205495 ], [ 71.259247674448233, 42.167710679689463 ], [ 70.42002241402821, 41.519998277343142 ], [ 71.157858514291604, 41.143587144529121 ], [ 71.870114780570475, 41.392900092121266 ], [ 73.05541710804917, 40.866033026689465 ], [ 71.77487511585656, 40.145844428053778 ], [ 71.01419803252017, 40.244365546218233 ], [ 70.601406691372688, 40.218527330072291 ], [ 70.458159621059622, 40.496494859370287 ], [ 70.666622348925046, 40.960213324541414 ], [ 69.329494663372827, 40.727824408524853 ], [ 69.011632928345506, 40.086158148756667 ], [ 68.536416456989429, 39.533452867178937 ], [ 67.701428664017357, 39.580478420564532 ], [ 67.442219679641312, 39.140143541005486 ], [ 68.176025018185925, 38.901553453113905 ], [ 68.392032505165957, 38.157025254868742 ], [ 67.829999627559516, 37.144994004864685 ], [ 67.075782098259623, 37.356143907209287 ], [ 66.51860680528867, 37.362784328758792 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Venezuela\", \"sov_a3\": \"VEN\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Venezuela\", \"adm0_a3\": \"VEN\", \"geou_dif\": 0.000000, \"geounit\": \"Venezuela\", \"gu_a3\": \"VEN\", \"su_dif\": 0.000000, \"subunit\": \"Venezuela\", \"su_a3\": \"VEN\", \"brk_diff\": 0.000000, \"name\": \"Venezuela\", \"name_long\": \"Venezuela\", \"brk_a3\": \"VEN\", \"brk_name\": \"Venezuela\", \"brk_group\": null, \"abbrev\": \"Ven.\", \"postal\": \"VE\", \"formal_en\": \"Bolivarian Republic of Venezuela\", \"formal_fr\": \"República Bolivariana de Venezuela\", \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Venezuela, RB\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 1.000000, \"mapcolor13\": 4.000000, \"pop_est\": 26814843.000000, \"gdp_md_est\": 357400.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"VE\", \"iso_a3\": \"VEN\", \"iso_n3\": \"862\", \"un_a3\": \"862\", \"wb_a2\": \"VE\", \"wb_a3\": \"VEN\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"VEN\", \"adm0_a3_us\": \"VEN\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"South America\", \"region_un\": \"Americas\", \"subregion\": \"South America\", \"region_wb\": \"Latin America & Caribbean\", \"name_len\": 9.000000, \"long_len\": 9.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -71.331583624950298, 11.776284084515808 ], [ -71.360005662710819, 11.539993597861212 ], [ -71.947049933546509, 11.423282375530022 ], [ -71.620868292920193, 10.969459947142795 ], [ -71.633063930941091, 10.446494452349029 ], [ -72.074173956984509, 9.865651353388373 ], [ -71.695644090446535, 9.072263088411248 ], [ -71.264559292267734, 9.137194525585983 ], [ -71.03999935574339, 9.859992784052409 ], [ -71.350083787710787, 10.211935126176215 ], [ -71.400623338492238, 10.968969021036015 ], [ -70.155298834906517, 11.375481675660041 ], [ -70.29384334988103, 11.846822414594214 ], [ -69.943244594996827, 12.162307033736099 ], [ -69.584300096297468, 11.459610907431212 ], [ -68.882999233664449, 11.443384507691563 ], [ -68.23327145045873, 10.885744126829946 ], [ -68.194126552997631, 10.554653225135922 ], [ -67.296248541926332, 10.54586823164631 ], [ -66.227864142507997, 10.648626817258688 ], [ -65.655237596281751, 10.200798855017323 ], [ -64.89045223657817, 10.077214667191299 ], [ -64.329478725833738, 10.38959870039568 ], [ -64.318006557864948, 10.64141795495398 ], [ -63.079322475828732, 10.7017243514386 ], [ -61.880946010980196, 10.715625311725104 ], [ -62.730118984616411, 10.420268662960906 ], [ -62.388511928950976, 9.94820445397464 ], [ -61.58876746280194, 9.873066921422264 ], [ -60.830596686431718, 9.381339829948942 ], [ -60.671252407459733, 8.580174261911878 ], [ -60.15009558779618, 8.602756862823426 ], [ -59.758284878159195, 8.367034816924047 ], [ -60.5505879380582, 7.779602972846178 ], [ -60.637972785063766, 7.414999904810855 ], [ -60.295668097562398, 7.043911444522919 ], [ -60.543999192940987, 6.856584377464883 ], [ -61.159336310456482, 6.696077378766319 ], [ -61.139415045807951, 6.234296779806144 ], [ -61.410302903881956, 5.959068101419618 ], [ -60.733574184803722, 5.200277207861901 ], [ -60.601179165271944, 4.91809804933213 ], [ -60.966893276601539, 4.536467596856639 ], [ -62.085429653559132, 4.162123521334308 ], [ -62.804533047116706, 4.006965033377952 ], [ -63.093197597899106, 3.770571193858785 ], [ -63.888342861574159, 4.020530096854571 ], [ -64.628659430587547, 4.14848094320925 ], [ -64.816064012294021, 4.056445217297423 ], [ -64.368494432214106, 3.797210394705246 ], [ -64.408827887617917, 3.126786200366624 ], [ -64.269999152265797, 2.497005520025567 ], [ -63.422867397705119, 2.411067613124175 ], [ -63.368788011311665, 2.200899562993129 ], [ -64.083085496666087, 1.91636912679408 ], [ -64.199305792890513, 1.49285492594602 ], [ -64.611011928959869, 1.328730576987042 ], [ -65.354713304288367, 1.0952822941085 ], [ -65.548267381437569, 0.78925446207603 ], [ -66.325765143484958, 0.724452215982012 ], [ -66.87632585312258, 1.253360500489336 ], [ -67.18129431829307, 2.250638129074062 ], [ -67.447092047786313, 2.600280869960869 ], [ -67.809938117123707, 2.820655015469569 ], [ -67.303173183853445, 3.31845408773718 ], [ -67.337563849543685, 3.542342230641722 ], [ -67.621835903581285, 3.839481716319995 ], [ -67.823012254493548, 4.503937282728899 ], [ -67.744696621355217, 5.221128648291668 ], [ -67.521531948502755, 5.556870428891969 ], [ -67.341439581965574, 6.095468044454023 ], [ -67.695087246355016, 6.267318020040647 ], [ -68.26505245631823, 6.153268133972475 ], [ -68.985318569602356, 6.206804917826858 ], [ -69.389479946557117, 6.099860541198836 ], [ -70.093312954372422, 6.96037649172311 ], [ -70.674233567981517, 7.087784735538719 ], [ -71.960175747348643, 6.991614895043539 ], [ -72.198352423781884, 7.340430813013683 ], [ -72.444487270788073, 7.423784898300482 ], [ -72.479678921178845, 7.632506008327354 ], [ -72.360900641555972, 8.002638454617895 ], [ -72.439862230097958, 8.405275376820029 ], [ -72.660494757768106, 8.625287787302682 ], [ -72.788729824500393, 9.085027167187334 ], [ -73.304951544880055, 9.151999823437606 ], [ -73.027604132769568, 9.736770331252444 ], [ -72.905286017534706, 10.450344346554772 ], [ -72.614657762325209, 10.821975409381778 ], [ -72.227575446242938, 11.108702093953241 ], [ -71.973921678338286, 11.60867157637712 ], [ -71.331583624950298, 11.776284084515808 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"Vietnam\", \"sov_a3\": \"VNM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Vietnam\", \"adm0_a3\": \"VNM\", \"geou_dif\": 0.000000, \"geounit\": \"Vietnam\", \"gu_a3\": \"VNM\", \"su_dif\": 0.000000, \"subunit\": \"Vietnam\", \"su_a3\": \"VNM\", \"brk_diff\": 0.000000, \"name\": \"Vietnam\", \"name_long\": \"Vietnam\", \"brk_a3\": \"VNM\", \"brk_name\": \"Vietnam\", \"brk_group\": null, \"abbrev\": \"Viet.\", \"postal\": \"VN\", \"formal_en\": \"Socialist Republic of Vietnam\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Vietnam\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 6.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 4.000000, \"pop_est\": 86967524.000000, \"gdp_md_est\": 241700.000000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"VN\", \"iso_a3\": \"VNM\", \"iso_n3\": \"704\", \"un_a3\": \"704\", \"wb_a2\": \"VN\", \"wb_a3\": \"VNM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"VNM\", \"adm0_a3_us\": \"VNM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"South-Eastern Asia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 5.000000, \"tiny\": 2.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 108.050180291782937, 21.552379869060118 ], [ 106.715067987090094, 20.696850694252021 ], [ 105.881682163519031, 19.752050482659698 ], [ 105.662005649846307, 19.05816518806057 ], [ 106.42681684776602, 18.004120998603227 ], [ 107.361953566519745, 16.697456569887052 ], [ 108.269495070429628, 16.079742336486149 ], [ 108.877106561317476, 15.27669057867044 ], [ 109.335269810017223, 13.426028347217724 ], [ 109.200135939573983, 11.666859239137764 ], [ 108.366129998815452, 11.008320624226272 ], [ 107.220928582795239, 10.364483954301832 ], [ 106.405112746203429, 9.530839748569321 ], [ 105.15826378786511, 8.599759629750494 ], [ 104.795185174582386, 9.241038316276502 ], [ 105.076201613385621, 9.918490505406808 ], [ 104.334334751403475, 10.48654368737523 ], [ 105.199914992292349, 10.889309800658097 ], [ 106.249670037869464, 10.961811835163587 ], [ 105.81052371625313, 11.567614650921229 ], [ 107.49140302941089, 12.337205918827948 ], [ 107.61454796756243, 13.535530707244206 ], [ 107.382727492301086, 14.202440904186972 ], [ 107.564525181103903, 15.202173163305559 ], [ 107.312705926545604, 15.908538316303179 ], [ 106.556007928495688, 16.604283962464805 ], [ 105.925762160264028, 17.485315456608959 ], [ 105.094598423281525, 18.66697459561108 ], [ 103.896532017026715, 19.265180975821806 ], [ 104.183387892678937, 19.624668077060221 ], [ 104.822573683697101, 19.886641750563882 ], [ 104.435000441508052, 20.758733221921531 ], [ 103.203861118586445, 20.766562201413748 ], [ 102.754896274834664, 21.675137233969465 ], [ 102.170435825613581, 22.464753119389304 ], [ 102.706992222100098, 22.708795070887675 ], [ 103.50451460166056, 22.703756618739209 ], [ 104.476858351664475, 22.819150092046968 ], [ 105.329209425886631, 23.352063300056912 ], [ 105.811247186305224, 22.976892401617903 ], [ 106.725403273548466, 22.794267889898421 ], [ 106.567273390735323, 22.218204860924772 ], [ 107.043420037872636, 21.811898912029914 ], [ 108.050180291782937, 21.552379869060118 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 4.000000, \"sovereignt\": \"Vanuatu\", \"sov_a3\": \"VUT\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Vanuatu\", \"adm0_a3\": \"VUT\", \"geou_dif\": 0.000000, \"geounit\": \"Vanuatu\", \"gu_a3\": \"VUT\", \"su_dif\": 0.000000, \"subunit\": \"Vanuatu\", \"su_a3\": \"VUT\", \"brk_diff\": 0.000000, \"name\": \"Vanuatu\", \"name_long\": \"Vanuatu\", \"brk_a3\": \"VUT\", \"brk_name\": \"Vanuatu\", \"brk_group\": null, \"abbrev\": \"Van.\", \"postal\": \"VU\", \"formal_en\": \"Republic of Vanuatu\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Vanuatu\", \"name_alt\": null, \"mapcolor7\": 6.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 7.000000, \"mapcolor13\": 3.000000, \"pop_est\": 218519.000000, \"gdp_md_est\": 988.500000, \"pop_year\": -99.000000, \"lastcensus\": 2009.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"VU\", \"iso_a3\": \"VUT\", \"iso_n3\": \"548\", \"un_a3\": \"548\", \"wb_a2\": \"VU\", \"wb_a3\": \"VUT\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"VUT\", \"adm0_a3_us\": \"VUT\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Oceania\", \"region_un\": \"Oceania\", \"subregion\": \"Melanesia\", \"region_wb\": \"East Asia & Pacific\", \"name_len\": 7.000000, \"long_len\": 7.000000, \"abbrev_len\": 4.000000, \"tiny\": 2.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 167.844876743845106, -16.466333103097156 ], [ 167.515181105822904, -16.59784962327997 ], [ 167.18000776597782, -16.15999521247096 ], [ 167.216801385769628, -15.891846205308454 ], [ 167.844876743845106, -16.466333103097156 ] ] ], [ [ [ 167.107712437201513, -14.933920179913954 ], [ 167.270028111030257, -15.740020847234874 ], [ 167.001207310247963, -15.614602146062495 ], [ 166.793157993840879, -15.668810723536723 ], [ 166.649859247095577, -15.392703545801197 ], [ 166.629136997746485, -14.626497084209603 ], [ 167.107712437201513, -14.933920179913954 ] ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Yemen\", \"sov_a3\": \"YEM\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Yemen\", \"adm0_a3\": \"YEM\", \"geou_dif\": 0.000000, \"geounit\": \"Yemen\", \"gu_a3\": \"YEM\", \"su_dif\": 0.000000, \"subunit\": \"Yemen\", \"su_a3\": \"YEM\", \"brk_diff\": 0.000000, \"name\": \"Yemen\", \"name_long\": \"Yemen\", \"brk_a3\": \"YEM\", \"brk_name\": \"Yemen\", \"brk_group\": null, \"abbrev\": \"Yem.\", \"postal\": \"YE\", \"formal_en\": \"Republic of Yemen\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Yemen, Rep.\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 11.000000, \"pop_est\": 23822783.000000, \"gdp_md_est\": 55280.000000, \"pop_year\": -99.000000, \"lastcensus\": 2004.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"YE\", \"iso_a3\": \"YEM\", \"iso_n3\": \"887\", \"un_a3\": \"887\", \"wb_a2\": \"RY\", \"wb_a3\": \"YEM\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"YEM\", \"adm0_a3_us\": \"YEM\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Asia\", \"region_un\": \"Asia\", \"subregion\": \"Western Asia\", \"region_wb\": \"Middle East & North Africa\", \"name_len\": 5.000000, \"long_len\": 5.000000, \"abbrev_len\": 4.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 53.108572625547509, 16.651051133688952 ], [ 52.385205926325881, 16.382411200419654 ], [ 52.19172936382509, 15.93843313238402 ], [ 52.1681649107, 15.597420355689948 ], [ 51.172515089732485, 15.175249742081492 ], [ 49.57457645040315, 14.708766587782748 ], [ 48.679230584514158, 14.00320241948566 ], [ 48.238947381387419, 13.948089504446372 ], [ 47.938914015500785, 14.007233181204427 ], [ 47.354453566279716, 13.592219753468383 ], [ 46.717076450391744, 13.399699204965019 ], [ 45.877592807810267, 13.347764390511685 ], [ 45.625050083199881, 13.290946153206763 ], [ 45.406458774605255, 13.026905422411433 ], [ 45.144355910020863, 12.953938300015309 ], [ 44.989533318874415, 12.69958690027471 ], [ 44.494576450382851, 12.721652736863348 ], [ 44.175112745954493, 12.585950425664876 ], [ 43.482958611837127, 12.636800035040084 ], [ 43.222871128112132, 13.220950425667425 ], [ 43.25144819516953, 13.767583726450852 ], [ 43.087943963398061, 14.062630316621309 ], [ 42.892245314308724, 14.802249253798749 ], [ 42.60487267433362, 15.213335272680595 ], [ 42.805015496600049, 15.261962795467255 ], [ 42.702437778500659, 15.718885809791999 ], [ 42.823670688657415, 15.911742255105267 ], [ 42.77933230975097, 16.347891343648683 ], [ 43.218375278502748, 16.66688996018641 ], [ 43.115797560403358, 17.088440456607373 ], [ 43.380794305196105, 17.579986680567671 ], [ 43.791518589051918, 17.319976711491108 ], [ 44.062613152855079, 17.410358791569593 ], [ 45.216651238797191, 17.433328965723334 ], [ 45.399999220568759, 17.333335069238558 ], [ 46.366658563020536, 17.233315334537636 ], [ 46.749994337761649, 17.283338120996177 ], [ 47.000004917189756, 16.949999294497445 ], [ 47.466694777217633, 17.116681626854884 ], [ 48.183343540241339, 18.166669216377315 ], [ 49.116671583864871, 18.616667588774945 ], [ 52.000009800022241, 19.000003363516058 ], [ 52.782184279192052, 17.349742336491232 ], [ 53.108572625547509, 16.651051133688952 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 2.000000, \"sovereignt\": \"South Africa\", \"sov_a3\": \"ZAF\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"South Africa\", \"adm0_a3\": \"ZAF\", \"geou_dif\": 0.000000, \"geounit\": \"South Africa\", \"gu_a3\": \"ZAF\", \"su_dif\": 0.000000, \"subunit\": \"South Africa\", \"su_a3\": \"ZAF\", \"brk_diff\": 0.000000, \"name\": \"South Africa\", \"name_long\": \"South Africa\", \"brk_a3\": \"ZAF\", \"brk_name\": \"South Africa\", \"brk_group\": null, \"abbrev\": \"S.Af.\", \"postal\": \"ZA\", \"formal_en\": \"Republic of South Africa\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"South Africa\", \"name_alt\": null, \"mapcolor7\": 2.000000, \"mapcolor8\": 3.000000, \"mapcolor9\": 4.000000, \"mapcolor13\": 2.000000, \"pop_est\": 49052489.000000, \"gdp_md_est\": 491000.000000, \"pop_year\": -99.000000, \"lastcensus\": 2001.000000, \"gdp_year\": -99.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"3. Upper middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ZA\", \"iso_a3\": \"ZAF\", \"iso_n3\": \"710\", \"un_a3\": \"710\", \"wb_a2\": \"ZA\", \"wb_a3\": \"ZAF\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ZAF\", \"adm0_a3_us\": \"ZAF\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Southern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 12.000000, \"long_len\": 12.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 31.521001417778876, -29.257386976846256 ], [ 31.325561150851001, -29.401977634398914 ], [ 30.901762729625347, -29.909956963828037 ], [ 30.622813348113819, -30.423775730106129 ], [ 30.055716180142781, -31.140269463832958 ], [ 28.925552605919538, -32.172041110972501 ], [ 28.2197558936771, -32.771952813448856 ], [ 27.464608188595975, -33.226963799778801 ], [ 26.419452345492825, -33.614950453426189 ], [ 25.909664340933489, -33.667040297176399 ], [ 25.780628289500697, -33.944646091448341 ], [ 25.172861769315972, -33.796851495093584 ], [ 24.677853224392123, -33.987175795224552 ], [ 23.594043409934642, -33.794474379208154 ], [ 22.988188917744736, -33.916430759416983 ], [ 22.574157342222236, -33.864082533505311 ], [ 21.542799106541025, -34.258838799782936 ], [ 20.689052768647002, -34.417175388325234 ], [ 20.071261020597632, -34.795136814107991 ], [ 19.616405063564571, -34.819166355123713 ], [ 19.193278435958717, -34.462598972309792 ], [ 18.85531456876987, -34.444305515278465 ], [ 18.42464318204938, -33.99787281670897 ], [ 18.377410922934615, -34.136520684548067 ], [ 18.24449913907992, -33.86775156019803 ], [ 18.250080193767445, -33.281430759414441 ], [ 17.925190463948439, -32.611290785453427 ], [ 18.247909783611192, -32.42913136162457 ], [ 18.221761508871481, -31.661632989225669 ], [ 17.566917758868868, -30.725721123987547 ], [ 17.064416131262703, -29.878641045859162 ], [ 17.062917514726223, -29.875953871379984 ], [ 16.344976840895242, -28.576705010697701 ], [ 16.824017368240902, -28.08216155366447 ], [ 17.218928663815404, -28.355943291946812 ], [ 17.387497185951503, -28.783514092729781 ], [ 17.83615197110953, -28.856377862261319 ], [ 18.464899122804752, -29.045461928017279 ], [ 19.002127312911085, -28.972443129188868 ], [ 19.894734327888614, -28.461104831660776 ], [ 19.895767856534434, -24.767790215760591 ], [ 20.165725538827189, -24.917961928000771 ], [ 20.758609246511838, -25.86813648855145 ], [ 20.66647016773544, -26.477453301704923 ], [ 20.889609002371738, -26.828542982695915 ], [ 21.605896030369394, -26.726533705351756 ], [ 22.105968865657868, -26.280256036079138 ], [ 22.579531691180591, -25.979447523708146 ], [ 22.824271274514899, -25.500458672794771 ], [ 23.312096795350186, -25.26868987396572 ], [ 23.73356977712271, -25.390129489851617 ], [ 24.211266717228796, -25.670215752873574 ], [ 25.025170525825786, -25.719670098576898 ], [ 25.664666375437719, -25.486816094669713 ], [ 25.76584882986521, -25.174845472923678 ], [ 25.941652052522159, -24.696373386333221 ], [ 26.485753208123299, -24.616326592713104 ], [ 26.786406691197413, -24.240690606383485 ], [ 27.119409620886245, -23.574323011979775 ], [ 28.017235955525251, -22.827753594659079 ], [ 29.43218834810904, -22.091312758067588 ], [ 29.839036899542972, -22.102216485281176 ], [ 30.322883335091774, -22.271611830333935 ], [ 30.65986535006709, -22.151567478119915 ], [ 31.191409132621288, -22.251509698172399 ], [ 31.670397983534656, -23.658969008073864 ], [ 31.930588820124253, -24.369416599222539 ], [ 31.752408481581881, -25.484283949487413 ], [ 31.83777794772806, -25.843331801051349 ], [ 31.333157586397903, -25.66019052500895 ], [ 31.044079624157149, -25.731452325139443 ], [ 30.949666782359913, -26.022649021104151 ], [ 30.67660851412964, -26.398078301704608 ], [ 30.68596194837448, -26.743845310169533 ], [ 31.282773064913329, -27.285879408478998 ], [ 31.86806033705108, -27.177927341421277 ], [ 32.071665480281069, -26.733820082304909 ], [ 32.830120477028885, -26.742191664336197 ], [ 32.580264926897684, -27.470157566031816 ], [ 32.462132602678452, -28.301011244420557 ], [ 32.203388706193039, -28.752404880490069 ], [ 31.521001417778876, -29.257386976846256 ] ], [ [ 28.978262566857243, -28.955596612261711 ], [ 28.541700066855498, -28.647501722937569 ], [ 28.074338413207784, -28.851468601193588 ], [ 27.532511020627478, -29.24271087007536 ], [ 26.999261915807637, -29.875953871379984 ], [ 27.749397006956485, -30.645105889612225 ], [ 28.107204624145425, -30.545732110314951 ], [ 28.29106937023991, -30.2262167294543 ], [ 28.848399692507741, -30.070050551068256 ], [ 29.018415154748027, -29.743765557577369 ], [ 29.325166456832591, -29.257386976846256 ], [ 28.978262566857243, -28.955596612261711 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Zambia\", \"sov_a3\": \"ZMB\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Zambia\", \"adm0_a3\": \"ZMB\", \"geou_dif\": 0.000000, \"geounit\": \"Zambia\", \"gu_a3\": \"ZMB\", \"su_dif\": 0.000000, \"subunit\": \"Zambia\", \"su_a3\": \"ZMB\", \"brk_diff\": 0.000000, \"name\": \"Zambia\", \"name_long\": \"Zambia\", \"brk_a3\": \"ZMB\", \"brk_name\": \"Zambia\", \"brk_group\": null, \"abbrev\": \"Zambia\", \"postal\": \"ZM\", \"formal_en\": \"Republic of Zambia\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Zambia\", \"name_alt\": null, \"mapcolor7\": 5.000000, \"mapcolor8\": 8.000000, \"mapcolor9\": 5.000000, \"mapcolor13\": 13.000000, \"pop_est\": 11862740.000000, \"gdp_md_est\": 17500.000000, \"pop_year\": -99.000000, \"lastcensus\": 2010.000000, \"gdp_year\": -99.000000, \"economy\": \"7. Least developed region\", \"income_grp\": \"4. Lower middle income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ZM\", \"iso_a3\": \"ZMB\", \"iso_n3\": \"894\", \"un_a3\": \"894\", \"wb_a2\": \"ZM\", \"wb_a3\": \"ZMB\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ZMB\", \"adm0_a3_us\": \"ZMB\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 6.000000, \"long_len\": 6.000000, \"abbrev_len\": 6.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 32.759375441221323, -9.23059905358906 ], [ 33.231387973775298, -9.676721693564801 ], [ 33.485687697083591, -10.525558770391115 ], [ 33.315310499817286, -10.796549981329697 ], [ 33.114289178201915, -11.607198174692314 ], [ 33.306422153463075, -12.435778090060218 ], [ 32.991764357237884, -12.783870537978274 ], [ 32.688165317523129, -13.712857761289277 ], [ 33.214024692525214, -13.971860039936153 ], [ 30.17948123548183, -14.796099134991529 ], [ 30.27425581230511, -15.507786960515213 ], [ 29.516834344203147, -15.644677829656388 ], [ 28.947463413211267, -16.04305144619444 ], [ 28.825868768028499, -16.389748630440614 ], [ 28.467906121542683, -16.468400160388846 ], [ 27.59824344250276, -17.290830580314008 ], [ 27.044427117630732, -17.938026218337434 ], [ 26.70677330903564, -17.961228936436484 ], [ 26.381935255648926, -17.846042168857899 ], [ 25.264225701608012, -17.736539808831417 ], [ 25.084443393664571, -17.661815687737374 ], [ 25.076950310982259, -17.578823337476621 ], [ 24.682349074001507, -17.353410739819473 ], [ 24.033861525170778, -17.295843194246324 ], [ 23.215048455506064, -17.523116143465984 ], [ 22.562478468524262, -16.898451429921813 ], [ 21.887842644953874, -16.08031015387688 ], [ 21.933886346125917, -12.898437188369359 ], [ 24.016136508894675, -12.911046237848574 ], [ 23.930922072045377, -12.565847670138856 ], [ 24.079905226342845, -12.191296888887365 ], [ 23.904153680118185, -11.722281589406322 ], [ 24.017893507592589, -11.23729827234709 ], [ 23.912215203555718, -10.926826267137514 ], [ 24.257155389103989, -10.951992689663657 ], [ 24.314516228947952, -11.26282642989927 ], [ 24.783169793402951, -11.238693536018964 ], [ 25.418118116973204, -11.330935967659961 ], [ 25.752309604604733, -11.784965101776358 ], [ 26.553087599399618, -11.924439792532127 ], [ 27.164419793412463, -11.608748467661075 ], [ 27.388798862423783, -12.132747491100666 ], [ 28.155108676879987, -12.272480564017897 ], [ 28.523561639121027, -12.698604424696683 ], [ 28.934285922976837, -13.248958428605135 ], [ 29.699613885219492, -13.257226657771831 ], [ 29.61600141777123, -12.178894545137311 ], [ 29.34154788586909, -12.360743910372413 ], [ 28.642417433392353, -11.971568698782315 ], [ 28.372253045370428, -11.793646742401393 ], [ 28.49606977714177, -10.789883721564046 ], [ 28.673681674928929, -9.605924981324932 ], [ 28.449871046672826, -9.164918308146085 ], [ 28.734866570762502, -8.526559340044578 ], [ 29.00291222506047, -8.407031752153472 ], [ 30.346086053190817, -8.238256524288218 ], [ 30.740015496551791, -8.340007419470915 ], [ 31.157751336950049, -8.594578747317366 ], [ 31.556348097466497, -8.762048841998642 ], [ 32.19186486179197, -8.930358981973278 ], [ 32.759375441221323, -9.23059905358906 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"scalerank\": 1, \"featurecla\": \"Admin-0 country\", \"labelrank\": 3.000000, \"sovereignt\": \"Zimbabwe\", \"sov_a3\": \"ZWE\", \"adm0_dif\": 0.000000, \"level\": 2.000000, \"type\": \"Sovereign country\", \"admin\": \"Zimbabwe\", \"adm0_a3\": \"ZWE\", \"geou_dif\": 0.000000, \"geounit\": \"Zimbabwe\", \"gu_a3\": \"ZWE\", \"su_dif\": 0.000000, \"subunit\": \"Zimbabwe\", \"su_a3\": \"ZWE\", \"brk_diff\": 0.000000, \"name\": \"Zimbabwe\", \"name_long\": \"Zimbabwe\", \"brk_a3\": \"ZWE\", \"brk_name\": \"Zimbabwe\", \"brk_group\": null, \"abbrev\": \"Zimb.\", \"postal\": \"ZW\", \"formal_en\": \"Republic of Zimbabwe\", \"formal_fr\": null, \"note_adm0\": null, \"note_brk\": null, \"name_sort\": \"Zimbabwe\", \"name_alt\": null, \"mapcolor7\": 1.000000, \"mapcolor8\": 5.000000, \"mapcolor9\": 3.000000, \"mapcolor13\": 9.000000, \"pop_est\": 12619600.000000, \"gdp_md_est\": 9323.000000, \"pop_year\": 0.000000, \"lastcensus\": 2002.000000, \"gdp_year\": 0.000000, \"economy\": \"5. Emerging region: G20\", \"income_grp\": \"5. Low income\", \"wikipedia\": -99.000000, \"fips_10\": null, \"iso_a2\": \"ZW\", \"iso_a3\": \"ZWE\", \"iso_n3\": \"716\", \"un_a3\": \"716\", \"wb_a2\": \"ZW\", \"wb_a3\": \"ZWE\", \"woe_id\": -99.000000, \"adm0_a3_is\": \"ZWE\", \"adm0_a3_us\": \"ZWE\", \"adm0_a3_un\": -99.000000, \"adm0_a3_wb\": -99.000000, \"continent\": \"Africa\", \"region_un\": \"Africa\", \"subregion\": \"Eastern Africa\", \"region_wb\": \"Sub-Saharan Africa\", \"name_len\": 8.000000, \"long_len\": 8.000000, \"abbrev_len\": 5.000000, \"tiny\": -99.000000, \"homepart\": 1.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ 31.191409132621288, -22.251509698172399 ], [ 30.65986535006709, -22.151567478119915 ], [ 30.322883335091774, -22.271611830333935 ], [ 29.839036899542972, -22.102216485281176 ], [ 29.43218834810904, -22.091312758067588 ], [ 28.794656202924216, -21.639454034107452 ], [ 28.021370070108617, -21.485975030200585 ], [ 27.727227817503259, -20.851801853114715 ], [ 27.724747348753255, -20.499058526290391 ], [ 27.296504754350508, -20.391519870690999 ], [ 26.164790887158485, -19.293085625894939 ], [ 25.850391473094732, -18.714412937090536 ], [ 25.649163445750162, -18.536025892818991 ], [ 25.264225701608012, -17.736539808831417 ], [ 26.381935255648926, -17.846042168857899 ], [ 26.70677330903564, -17.961228936436484 ], [ 27.044427117630732, -17.938026218337434 ], [ 27.59824344250276, -17.290830580314008 ], [ 28.467906121542683, -16.468400160388846 ], [ 28.825868768028499, -16.389748630440614 ], [ 28.947463413211267, -16.04305144619444 ], [ 29.516834344203147, -15.644677829656388 ], [ 30.27425581230511, -15.507786960515213 ], [ 30.338954705534544, -15.880839125230246 ], [ 31.17306399915768, -15.860943698797874 ], [ 31.636498243951195, -16.071990248277885 ], [ 31.852040643040599, -16.319417006091378 ], [ 32.328238966610229, -16.392074069893752 ], [ 32.847638787575846, -16.713398125884616 ], [ 32.849860874164392, -17.979057305577179 ], [ 32.654885695127149, -18.672089939043495 ], [ 32.611994256324891, -19.419382826416275 ], [ 32.772707960752626, -19.715592136313298 ], [ 32.65974327976258, -20.304290052982317 ], [ 32.508693068173443, -20.395292250248307 ], [ 32.244988234188014, -21.116488539313693 ], [ 31.191409132621288, -22.251509698172399 ] ] ] } }\n]\n}"
  },
  {
    "path": "test/fixtures/zero.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [\n        0,\n        0\n      ],\n      [\n        0,\n        1\n      ],\n      [\n        1,\n        1\n      ],\n      [\n        1,\n        0\n      ],\n      [\n        0,\n        0\n      ]\n    ]\n  ]\n}"
  },
  {
    "path": "test/fixtures/zero_out.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              -0.35156029\n            ],\n            [\n              0,\n              0\n            ],\n            [\n              0.3515625,\n              0\n            ],\n            [\n              0.3515625,\n              -0.35156029\n            ],\n            [\n              0,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              0\n            ],\n            [\n              0,\n              0.35156029\n            ],\n            [\n              0.3515625,\n              0.35156029\n            ],\n            [\n              0.3515625,\n              0\n            ],\n            [\n              0,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              0.35156029\n            ],\n            [\n              0,\n              0.70310735\n            ],\n            [\n              0.3515625,\n              0.70310735\n            ],\n            [\n              0.3515625,\n              0.35156029\n            ],\n            [\n              0,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              0.70310735\n            ],\n            [\n              0,\n              1.05462794\n            ],\n            [\n              0.3515625,\n              1.05462794\n            ],\n            [\n              0.3515625,\n              0.70310735\n            ],\n            [\n              0,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.3515625,\n              -0.35156029\n            ],\n            [\n              0.3515625,\n              0\n            ],\n            [\n              0.703125,\n              0\n            ],\n            [\n              0.703125,\n              -0.35156029\n            ],\n            [\n              0.3515625,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.3515625,\n              0\n            ],\n            [\n              0.3515625,\n              0.35156029\n            ],\n            [\n              0.703125,\n              0.35156029\n            ],\n            [\n              0.703125,\n              0\n            ],\n            [\n              0.3515625,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.3515625,\n              0.35156029\n            ],\n            [\n              0.3515625,\n              0.70310735\n            ],\n            [\n              0.703125,\n              0.70310735\n            ],\n            [\n              0.703125,\n              0.35156029\n            ],\n            [\n              0.3515625,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.3515625,\n              0.70310735\n            ],\n            [\n              0.3515625,\n              1.05462794\n            ],\n            [\n              0.703125,\n              1.05462794\n            ],\n            [\n              0.703125,\n              0.70310735\n            ],\n            [\n              0.3515625,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.703125,\n              -0.35156029\n            ],\n            [\n              0.703125,\n              0\n            ],\n            [\n              1.0546875,\n              0\n            ],\n            [\n              1.0546875,\n              -0.35156029\n            ],\n            [\n              0.703125,\n              -0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.703125,\n              0\n            ],\n            [\n              0.703125,\n              0.35156029\n            ],\n            [\n              1.0546875,\n              0.35156029\n            ],\n            [\n              1.0546875,\n              0\n            ],\n            [\n              0.703125,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.703125,\n              0.35156029\n            ],\n            [\n              0.703125,\n              0.70310735\n            ],\n            [\n              1.0546875,\n              0.70310735\n            ],\n            [\n              1.0546875,\n              0.35156029\n            ],\n            [\n              0.703125,\n              0.35156029\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0.703125,\n              0.70310735\n            ],\n            [\n              0.703125,\n              1.05462794\n            ],\n            [\n              1.0546875,\n              1.05462794\n            ],\n            [\n              1.0546875,\n              0.70310735\n            ],\n            [\n              0.703125,\n              0.70310735\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              0,\n              0\n            ],\n            [\n              0,\n              1\n            ],\n            [\n              1,\n              1\n            ],\n            [\n              1,\n              0\n            ],\n            [\n              0,\n              0\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"name\": \"original\",\n        \"stroke\": \"#f44\",\n        \"fill\": \"#f44\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "test/test.js",
    "content": "'use strict';\n\nvar cover = require('../'),\n    test = require('tape'),\n    intersect = require('@turf/intersect'),\n    union = require('@turf/union'),\n    erase = require('@turf/difference'),\n    area = require('@turf/area'),\n    fs = require('fs'),\n    path = require('path');\n\nvar REGEN = process.env.REGEN;\n\ntest('point', function (t) {\n    var point = {\n        'type': 'Feature',\n        'properties': {},\n        'geometry': {\n            'type': 'Point',\n            'coordinates': [\n                79.08096313476562,\n                21.135184856708992\n            ]\n        }\n    };\n    var limits = {\n        min_zoom: 1,\n        max_zoom: 15\n    };\n\n    t.ok(cover.geojson(point.geometry, limits), 'point geojson');\n    t.ok(cover.tiles(point.geometry, limits).length, 'point tiles');\n    t.ok(cover.indexes(point.geometry, limits).length, 'point indexes');\n    t.notEqual(cover.indexes(point.geometry, limits)[0], '');\n    t.equal(typeof cover.tiles(point.geometry, limits)[0][0], 'number');\n    t.equal(typeof cover.tiles(point.geometry, limits)[0][1], 'number');\n    t.equal(typeof cover.tiles(point.geometry, limits)[0][2], 'number');\n    compareFixture(t, point.geometry, limits, path.join(__dirname, '/fixtures/point_out.geojson'));\n    verifyCover(t, point.geometry, limits);\n    t.end();\n});\n\ntest('line', function (t) {\n    var line = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/line.geojson')));\n    var limits = {\n        min_zoom: 1,\n        max_zoom: 12\n    };\n\n    t.ok(cover.geojson(line.geometry, limits), 'line geojson');\n    t.ok(cover.tiles(line.geometry, limits).length, 'line tiles');\n    t.ok(cover.indexes(line.geometry, limits).length, 'line indexes');\n    compareFixture(t, line.geometry, limits, path.join(__dirname, '/fixtures/line_out.geojson'));\n    verifyCover(t, line.geometry, limits);\n    t.end();\n});\n\ntest('edgeline', function (t) {\n    var line = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/edgeline.geojson')));\n    var limits = {\n        min_zoom: 14,\n        max_zoom: 14\n    };\n\n    t.ok(cover.geojson(line.geometry, limits), 'edgeline geojson');\n    t.deepEqual(cover.tiles(line.geometry, limits), [[4543, 6612, 14], [4544, 6612, 14]], 'edgeline tiles');\n    t.deepEqual(cover.indexes(line.geometry, limits).length, 2, 'edgeline indexes');\n    compareFixture(t, line.geometry, limits, path.join(__dirname, '/fixtures/edgeline_out.geojson'));\n    verifyCover(t, line.geometry, limits);\n    t.end();\n});\n\ntest('polygon', function (t) {\n    var polygon = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/polygon.geojson')));\n    var limits = {\n        min_zoom: 1,\n        max_zoom: 15\n    };\n\n    t.ok(cover.geojson(polygon, limits), 'polygon geojson');\n    t.ok(cover.tiles(polygon, limits).length, 'polygon tiles');\n    t.ok(cover.indexes(polygon, limits).length, 'polygon indexes');\n    compareFixture(t, polygon, limits, path.join(__dirname, '/fixtures/polygon_out.geojson'));\n    verifyCover(t, polygon, limits);\n    t.end();\n});\n\ntest('multipoint', function (t) {\n    var multipoint = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/multipoint.geojson')));\n    var limits = {\n        min_zoom: 1,\n        max_zoom: 12\n    };\n\n    t.ok(cover.geojson(multipoint.geometry, limits), 'multipoint geojson');\n    t.ok(cover.tiles(multipoint.geometry, limits).length, 'multipoint tiles');\n    t.ok(cover.indexes(multipoint.geometry, limits).length, 'multipoint indexes');\n    t.notEqual(cover.indexes(multipoint.geometry, limits)[0], '');\n    t.equal(cover.tiles(multipoint.geometry, limits).length, 4);\n    t.equal(cover.indexes(multipoint.geometry, limits).length, 4);\n    t.equal(cover.geojson(multipoint.geometry, limits).features.length, 4);\n    t.equal(typeof cover.tiles(multipoint.geometry, limits)[0][0], 'number');\n    t.equal(typeof cover.tiles(multipoint.geometry, limits)[0][1], 'number');\n    t.equal(typeof cover.tiles(multipoint.geometry, limits)[0][2], 'number');\n    compareFixture(t, multipoint.geometry, limits, path.join(__dirname, '/fixtures/multipoint_out.geojson'));\n    verifyCover(t, multipoint.geometry, limits);\n    t.end();\n});\n\ntest('multiline', function (t) {\n    var multiline = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/multiline.geojson')));\n    var limits = {\n        min_zoom: 1,\n        max_zoom: 8\n    };\n\n    t.ok(cover.geojson(multiline.geometry, limits), 'multiline geojson');\n    t.ok(cover.tiles(multiline.geometry, limits).length, 'multiline tiles');\n    t.ok(cover.indexes(multiline.geometry, limits).length, 'multiline indexes');\n    t.notEqual(cover.indexes(multiline.geometry, limits)[0], '');\n    t.equal(cover.tiles(multiline.geometry, limits).length, 20);\n    t.equal(cover.indexes(multiline.geometry, limits).length, 20);\n    t.equal(cover.geojson(multiline.geometry, limits).features.length, 20);\n    t.equal(typeof cover.tiles(multiline.geometry, limits)[0][0], 'number');\n    t.equal(typeof cover.tiles(multiline.geometry, limits)[0][1], 'number');\n    t.equal(typeof cover.tiles(multiline.geometry, limits)[0][2], 'number');\n    compareFixture(t, multiline.geometry, limits, path.join(__dirname, '/fixtures/multiline_out.geojson'));\n    verifyCover(t, multiline.geometry, limits);\n    t.end();\n});\n\ntest('uk', function (t) {\n    var uk = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/uk.geojson')));\n    var limits = {\n        min_zoom: 7,\n        max_zoom: 9\n    };\n\n    t.ok(cover.geojson(uk.geometry, limits), 'uk geojson');\n    t.ok(cover.tiles(uk.geometry, limits).length, 'uk tiles');\n    t.ok(cover.indexes(uk.geometry, limits).length, 'uk indexes');\n    compareFixture(t, uk.geometry, limits, path.join(__dirname, '/fixtures/uk_out.geojson'));\n    verifyCover(t, uk.geometry, limits);\n    t.end();\n});\n\ntest('building', function (t) {\n    var building = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/building.geojson')));\n    var limits = {\n        min_zoom: 18,\n        max_zoom: 18\n    };\n\n    t.ok(cover.geojson(building, limits), 'building geojson');\n    t.ok(cover.tiles(building, limits).length, 'building tiles');\n    t.ok(cover.indexes(building, limits).length, 'building indexes');\n    compareFixture(t, building, limits, path.join(__dirname, '/fixtures/building_out.geojson'));\n    verifyCover(t, building, limits);\n    t.end();\n});\n\ntest('donut', function (t) {\n    var fixture = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/donut.geojson')));\n    var limits = {\n        min_zoom: 16,\n        max_zoom: 16\n    };\n\n    t.ok(cover.geojson(fixture, limits), 'donut geojson');\n    t.ok(cover.tiles(fixture, limits).length, 'donut tiles');\n    t.ok(cover.indexes(fixture, limits).length, 'donut indexes');\n    compareFixture(t, fixture, limits, path.join(__dirname, '/fixtures/donut_out.geojson'));\n    verifyCover(t, fixture, limits);\n    t.end();\n});\n\ntest('russia', function (t) {\n    var russia = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/russia.geojson')));\n    var limits = {\n        min_zoom: 6,\n        max_zoom: 6\n    };\n\n    t.ok(cover.geojson(russia, limits), 'russia geojson');\n    t.ok(cover.tiles(russia, limits).length, 'russia tiles');\n    t.ok(cover.indexes(russia, limits).length, 'russia indexes');\n    t.equal(cover.indexes(russia, limits).length, 259);\n    compareFixture(t, russia, limits, path.join(__dirname, '/fixtures/russia_out.geojson'));\n    verifyCover(t, russia, limits);\n    t.end();\n});\n\n\ntest('degenerate ring', function (t) {\n    var fixture = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/degenring.geojson')));\n    var limits = {\n        min_zoom: 11,\n        max_zoom: 15\n    };\n\n    t.ok(cover.geojson(fixture, limits), 'geojson');\n    t.ok(cover.tiles(fixture, limits).length, 'tiles');\n    t.ok(cover.indexes(fixture, limits).length, 'indexes');\n    compareFixture(t, fixture, limits, path.join(__dirname, '/fixtures/degenring_out.geojson'));\n    verifyCover(t, fixture, limits);\n    t.end();\n});\n\ntest('invalid polygon --- hourglass', function (t) {\n    var invalid = {\n        'type': 'Polygon',\n        'coordinates': [\n            [\n                [\n                    -12.034835815429688,\n                    8.901183448260598\n                ],\n                [\n                    -12.060413360595701,\n                    8.899826693726117\n                ],\n                [\n                    -12.036380767822266,\n                    8.873199368734273\n                ],\n                [\n                    -12.059383392333983,\n                    8.871418491385919\n                ],\n                [\n                    -12.034835815429688,\n                    8.901183448260598\n                ]\n            ]\n        ]\n    };\n    var limits = {\n        min_zoom: 1,\n        max_zoom: 12\n    };\n\n    try {\n        cover.tiles(invalid, limits);\n    } catch (err) {\n        t.equal(err.toString(), 'Error: found non-noded intersection between LINESTRING ( -12.060413360595701 8.899826693726117, -12.036380767822266 8.873199368734273 ) and LINESTRING ( -12.059383392333983 8.871418491385919, -12.034835815429688 8.901183448260598 ) [ (-12.047632938440815, 8.885666404927512) ]');\n    }\n    t.end();\n});\n\ntest('high zoom', function (t) {\n    var building = {'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-77.04474940896034, 38.90019399459534], [-77.04473063349724, 38.90019399459534], [-77.04473063349724, 38.90027122854152], [-77.04474672675133, 38.900273315944304], [-77.04474672675133, 38.900457007149065], [-77.04394474625587, 38.90017520794709], [-77.04394206404686, 38.900173120541425], [-77.04384550452232, 38.9001710331357], [-77.04384550452232, 38.900141809449025], [-77.04365238547325, 38.90007501240577], [-77.04365238547325, 38.89989340762676], [-77.04371139407158, 38.899916369176196], [-77.04371139407158, 38.89986209641103], [-77.04369261860847, 38.89986209641103], [-77.04369261860847, 38.89969927786663], [-77.04452946782112, 38.89969719044697], [-77.04460456967354, 38.89967214140626], [-77.04460725188255, 38.89969510302724], [-77.04474672675133, 38.89969719044697], [-77.04474940896034, 38.90019399459534], [-77.04474940896034, 38.90019399459534], [-77.04474940896034, 38.90019399459534]]]}, 'properties': {'osm_id': 0}};\n    building = building.geometry;\n\n    var limits = {\n        min_zoom: 23,\n        max_zoom: 23\n    };\n\n    t.ok(cover.geojson(building, limits), 'building geojson');\n    t.ok(cover.tiles(building, limits).length, 'building tiles');\n    t.ok(cover.indexes(building, limits).length, 'building indexes');\n    compareFixture(t, building, limits, path.join(__dirname, '/fixtures/highzoom_out.geojson'));\n    verifyCover(t, building, limits);\n    t.end();\n});\n\ntest('small polygon', function (t) {\n    var building = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/small_poly.geojson')));\n    var limits = {\n        min_zoom: 10,\n        max_zoom: 10\n    };\n\n    t.ok(cover.geojson(building, limits), 'small_poly geojson');\n    t.ok(cover.tiles(building, limits).length, 'small_poly tiles');\n    t.ok(cover.indexes(building, limits).length, 'small_poly indexes');\n    compareFixture(t, building, limits, path.join(__dirname, '/fixtures/small_poly_out.geojson'));\n    verifyCover(t, building, limits);\n    t.end();\n});\n\ntest('spiked polygon', function (t) {\n    var spiked = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/spiked.geojson')));\n    var limits = {\n        min_zoom: 10,\n        max_zoom: 10\n    };\n\n    t.ok(cover.geojson(spiked, limits), 'spiked geojson');\n    t.ok(cover.tiles(spiked, limits).length, 'spiked tiles');\n    t.ok(cover.indexes(spiked, limits).length, 'spiked indexes');\n    compareFixture(t, spiked, limits, path.join(__dirname, '/fixtures/spiked_out.geojson'));\n    verifyCover(t, spiked, limits);\n    t.end();\n});\n\ntest('blocky polygon', function (t) {\n    var blocky = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/blocky.geojson')));\n    var limits = {\n        min_zoom: 6,\n        max_zoom: 6\n    };\n\n    t.ok(cover.geojson(blocky, limits), 'blocky geojson');\n    t.ok(cover.tiles(blocky, limits).length, 'blocky tiles');\n    t.equal(cover.indexes(blocky, limits).length, 31, 'blocky indexes');\n    compareFixture(t, blocky, limits, path.join(__dirname, '/fixtures/blocky_out.geojson'));\n    verifyCover(t, blocky, limits);\n    t.end();\n});\n\ntest('pyramid polygon', function (t) {\n    var pyramid = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/pyramid.geojson')));\n    var limits = {\n        min_zoom: 10,\n        max_zoom: 10\n    };\n\n    t.ok(cover.geojson(pyramid, limits), 'pyramid geojson');\n    t.ok(cover.tiles(pyramid, limits).length, 'pyramid tiles');\n    compareFixture(t, pyramid, limits, path.join(__dirname, '/fixtures/pyramid_out.geojson'));\n    verifyCover(t, pyramid, limits);\n    t.end();\n});\n\ntest('tetris polygon', function (t) {\n    var tetris = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/tetris.geojson')));\n    var limits = {\n        min_zoom: 10,\n        max_zoom: 10\n    };\n\n    t.ok(cover.geojson(tetris, limits), 'tetris geojson');\n    t.ok(cover.tiles(tetris, limits).length, 'tetris tiles');\n    compareFixture(t, tetris, limits, path.join(__dirname, '/fixtures/tetris_out.geojson'));\n    verifyCover(t, tetris, limits);\n    t.end();\n});\n\ntest('0,0 polygon', function (t) {\n    var zero = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/zero.geojson')));\n    var limits = {\n        min_zoom: 10,\n        max_zoom: 10\n    };\n\n    t.ok(cover.geojson(zero, limits), '0,0 geojson');\n    t.ok(cover.tiles(zero, limits).length, '0,0 tiles');\n    compareFixture(t, zero, limits, path.join(__dirname, '/fixtures/zero_out.geojson'));\n    verifyCover(t, zero, limits);\n    t.end();\n});\n\n\nfunction compareFixture(t, geom, limits, filepath) {\n    var result = cover.geojson(geom, limits);\n    result.features.push({\n        type: 'Feature',\n        geometry: geom,\n        properties: {name: 'original', stroke: '#f44', fill: '#f44'}\n    });\n    // Sort features to ensure changes such that changes to tile cover\n    // order is not considered significant.\n    result.features.sort(function (a, b) {\n        if (a.properties.name === 'original') return 1;\n        if (b.properties.name === 'original') return -1;\n        return a.geometry.coordinates[0][0] < b.geometry.coordinates[0][0] ? -1 :\n            a.geometry.coordinates[0][0] > b.geometry.coordinates[0][0] ? 1 :\n            a.geometry.coordinates[0][1] < b.geometry.coordinates[0][1] ? -1 :\n            a.geometry.coordinates[0][1] > b.geometry.coordinates[0][1] ? 1 : 0;\n    });\n\n    if (REGEN) fs.writeFileSync(filepath, JSON.stringify(result, roundify, 2));\n    var expected = JSON.parse(JSON.stringify(JSON.parse(fs.readFileSync(filepath)), roundify, 2));\n\n    // Skip the massive deepEquals diff if feature length is not the same.\n    if (result.features.length !== expected.features.length) {\n        t.equal(result.features.length, expected.features.length);\n    } else {\n        t.deepEqual(JSON.parse(JSON.stringify(result, roundify, 2)), expected);\n    }\n}\n\nfunction roundify(key, val) {\n    if (typeof val !== 'number') return val;\n    return parseFloat(val.toFixed(8));\n}\n\nfunction verifyCover(t, geom, limits) {\n    var tiles = cover.geojson(geom, limits);\n    // every tile should have something inside of it\n    var emptyTile = false;\n    tiles.features.forEach(function (tile) { // 'tile' is one feature object\n        var overlap = intersect(tile, geom);\n        if (!overlap) emptyTile = true;\n    });\n    if (emptyTile) console.warn('Empty tile found');\n\n    // there should be no geometry not covered by a tile\n    var mergedTiles = tiles.features.reduce(function (merged, feature) {\n        return union(merged, feature);\n    });\n    var knockout = erase(geom, mergedTiles);\n    if (knockout) {\n        // get area of overflow in meters\n        var uncoveredArea = area(knockout);\n        if (uncoveredArea > 0.001) t.fail('geometry left uncovered by tiles');\n    } else t.pass('tile-cover covers geometry');\n}\n"
  },
  {
    "path": "test/world.js",
    "content": "'use strict';\n\nvar cover = require('../');\nvar test = require('tape');\nvar fs = require('fs');\nvar intersect = require('@turf/intersect');\nvar union = require('@turf/union');\nvar erase = require('@turf/difference');\nvar path = require('path');\n\nvar REGEN = process.env.REGEN;\n\ntest('the world', function (t) {\n    var countries = fs.readdirSync(path.join(__dirname, '/fixtures/world'));\n    // filter output files\n    countries = countries.filter(function (c) {\n        return c.indexOf('_out') === -1;\n    });\n    countries.forEach(function (countryName) {\n        var country = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/world/' + countryName)));\n        if (country.features.length > 1) throw new Error('Invalid country; more than 1 feature: ' + countryName);\n        var limits = {\n            min_zoom: 1,\n            max_zoom: 6\n        };\n        var countryGeom = country.features[0].geometry; //just the geometry from the country featureCollection\n        var countryCover = cover.geojson(countryGeom, limits); // returns a feature collection of tiles\n        var countryTiles = countryCover.features; //\n        t.ok(countryCover, 'Create a cover');\n        var emptyTile = false;\n        countryTiles.forEach(function (tile) { // 'tile' is one feature object\n            var overlap = intersect(tile, countryGeom);\n            if (!overlap) emptyTile = true;\n        });\n        if (emptyTile) console.warn('Empty tile not found');\n\n        var countryBlock = countryTiles.reduce(function (merged, feature) {\n            return union(merged, feature);\n        });\n        if (!countryBlock) t.fail('Tile merge failed');\n\n        var knockout = erase(country.features[0], countryBlock);\n        t.deepEqual(knockout, null, 'Cover left no exposed geometry');\n\n        compareFixture(t, countryGeom, limits, path.join(__dirname, '/fixtures/world/' + countryName.split('.')[0] + '_out.geojson'));\n    });\n    t.end();\n});\n\nfunction compareFixture(t, geom, limits, filepath) {\n    var result = cover.geojson(geom, limits);\n    result.features.push({\n        type: 'Feature',\n        properties: {name: 'original', stroke: '#f44', fill: '#f44'},\n        geometry: geom\n    });\n    // Sort features to ensure changes such that changes to tile cover\n    // order is not considered significant.\n    result.features.sort(function (a, b) {\n        if (a.properties.name === 'original') return 1;\n        if (b.properties.name === 'original') return -1;\n        return a.geometry.coordinates[0][0] < b.geometry.coordinates[0][0] ? -1 :\n            a.geometry.coordinates[0][0] > b.geometry.coordinates[0][0] ? 1 :\n            a.geometry.coordinates[0][1] < b.geometry.coordinates[0][1] ? -1 :\n            a.geometry.coordinates[0][1] > b.geometry.coordinates[0][1] ? 1 : 0;\n    });\n\n    if (REGEN) fs.writeFileSync(filepath, JSON.stringify(result, roundify, 2));\n    var expected = JSON.parse(JSON.stringify(JSON.parse(fs.readFileSync(filepath)), roundify, 2));\n\n    // Skip the massive deepEquals diff if feature length is not the same.\n    if (result.features.length !== expected.features.length) {\n        t.equal(result.features.length, expected.features.length);\n    } else {\n        t.deepEqual(JSON.parse(JSON.stringify(result, roundify, 2)), expected);\n    }\n}\n\nfunction roundify(key, val) {\n    if (typeof val !== 'number') return val;\n    return parseFloat(val.toFixed(8));\n}\n\n"
  }
]